plain-os/.cargo/config.toml

13 lines
375 B
TOML
Raw Permalink Normal View History

2022-03-27 15:45:56 +00:00
[build]
target = "x86_64_plain_os.json"
2022-03-27 16:41:22 +00:00
[target.'cfg(target_os = "none")']
runner = "bootimage runner"
2022-03-27 15:45:56 +00:00
[unstable]
# enable implementations for memset, memcpy and memcmp etc.
build-std-features = ["compiler-builtins-mem"]
# for our target triple, there is no `core` prebuilt. So we need to do this by
# ourselves using this option:
build-std = ["core", "compiler_builtins"]