mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
19 lines
712 B
Docker
19 lines
712 B
Docker
ARG img_version
|
|
FROM godot-fedora:${img_version}
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False \
|
|
automake autoconf bzip2-devel clang libicu-devel libtool libxml2-devel llvm-devel openssl-devel yasm && \
|
|
git clone --progress https://github.com/tpoechtrager/osxcross.git && \
|
|
cd /root/osxcross && \
|
|
git checkout de6c72eff2d6013f5af46fba1fa205654c5cf5e2 && \
|
|
ln -s /root/files/MacOSX11.1.sdk.tar.xz /root/osxcross/tarballs && \
|
|
url -LO https://github.com/tpoechtrager/osxcross/pull/286.patch && \
|
|
patch -p1 < 286.patch && \
|
|
UNATTENDED=1 ./build.sh && \
|
|
./build_compiler_rt.sh
|
|
|
|
ENV OSXCROSS_ROOT=/root/osxcross
|
|
ENV PATH="/root/osxcross/target/bin:${PATH}"
|
|
|
|
CMD /bin/bash
|