From fa51f3adbf118074a81d193cb32c595682a3fba0 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 3 Sep 2025 17:52:56 +0200 Subject: [PATCH 1/2] Update to latest bootloader version --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51ec53c1..b8fb10a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,6 +11,6 @@ dependencies = [ [[package]] name = "bootloader" -version = "0.9.32" +version = "0.9.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ea119c3ed05625c179e09d17d0914570a3753ca09c890a73d98f6b72aea00d2" +checksum = "7bdfddac270bbdd45903296bc1caf29a7fdce6b326aaf0bbab7f04c5f98b7447" From 2b11ad8397f9691f22aebd9303236a6ee6a6d909 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 3 Sep 2025 17:53:14 +0200 Subject: [PATCH 2/2] Fix: `target-pointer-width` field now expects an integer --- x86_64-blog_os.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x86_64-blog_os.json b/x86_64-blog_os.json index 4cc6a3a2..9d67ab33 100644 --- a/x86_64-blog_os.json +++ b/x86_64-blog_os.json @@ -3,7 +3,7 @@ "data-layout": "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128", "arch": "x86_64", "target-endian": "little", - "target-pointer-width": "64", + "target-pointer-width": 64, "target-c-int-width": 32, "os": "none", "executables": true,