2021-03-22 10:13:43 +00:00
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
|
|
rustflags = [
|
|
|
|
"-C", "link-arg=-fuse-ld=lld",
|
2022-07-11 15:46:27 +00:00
|
|
|
# Fix `perf` as suggested by https://github.com/flamegraph-rs/flamegraph/blob/2d19a162df4066f37d58d5471634f0bd9f0f4a62/README.md?plain=1#L18
|
|
|
|
# Also see https://bugs.chromium.org/p/chromium/issues/detail?id=919499#c16
|
|
|
|
"-C", "link-arg=-Wl,--no-rosegment",
|
2022-08-04 09:12:21 +00:00
|
|
|
# Enable all features supported by CPUs more recent than haswell (2013)
|
|
|
|
"-C", "target-cpu=haswell"
|
2022-07-11 15:46:27 +00:00
|
|
|
]
|