|
|
@ -29,9 +29,7 @@ LIBBITCOIN_COMMON=libbitcoin_common.a
|
|
|
|
LIBBITCOIN_CONSENSUS=libbitcoin_consensus.a
|
|
|
|
LIBBITCOIN_CONSENSUS=libbitcoin_consensus.a
|
|
|
|
LIBBITCOIN_CLI=libbitcoin_cli.a
|
|
|
|
LIBBITCOIN_CLI=libbitcoin_cli.a
|
|
|
|
LIBBITCOIN_UTIL=libbitcoin_util.a
|
|
|
|
LIBBITCOIN_UTIL=libbitcoin_util.a
|
|
|
|
LIBBITCOIN_CRYPTO=crypto/libbitcoin_crypto.a
|
|
|
|
LIBBITCOIN_CRYPTO_BASE=crypto/libbitcoin_crypto_base.a
|
|
|
|
LIBBITCOIN_CRYPTO_SSE41=crypto/libbitcoin_crypto_sse41.a
|
|
|
|
|
|
|
|
LIBBITCOIN_CRYPTO_AVX2=crypto/libbitcoin_crypto_avx2.a
|
|
|
|
|
|
|
|
LIBBITCOINQT=qt/libbitcoinqt.a
|
|
|
|
LIBBITCOINQT=qt/libbitcoinqt.a
|
|
|
|
LIBSECP256K1=secp256k1/libsecp256k1.la
|
|
|
|
LIBSECP256K1=secp256k1/libsecp256k1.la
|
|
|
|
|
|
|
|
|
|
|
@ -45,6 +43,16 @@ if ENABLE_WALLET
|
|
|
|
LIBBITCOIN_WALLET=libbitcoin_wallet.a
|
|
|
|
LIBBITCOIN_WALLET=libbitcoin_wallet.a
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LIBBITCOIN_CRYPTO= $(LIBBITCOIN_CRYPTO_BASE)
|
|
|
|
|
|
|
|
if ENABLE_SSE41
|
|
|
|
|
|
|
|
LIBBITCOIN_CRYPTO_SSE41 = crypto/libbitcoin_crypto_sse41.a
|
|
|
|
|
|
|
|
LIBBITCOIN_CRYPTO += $(LIBBITCOIN_CRYPTO_SSE41)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
if ENABLE_AVX2
|
|
|
|
|
|
|
|
LIBBITCOIN_CRYPTO_AVX2 = crypto/libbitcoin_crypto_avx2.a
|
|
|
|
|
|
|
|
LIBBITCOIN_CRYPTO += $(LIBBITCOIN_CRYPTO_AVX2)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
$(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard secp256k1/include/*)
|
|
|
|
$(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard secp256k1/include/*)
|
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)
|
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)
|
|
|
|
|
|
|
|
|
|
|
@ -52,8 +60,6 @@ $(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard secp256k1/include/*)
|
|
|
|
# But to build the less dependent modules first, we manually select their order here:
|
|
|
|
# But to build the less dependent modules first, we manually select their order here:
|
|
|
|
EXTRA_LIBRARIES += \
|
|
|
|
EXTRA_LIBRARIES += \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
@ -268,9 +274,9 @@ libbitcoin_wallet_a_SOURCES = \
|
|
|
|
$(BITCOIN_CORE_H)
|
|
|
|
$(BITCOIN_CORE_H)
|
|
|
|
|
|
|
|
|
|
|
|
# crypto primitives library
|
|
|
|
# crypto primitives library
|
|
|
|
crypto_libbitcoin_crypto_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
crypto_libbitcoin_crypto_base_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
crypto_libbitcoin_crypto_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
crypto_libbitcoin_crypto_base_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
crypto_libbitcoin_crypto_a_SOURCES = \
|
|
|
|
crypto_libbitcoin_crypto_base_a_SOURCES = \
|
|
|
|
crypto/aes.cpp \
|
|
|
|
crypto/aes.cpp \
|
|
|
|
crypto/aes.h \
|
|
|
|
crypto/aes.h \
|
|
|
|
crypto/chacha20.h \
|
|
|
|
crypto/chacha20.h \
|
|
|
@ -290,23 +296,19 @@ crypto_libbitcoin_crypto_a_SOURCES = \
|
|
|
|
crypto/sha512.h
|
|
|
|
crypto/sha512.h
|
|
|
|
|
|
|
|
|
|
|
|
if USE_ASM
|
|
|
|
if USE_ASM
|
|
|
|
crypto_libbitcoin_crypto_a_SOURCES += crypto/sha256_sse4.cpp
|
|
|
|
crypto_libbitcoin_crypto_base_a_SOURCES += crypto/sha256_sse4.cpp
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
if ENABLE_SSE41
|
|
|
|
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_CXXFLAGS += $(SSE41_CXXFLAGS)
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_CXXFLAGS += $(SSE41_CXXFLAGS)
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_CPPFLAGS += -DENABLE_SSE41
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_CPPFLAGS += -DENABLE_SSE41
|
|
|
|
endif
|
|
|
|
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_SOURCES = crypto/sha256_sse41.cpp
|
|
|
|
crypto_libbitcoin_crypto_sse41_a_SOURCES = crypto/sha256_sse41.cpp
|
|
|
|
|
|
|
|
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
if ENABLE_AVX2
|
|
|
|
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_CXXFLAGS += $(AVX2_CXXFLAGS)
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_CXXFLAGS += $(AVX2_CXXFLAGS)
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_CPPFLAGS += -DENABLE_AVX2
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_CPPFLAGS += -DENABLE_AVX2
|
|
|
|
endif
|
|
|
|
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_SOURCES = crypto/sha256_avx2.cpp
|
|
|
|
crypto_libbitcoin_crypto_avx2_a_SOURCES = crypto/sha256_avx2.cpp
|
|
|
|
|
|
|
|
|
|
|
|
# consensus: shared between all executables that validate any consensus rules.
|
|
|
|
# consensus: shared between all executables that validate any consensus rules.
|
|
|
@ -431,8 +433,6 @@ bitcoind_LDADD = \
|
|
|
|
$(LIBBITCOIN_ZMQ) \
|
|
|
|
$(LIBBITCOIN_ZMQ) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
|
|
|
|
$(LIBLEVELDB) \
|
|
|
|
$(LIBLEVELDB) \
|
|
|
|
$(LIBLEVELDB_SSE42) \
|
|
|
|
$(LIBLEVELDB_SSE42) \
|
|
|
|
$(LIBMEMENV) \
|
|
|
|
$(LIBMEMENV) \
|
|
|
@ -454,9 +454,7 @@ bitcoin_cli_LDADD = \
|
|
|
|
$(LIBBITCOIN_CLI) \
|
|
|
|
$(LIBBITCOIN_CLI) \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO)
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bitcoin_cli_LDADD += $(BOOST_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(EVENT_LIBS)
|
|
|
|
bitcoin_cli_LDADD += $(BOOST_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(EVENT_LIBS)
|
|
|
|
#
|
|
|
|
#
|
|
|
@ -477,8 +475,6 @@ bitcoin_tx_LDADD = \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
|
|
|
|
|
|
|
|
bitcoin_tx_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
bitcoin_tx_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
@ -487,7 +483,7 @@ bitcoin_tx_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
# bitcoinconsensus library #
|
|
|
|
# bitcoinconsensus library #
|
|
|
|
if BUILD_BITCOIN_LIBS
|
|
|
|
if BUILD_BITCOIN_LIBS
|
|
|
|
include_HEADERS = script/bitcoinconsensus.h
|
|
|
|
include_HEADERS = script/bitcoinconsensus.h
|
|
|
|
libbitcoinconsensus_la_SOURCES = $(crypto_libbitcoin_crypto_a_SOURCES) $(libbitcoin_consensus_a_SOURCES)
|
|
|
|
libbitcoinconsensus_la_SOURCES = $(crypto_libbitcoin_crypto_base_a_SOURCES) $(libbitcoin_consensus_a_SOURCES)
|
|
|
|
|
|
|
|
|
|
|
|
if GLIBC_BACK_COMPAT
|
|
|
|
if GLIBC_BACK_COMPAT
|
|
|
|
libbitcoinconsensus_la_SOURCES += compat/glibc_compat.cpp
|
|
|
|
libbitcoinconsensus_la_SOURCES += compat/glibc_compat.cpp
|
|
|
|