diff options
author | Alex Crichton <alex@alexcrichton.com> | 2018-10-29 10:00:23 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2018-10-29 10:00:23 -0700 |
commit | 82857849662189d25e1a06bf6b764c64d2468168 (patch) | |
tree | 96a205999b398fc254563fcdee4085cfd232f07e /src/test/include.am | |
parent | 38d644c94bf1a42fcec40843e817c460e9e752de (diff) | |
download | tor-82857849662189d25e1a06bf6b764c64d2468168.tar.gz tor-82857849662189d25e1a06bf6b764c64d2468168.zip |
Only pass `-C default-linker-libraries` with sanitizers
This'll help retain test compatibility until 1.31.0 is released!
Diffstat (limited to 'src/test/include.am')
-rw-r--r-- | src/test/include.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/include.am b/src/test/include.am index 4314581082..ecb7689579 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -12,7 +12,7 @@ TESTS_ENVIRONMENT = \ export EXTRA_CARGO_OPTIONS="$(EXTRA_CARGO_OPTIONS)"; \ export CARGO_ONLINE="$(CARGO_ONLINE)"; \ export CCLD="$(CCLD)"; \ - export RUSTFLAGS="-C linker=`echo '$(CC)' | cut -d' ' -f 1` $(RUST_LINKER_OPTIONS) -C default-linker-libraries"; + export RUSTFLAGS="-C linker=`echo '$(CC)' | cut -d' ' -f 1` $(RUST_LINKER_OPTIONS)"; TESTSCRIPTS = \ src/test/fuzz_static_testcases.sh \ |