12 lines
375 B
TOML
12 lines
375 B
TOML
[build]
|
|
target = "x86_64_plain_os.json"
|
|
|
|
[target.'cfg(target_os = "none")']
|
|
runner = "bootimage runner"
|
|
|
|
[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"]
|