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.bench.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.bench.include')
-rw-r--r-- | src/Makefile.bench.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.bench.include b/src/Makefile.bench.include index 5dae4374e3..80773e2764 100644 --- a/src/Makefile.bench.include +++ b/src/Makefile.bench.include @@ -52,13 +52,13 @@ nodist_bench_bench_bitcoin_SOURCES = $(GENERATED_BENCH_FILES) bench_bench_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(EVENT_CFLAGS) $(EVENT_PTHREADS_CFLAGS) -I$(builddir)/bench/ bench_bench_bitcoin_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) bench_bench_bitcoin_LDADD = \ + $(LIBTEST_UTIL) \ $(LIBBITCOIN_NODE) \ $(LIBBITCOIN_WALLET) \ $(LIBBITCOIN_COMMON) \ $(LIBBITCOIN_UTIL) \ $(LIBBITCOIN_CONSENSUS) \ $(LIBBITCOIN_CRYPTO) \ - $(LIBTEST_UTIL) \ $(LIBLEVELDB) \ $(LIBLEVELDB_SSE42) \ $(LIBMEMENV) \ |