kernel/.cargo/config.toml

11 lines
369 B
TOML
Raw Normal View History

2022-11-01 07:24:50 -05:00
[unstable]
build-std-features = ["compiler-builtins-mem"]
build-std = ["core", "compiler_builtins", "alloc"]
[build]
2023-09-29 15:44:53 -05:00
target = "x86_64-unknown-none"
2024-06-06 22:02:00 -05:00
rustflags = ["-C", "link-args=--image-base 0xffff800000000000", "-C", "force-unwind-tables", "-C", "link-args=/home/pterpstra/projects/os-rust/kernel/eh_frame.ld"]
2022-11-01 07:24:50 -05:00
[target.'cfg(target_os = "none")']
runner = "./run.sh"