diff options
author | Carl Dong <contact@carldong.me> | 2022-03-10 15:38:34 -0500 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2022-04-11 16:56:34 -0400 |
commit | 1392e8e2d8cfe4115f0a152aca16ffe3f0f4573a (patch) | |
tree | eda5e00db6403a95760ca9f68c19837717d2d63b /src/Makefile.test_fuzz.include | |
parent | 2b5a741e98f186e50d9fbe1ceadcc8b8c91547f7 (diff) |
build: Don't add unrelated libs to LIBTEST_*
This was used to, in effect, manually emulate --start-group/--end-group.
However, we can just order the libraries correctly and avoid specifying
libraries multiple times on the link line.
Note: lld (not ld.bfd) knows how to resolve out-of-order references and
doesn't seem to need the reodering
Diffstat (limited to 'src/Makefile.test_fuzz.include')
-rw-r--r-- | src/Makefile.test_fuzz.include | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/Makefile.test_fuzz.include b/src/Makefile.test_fuzz.include index 9574454fd2..8922dda3ad 100644 --- a/src/Makefile.test_fuzz.include +++ b/src/Makefile.test_fuzz.include @@ -18,8 +18,3 @@ libtest_fuzz_a_SOURCES = \ test/fuzz/fuzz.cpp \ test/fuzz/util.cpp \ $(TEST_FUZZ_H) - -LIBTEST_FUZZ += $(LIBBITCOIN_NODE) -LIBTEST_FUZZ += $(LIBBITCOIN_COMMON) -LIBTEST_FUZZ += $(LIBBITCOIN_UTIL) -LIBTEST_FUZZ += $(LIBBITCOIN_CRYPTO_BASE) |