Files
CappuccinOS/.cargo/config.toml
juls0730 224a9783d9 better pointers and a broken vmm
better pointers and a broken vmm
2024-08-25 22:00:09 -05:00

17 lines
409 B
TOML

[unstable]
build-std = [
"core",
"compiler_builtins",
"alloc",
]
[build]
target = "./src/arch/x86_64/x86_64-unknown-none.json"
rustflags = ["-Cforce-frame-pointers=yes"]
# use this to reduce the binary size, I've seen these reduce the kernel by 60Kib
# you could use opt-level = "z" and save another 50k, but imo, speed is much more valuable than size
[profile.release]
strip = true
lto = true