diff options
author | fanquake <fanquake@gmail.com> | 2020-03-26 16:05:35 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-03-26 16:22:24 +0800 |
commit | d8ce27ff9f806efaf95cb4aeb11b9d5a3f106e88 (patch) | |
tree | ad61a3b40519e5681dc9e3a96e9cc6d216639c67 /src | |
parent | 2e97d8001705214b6b915b61a2c9c34832b85323 (diff) | |
parent | cd04286825c6512b46bf59ab7b3dfffb0e36d65b (diff) |
Merge #18397: build: Fix libevent linking for bench_bitcoin binary
cd04286825c6512b46bf59ab7b3dfffb0e36d65b build: Fix typo in EVENT_CFLAGS variable (Hennadii Stepanov)
f709ad0c907d87d03002455967cc30ae7d704d80 build: Fix libevent linking for bench_bitcoin binary (Hennadii Stepanov)
Pull request description:
This change fixes `libevent` linking error for the `bench_bitcoin` binary.
This PR is an alternative to #18377.
Fix #18373.
Also fixed a typo in `EVENT_CFLAGS` variable noted by **brakmic**.
ACKs for top commit:
fanquake:
ACK cd04286825c6512b46bf59ab7b3dfffb0e36d65b
Tree-SHA512: a62f7457e86b11d3a55d603ea5d83f3a413792e2f28a0c72300e54d12591bd6f0acc1d76a4bd4b591e0223bc6d530e7a4b9a8b939fe2fdbf2dddfda5b1b537be
Diffstat (limited to 'src')
-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 1c97e22de8..b8fa048161 100644 --- a/src/Makefile.bench.include +++ b/src/Makefile.bench.include @@ -43,7 +43,7 @@ bench_bench_bitcoin_SOURCES = \ nodist_bench_bench_bitcoin_SOURCES = $(GENERATED_BENCH_FILES) -bench_bench_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(EVENT_CLFAGS) $(EVENT_PTHREADS_CFLAGS) -I$(builddir)/bench/ +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 = \ $(LIBBITCOIN_SERVER) \ |