bootloader/.cargo/config
2023-03-14 13:57:28 +01:00

14 lines
389 B
Plaintext

[build]
target = "x86_64-unknown-uefi"
[unstable]
build-std = ["core", "compiler_builtins", "alloc"]
build-std-features = ["compiler-builtins-mem"]
[alias]
qemu = "run --bin bootloader --target x86_64-unknown-uefi"
test-qemu = "test --bin test --target x86_64-unknown-uefi"
[target.'x86_64-unknown-uefi']
rustflags = ["-Ctarget-feature=+sse,+mmx,+sse2,-soft-float"]
runner = "./qemu.sh"