mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 03:33:27 -03:00
build: move sha256_sse4 into libbitcoin_crypto_base
Followup to discussion in #29407. Drops LIBBITCOIN_CRYPTO_SSE4.
This commit is contained in:
parent
8da62a1041
commit
521693378b
1 changed files with 1 additions and 9 deletions
|
@ -50,8 +50,6 @@ LIBBITCOIN_WALLET_TOOL=libbitcoin_wallet_tool.a
|
||||||
endif
|
endif
|
||||||
|
|
||||||
LIBBITCOIN_CRYPTO = $(LIBBITCOIN_CRYPTO_BASE)
|
LIBBITCOIN_CRYPTO = $(LIBBITCOIN_CRYPTO_BASE)
|
||||||
LIBBITCOIN_CRYPTO_SSE4 = crypto/libbitcoin_crypto_sse4.la
|
|
||||||
LIBBITCOIN_CRYPTO += $(LIBBITCOIN_CRYPTO_SSE4)
|
|
||||||
if ENABLE_SSE41
|
if ENABLE_SSE41
|
||||||
LIBBITCOIN_CRYPTO_SSE41 = crypto/libbitcoin_crypto_sse41.la
|
LIBBITCOIN_CRYPTO_SSE41 = crypto/libbitcoin_crypto_sse41.la
|
||||||
LIBBITCOIN_CRYPTO += $(LIBBITCOIN_CRYPTO_SSE41)
|
LIBBITCOIN_CRYPTO += $(LIBBITCOIN_CRYPTO_SSE41)
|
||||||
|
@ -582,6 +580,7 @@ crypto_libbitcoin_crypto_base_la_SOURCES = \
|
||||||
crypto/sha1.h \
|
crypto/sha1.h \
|
||||||
crypto/sha256.cpp \
|
crypto/sha256.cpp \
|
||||||
crypto/sha256.h \
|
crypto/sha256.h \
|
||||||
|
crypto/sha256_sse4.cpp \
|
||||||
crypto/sha3.cpp \
|
crypto/sha3.cpp \
|
||||||
crypto/sha3.h \
|
crypto/sha3.h \
|
||||||
crypto/sha512.cpp \
|
crypto/sha512.cpp \
|
||||||
|
@ -589,13 +588,6 @@ crypto_libbitcoin_crypto_base_la_SOURCES = \
|
||||||
crypto/siphash.cpp \
|
crypto/siphash.cpp \
|
||||||
crypto/siphash.h
|
crypto/siphash.h
|
||||||
|
|
||||||
# See explanation for -static in crypto_libbitcoin_crypto_base_la's LDFLAGS and
|
|
||||||
# CXXFLAGS above
|
|
||||||
crypto_libbitcoin_crypto_sse4_la_LDFLAGS = $(AM_LDFLAGS) -static
|
|
||||||
crypto_libbitcoin_crypto_sse4_la_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) -static
|
|
||||||
crypto_libbitcoin_crypto_sse4_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
||||||
crypto_libbitcoin_crypto_sse4_la_SOURCES = crypto/sha256_sse4.cpp
|
|
||||||
|
|
||||||
# See explanation for -static in crypto_libbitcoin_crypto_base_la's LDFLAGS and
|
# See explanation for -static in crypto_libbitcoin_crypto_base_la's LDFLAGS and
|
||||||
# CXXFLAGS above
|
# CXXFLAGS above
|
||||||
crypto_libbitcoin_crypto_sse41_la_LDFLAGS = $(AM_LDFLAGS) -static
|
crypto_libbitcoin_crypto_sse41_la_LDFLAGS = $(AM_LDFLAGS) -static
|
||||||
|
|
Loading…
Add table
Reference in a new issue