build: build, install and link against randomx library

This commit is contained in:
xiphon 2019-09-28 12:14:07 +00:00
parent d3b81cb6f8
commit ae2fdc7ab3
2 changed files with 17 additions and 19 deletions

View file

@ -253,4 +253,7 @@ if [ -d $MONERO_DIR/build/$BUILD_TYPE/external/unbound ]; then
popd popd
fi fi
# install randomx
eval make -C $MONERO_DIR/build/$BUILD_TYPE/external/randomx all install
popd popd

View file

@ -142,25 +142,25 @@ ios:arm64 {
LIBS += \ LIBS += \
-L$$PWD/../ofxiOSBoost/build/libs/boost/lib/arm64 \ -L$$PWD/../ofxiOSBoost/build/libs/boost/lib/arm64 \
} }
!ios:!android {
LIBS += -L$$WALLET_ROOT/lib \ LIBS_COMMON = \
-lwallet_merged \ -lwallet_merged \
-llmdb \ -llmdb \
-lepee \ -lepee \
-lunbound \ -lunbound \
-lsodium \ -lsodium \
-leasylogging -leasylogging \
-lrandomx
!ios:!android {
LIBS += -L$$WALLET_ROOT/lib \
$$LIBS_COMMON
} }
android { android {
message("Host is Android") message("Host is Android")
LIBS += -L$$WALLET_ROOT/lib \ LIBS += -L$$WALLET_ROOT/lib \
-lwallet_merged \ $$LIBS_COMMON
-llmdb \
-lepee \
-lunbound \
-lsodium \
-leasylogging
} }
@ -175,12 +175,7 @@ ios {
QMAKE_IOS_DEVICE_ARCHS = arm64 QMAKE_IOS_DEVICE_ARCHS = arm64
CONFIG += arm64 CONFIG += arm64
LIBS += -L$$WALLET_ROOT/lib-ios \ LIBS += -L$$WALLET_ROOT/lib-ios \
-lwallet_merged \ $$LIBS_COMMON
-llmdb \
-lepee \
-lunbound \
-lsodium \
-leasylogging
LIBS+= \ LIBS+= \
-L$$PWD/../OpenSSL-for-iPhone/lib \ -L$$PWD/../OpenSSL-for-iPhone/lib \