mirror of
https://github.com/vtnerd/monero-lws.git
synced 2024-11-16 17:27:39 +00:00
add arm64 arch support
This commit is contained in:
parent
d5869255e9
commit
8f691d0002
1 changed files with 7 additions and 2 deletions
|
@ -45,6 +45,7 @@ RUN apt-get install --no-install-recommends -y \
|
||||||
ARG MONERO_BRANCH
|
ARG MONERO_BRANCH
|
||||||
ARG MONERO_COMMIT_HASH
|
ARG MONERO_COMMIT_HASH
|
||||||
ARG NPROC
|
ARG NPROC
|
||||||
|
ARG TARGETARCH
|
||||||
ENV CFLAGS='-fPIC'
|
ENV CFLAGS='-fPIC'
|
||||||
ENV CXXFLAGS='-fPIC -DELPP_FEATURE_CRASH_LOG'
|
ENV CXXFLAGS='-fPIC -DELPP_FEATURE_CRASH_LOG'
|
||||||
ENV USE_SINGLE_BUILDDIR 1
|
ENV USE_SINGLE_BUILDDIR 1
|
||||||
|
@ -80,8 +81,12 @@ RUN git clone --recursive --branch ${MONERO_BRANCH} \
|
||||||
&& test `git rev-parse HEAD` = ${MONERO_COMMIT_HASH} || exit 1 \
|
&& test `git rev-parse HEAD` = ${MONERO_COMMIT_HASH} || exit 1 \
|
||||||
&& git submodule init && git submodule update \
|
&& git submodule init && git submodule update \
|
||||||
&& mkdir -p build/release && cd build/release \
|
&& mkdir -p build/release && cd build/release \
|
||||||
# Create make build files manually for release-static-linux-x86_64
|
# Create make build files manually for release-static-linux-${TARGETARCH}
|
||||||
&& cmake -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=release -D BUILD_TAG="linux-x64" ../.. \
|
&& case ${TARGETARCH:-amd64} in \
|
||||||
|
"arm64") cmake -D STATIC=ON -D ARCH="armv8-a" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=release -D BUILD_TAG="linux-armv8" ../.. ;; \
|
||||||
|
"amd64") cmake -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=release -D BUILD_TAG="linux-x64" ../.. ;; \
|
||||||
|
*) echo "Dockerfile does not support this platform"; exit 1 ;; \
|
||||||
|
esac \
|
||||||
# Build only monerod binary using number of available threads
|
# Build only monerod binary using number of available threads
|
||||||
&& cd /monero && nice -n 19 ionice -c2 -n7 make -j${NPROC:-$(nproc)} -C build/release daemon lmdb_lib multisig
|
&& cd /monero && nice -n 19 ionice -c2 -n7 make -j${NPROC:-$(nproc)} -C build/release daemon lmdb_lib multisig
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue