mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
build: move memory_cleanse from util to crypto
Move memory_cleanse from util to crypto because the crypto library should not depend on other libraries, and it calls memory_cleanse.
This commit is contained in:
parent
5b9309420c
commit
cc5f29fbea
1 changed files with 2 additions and 3 deletions
|
@ -587,7 +587,8 @@ crypto_libbitcoin_crypto_base_la_SOURCES = \
|
||||||
crypto/sha512.cpp \
|
crypto/sha512.cpp \
|
||||||
crypto/sha512.h \
|
crypto/sha512.h \
|
||||||
crypto/siphash.cpp \
|
crypto/siphash.cpp \
|
||||||
crypto/siphash.h
|
crypto/siphash.h \
|
||||||
|
support/cleanse.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
|
||||||
|
@ -725,7 +726,6 @@ libbitcoin_util_a_SOURCES = \
|
||||||
random.cpp \
|
random.cpp \
|
||||||
randomenv.cpp \
|
randomenv.cpp \
|
||||||
streams.cpp \
|
streams.cpp \
|
||||||
support/cleanse.cpp \
|
|
||||||
sync.cpp \
|
sync.cpp \
|
||||||
util/asmap.cpp \
|
util/asmap.cpp \
|
||||||
util/batchpriority.cpp \
|
util/batchpriority.cpp \
|
||||||
|
@ -968,7 +968,6 @@ libbitcoinkernel_la_SOURCES = \
|
||||||
script/solver.cpp \
|
script/solver.cpp \
|
||||||
signet.cpp \
|
signet.cpp \
|
||||||
streams.cpp \
|
streams.cpp \
|
||||||
support/cleanse.cpp \
|
|
||||||
support/lockedpool.cpp \
|
support/lockedpool.cpp \
|
||||||
sync.cpp \
|
sync.cpp \
|
||||||
txdb.cpp \
|
txdb.cpp \
|
||||||
|
|
Loading…
Add table
Reference in a new issue