23 lines
446 B
Rust
23 lines
446 B
Rust
[build]
|
|
target = "i686-unknown-none.json"
|
|
rustflags = [
|
|
"-Z", "no-unique-section-names=yes",
|
|
"-C", "link-args=--script=shellcode.ld --build-id=none"
|
|
]
|
|
|
|
[unstable]
|
|
build-std-features = ["compiler-builtins-mem"]
|
|
build-std = ["core", "compiler_builtins", "alloc"]
|
|
trim-paths = true
|
|
|
|
[profile.release]
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
strip = true
|
|
lto = "fat"
|
|
opt-level = "z"
|
|
panic = "abort"
|
|
trim-paths = "all"
|
|
|