mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-24 08:44:46 -07:00
19 lines
650 B
TOML
19 lines
650 B
TOML
[build]
|
|
rustflags = ["-C", "target-cpu=native"]
|
|
|
|
# pco (pcodec) decompression is significantly faster with these SIMD instructions
|
|
[target.x86_64-unknown-linux-gnu]
|
|
rustflags = ["-C", "target-cpu=native", "-C", "target-feature=+bmi1,+bmi2,+avx2"]
|
|
|
|
[target.x86_64-apple-darwin]
|
|
rustflags = ["-C", "target-cpu=native", "-C", "target-feature=+bmi1,+bmi2,+avx2"]
|
|
|
|
[target.x86_64-pc-windows-msvc]
|
|
rustflags = ["-C", "target-cpu=native", "-C", "target-feature=+bmi1,+bmi2,+avx2"]
|
|
|
|
[target.x86_64-pc-windows-gnu]
|
|
rustflags = ["-C", "target-cpu=native", "-C", "target-feature=+bmi1,+bmi2,+avx2"]
|
|
|
|
[alias]
|
|
dev = "run -p brk_cli --features brk_server/bindgen"
|