Skip to content

Commit d923c15

Browse files
authored
Merge pull request #512 from rust-osdev/target-c-int-width-0.9.x
fix target-c-int-width for 0.9.x
2 parents 0cae0f2 + ee10fce commit d923c15

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bootloader"
3-
version = "0.9.31"
3+
version = "0.9.32"
44
authors = ["Philipp Oppermann <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "An experimental pure-Rust x86 bootloader."

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
# 0.9.32 – 2025-07-31
4+
5+
- [fix target-c-int-width](https://github.com/rust-osdev/bootloader/pull/512)
6+
37
# 0.9.31 – 2025-03-22
48

59
- [remove #[no_mangle] from panic handler](https://github.com/rust-osdev/bootloader/pull/500)

example-kernel/x86_64-example-kernel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"arch": "x86_64",
55
"target-endian": "little",
66
"target-pointer-width": "64",
7-
"target-c-int-width": "32",
7+
"target-c-int-width": 32,
88
"os": "none",
99
"executables": true,
1010
"linker-flavor": "ld.lld",

test-kernel/x86_64-test-kernel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"arch": "x86_64",
55
"target-endian": "little",
66
"target-pointer-width": "64",
7-
"target-c-int-width": "32",
7+
"target-c-int-width": 32,
88
"os": "none",
99
"executables": true,
1010
"linker-flavor": "ld.lld",

x86_64-bootloader.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"target-endian": "little",
1313
"target-pointer-width": "64",
14-
"target-c-int-width": "32",
14+
"target-c-int-width": 32,
1515
"arch": "x86_64",
1616
"os": "none",
1717
"features": "-mmx,-sse,+soft-float",

0 commit comments

Comments
 (0)