mirror of
https://github.com/Karkas66/lacuna-rs
synced 2026-07-03 04:43:40 +00:00
13 lines
427 B
TOML
13 lines
427 B
TOML
# lacuna-rs build configuration
|
|
#
|
|
# The `stack-spoof` feature requires frame pointers so that `stomp_plant()`
|
|
# can walk the frame chain via `mov rbp -> [rbp]`. This is set here for
|
|
# the crate itself; consuming crates must replicate this in their own
|
|
# .cargo/config.toml.
|
|
|
|
[build]
|
|
rustflags = ["-C", "force-frame-pointers=yes"]
|
|
|
|
# Default to the MSVC toolchain on Windows.
|
|
[target.x86_64-pc-windows-msvc]
|
|
linker = "rust-lld" |