Files
Foundry-Boot/examples and stuff/.cargo/config.toml
T
2025-02-25 01:14:52 +00:00

17 lines
344 B
TOML

[build]
target = "x86_64-custom.json"
[unstable]
build-std = ["core", "compiler_builtins"]
build-std-features = ["compiler-builtins-mem"]
[target.'cfg(target_os = "none")']
runner = "bootimage runner"
[target.x86_64-custom]
rustflags = [
"-C", "link-arg=-Tlinker.ld",
"-C", "code-model=kernel",
"-C", "relocation-model=static"
]