13 lines
314 B
TOML
13 lines
314 B
TOML
[build]
|
|
target = "x86_64-unknown-none"
|
|
|
|
[target.x86_64-unknown-none]
|
|
rustflags = [
|
|
"-C", "link-arg=-T/Users/syui/git/aios/kernel/kernel.ld",
|
|
"-C", "relocation-model=static",
|
|
"-C", "code-model=kernel"
|
|
]
|
|
|
|
[unstable]
|
|
build-std = ["core", "compiler_builtins"]
|
|
build-std-features = ["compiler-builtins-mem"] |