Merge pull request #87 from godotengine/macos-compiler_rt-arm64

macOS: Build compiler_rt for ARM64 too
This commit is contained in:
Rémi Verschelde 2021-07-27 11:53:56 +02:00 committed by GitHub
commit 6e076e2952
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -8,11 +8,12 @@ RUN if [ -z "${mono_version}" ]; then echo -e "\n\nargument mono-version is mand
automake autoconf bzip2-devel clang libicu-devel libtool libxml2-devel llvm-devel openssl-devel yasm && \ automake autoconf bzip2-devel clang libicu-devel libtool libxml2-devel llvm-devel openssl-devel yasm && \
git clone --progress https://github.com/tpoechtrager/osxcross.git && \ git clone --progress https://github.com/tpoechtrager/osxcross.git && \
cd /root/osxcross && \ cd /root/osxcross && \
git checkout 447cf3b3ea4323d24648f5f7f775f5977a0d15bd && \ git checkout de6c72eff2d6013f5af46fba1fa205654c5cf5e2 && \
ln -s /root/files/MacOSX11.1.sdk.tar.xz /root/osxcross/tarballs && \ ln -s /root/files/MacOSX11.1.sdk.tar.xz /root/osxcross/tarballs && \
patch -p1 < /root/files/patches/osxcross-pr284-compiler-rt.patch && \ curl -LO https://github.com/tpoechtrager/osxcross/pull/286.patch && \
patch -p1 < 286.patch && \
UNATTENDED=1 ./build.sh && \ UNATTENDED=1 ./build.sh && \
ENABLE_COMPILER_RT_INSTALL=1 ./build_compiler_rt.sh ./build_compiler_rt.sh
ENV OSXCROSS_ROOT=/root/osxcross ENV OSXCROSS_ROOT=/root/osxcross
ENV PATH="/root/osxcross/target/bin:${PATH}" ENV PATH="/root/osxcross/target/bin:${PATH}"