plain-os/.cargo/config.toml

10 lines
311 B
TOML
Raw Normal View History

2022-03-27 15:45:56 +00:00
[build]
target = "x86_64_plain_os.json"
[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"]