forked from mikedilger/gossip
-
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.
Always compile dependenices w/ optimizations; In debug mode, lightly …
…optimize gossip for fast compiles
- Loading branch information
1 parent
8a3bbfc
commit a957bb4
Showing
4 changed files
with
15 additions
and
19 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
#RUSTFLAGS="-C target-cpu=native --cfg tokio_unstable" | ||
cargo build --features=lang-cjk --release | ||
cargo build --features=lang-cjk | ||
|
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/bin/bash | ||
|
||
#RUSTFLAGS="-C target-cpu=native --cfg tokio_unstable" | ||
cargo build --features=lang-cjk,video-ffmpeg --release && \ | ||
cargo build --features=lang-cjk,video-ffmpeg && \ | ||
RUST_BACKTRACE=1 RUST_LOG="warn,gossip=info,gossip_lib=info,nostr_types=info,gossip_relay_picker=info" ./target/release/gossip "$@" | ||
|