mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 11:57:28 -03:00
build: Remove LIBTOOL_APP_LDFLAGS for bitcoin-chainstate
See added comment. Note that this won't actually have any effect until we add the mingw-w64 DLL fix since LIBTOOL_APP_LDFLAGS is undefined for other platforms.
This commit is contained in:
parent
3f0595095d
commit
035fa1f07a
1 changed files with 5 additions and 1 deletions
|
@ -805,7 +805,11 @@ bitcoin_util_LDADD = \
|
|||
bitcoin_chainstate_SOURCES = bitcoin-chainstate.cpp
|
||||
bitcoin_chainstate_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
||||
bitcoin_chainstate_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
||||
bitcoin_chainstate_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) $(PTHREAD_FLAGS)
|
||||
|
||||
# $(LIBTOOL_APP_LDFLAGS) deliberately omitted here so that we can test linking
|
||||
# bitcoin-chainstate against libbitcoinkernel as a shared or static library by
|
||||
# setting --{en,dis}able-shared.
|
||||
bitcoin_chainstate_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(PTHREAD_FLAGS)
|
||||
bitcoin_chainstate_LDADD = $(LIBBITCOINKERNEL)
|
||||
#
|
||||
|
||||
|
|
Loading…
Reference in a new issue