Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d923c15

Browse files
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 <dev@phil-opp.com>"]
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)

AltStyle によって変換されたページ (->オリジナル) /