scripts: don't print RUSTFLAGS, causes issues when printing configs

This commit is contained in:
Joakim Frostegård 2020-08-01 23:23:10 +02:00
parent f561ca9794
commit 118c2e446b
8 changed files with 0 additions and 15 deletions

View file

@ -2,7 +2,6 @@
## General
* don't print RUSTFLAGS in scripts, it causes issues with config printing
* init logging in cli helper crate?
## aquatic_http_load_test

View file

@ -8,6 +8,4 @@ DISABLE_AVX512=$(rustc --print target-features | grep " avx512" |
export RUSTFLAGS="-C target-cpu=native $DISABLE_AVX512"
echo "Compiling with RUSTFLAGS=$RUSTFLAGS""
cargo run --release --bin aquatic_udp_bench -- $@

View file

@ -8,6 +8,4 @@ DISABLE_AVX512=$(rustc --print target-features | grep " avx512" |
export RUSTFLAGS="-C target-cpu=native $DISABLE_AVX512"
echo "Compiling with RUSTFLAGS=$RUSTFLAGS"
cargo run --release --bin aquatic_http -- $@

View file

@ -8,6 +8,4 @@ DISABLE_AVX512=$(rustc --print target-features | grep " avx512" |
export RUSTFLAGS="-C target-cpu=native $DISABLE_AVX512"
echo "Compiling with RUSTFLAGS=$RUSTFLAGS"
cargo run --release --bin aquatic_udp -- $@

View file

@ -8,6 +8,4 @@ DISABLE_AVX512=$(rustc --print target-features | grep " avx512" |
export RUSTFLAGS="-C target-cpu=native $DISABLE_AVX512"
echo "Compiling with RUSTFLAGS=$RUSTFLAGS"
cargo run --release --bin aquatic_ws -- $@

View file

@ -8,6 +8,4 @@ DISABLE_AVX512=$(rustc --print target-features | grep " avx512" |
export RUSTFLAGS="-C target-cpu=native $DISABLE_AVX512"
echo "Compiling with RUSTFLAGS=$RUSTFLAGS"
cargo run --release --bin aquatic_http_load_test -- $@

View file

@ -8,6 +8,4 @@ DISABLE_AVX512=$(rustc --print target-features | grep " avx512" |
export RUSTFLAGS="-C target-cpu=native $DISABLE_AVX512"
echo "Compiling with RUSTFLAGS=$RUSTFLAGS"
cargo run --release --bin aquatic_udp_load_test -- $@

View file

@ -8,6 +8,4 @@ DISABLE_AVX512=$(rustc --print target-features | grep " avx512" |
export RUSTFLAGS="-C target-cpu=native $DISABLE_AVX512"
echo "Compiling with RUSTFLAGS=$RUSTFLAGS"
cargo run --release --bin aquatic_ws_load_test -- $@