mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +00:00
Fix arch match for monero lib for darwin x86_64 -> x86-64
This commit is contained in:
parent
31fa9e8b19
commit
ae3620b171
1 changed files with 4 additions and 0 deletions
|
@ -32,6 +32,10 @@ export CMAKE_INCLUDE_PATH="${PREFIX}/include"
|
|||
export CMAKE_LIBRARY_PATH="${PREFIX}/lib"
|
||||
rm -r monero/build > /dev/null
|
||||
|
||||
if [ "${ARCH}" == "x86_64" ]; then
|
||||
ARCH="x86-64"
|
||||
fi
|
||||
|
||||
mkdir -p monero/build/${BUILD_TYPE}
|
||||
pushd monero/build/${BUILD_TYPE}
|
||||
cmake -DARCH=${ARCH} \
|
||||
|
|
Loading…
Reference in a new issue