-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f0508c8
commit 1d5bd4a
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[env] | ||
# set coin name for diem dependencies | ||
RUST_DIEM_COIN_MODULE="libra_coin" | ||
RUST_DIEM_COIN_NAME="LibraCoin" | ||
|
||
[target.'cfg(target_os = "linux")'] | ||
# Dramatically increases the link performance for the eventbus | ||
rustflags = ["-C", "link-arg=-fuse-ld=lld"] # sudo apt -y install lld | ||
# Uncomment following lines for faster link times (see brew cmd to install zld) | ||
# [target.'cfg(target_os = "macos")'] | ||
# rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld"] # brew install michaeleisel/zld/zld | ||
|
||
[build] | ||
rustflags = ["--cfg", "tokio_unstable", "-C", "force-frame-pointers=yes", "-C", "force-unwind-tables=yes"] | ||
|
||
# TODO(grao): Figure out whether we should enable other cpu features, and whether we should use a different way to configure them rather than list every single one here. | ||
[target.x86_64-unknown-linux-gnu] | ||
rustflags = [ | ||
"--cfg", | ||
"tokio_unstable", | ||
"-C", | ||
"link-arg=-fuse-ld=lld", | ||
"-C", | ||
"force-frame-pointers=yes", | ||
"-C", | ||
"force-unwind-tables=yes", | ||
"-C", | ||
"target-feature=+sse4.2", | ||
] | ||
|
||
# 64 bit MSVC | ||
[target.x86_64-pc-windows-msvc] | ||
rustflags = [ | ||
"--cfg", | ||
"tokio_unstable", | ||
"-C", | ||
"force-frame-pointers=yes", | ||
"-C", | ||
"force-unwind-tables=yes", | ||
"-C", | ||
"link-arg=/STACK:8000000", # Set stack to 8 MB | ||
] | ||
|
||
[target.aarch64-apple-darwin] | ||
rustflags = [ | ||
"-C", | ||
"link-arg=-L/opt/homebrew/opt/gmp", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
reorder_imports = true | ||
imports_granularity = "Crate" |