diff --git a/misc/build-containers/Dockerfile.osx b/misc/build-containers/Dockerfile.osx index 1fbbda37a..5dbd56543 100644 --- a/misc/build-containers/Dockerfile.osx +++ b/misc/build-containers/Dockerfile.osx @@ -1,15 +1,15 @@ ARG img_version FROM pandemonium-fedora:${img_version} -#cmake +# Todo: This osxcross link is temporary, until a github url change is fixed in osxcross master. RUN dnf -y install --setopt=install_weak_deps=False \ - automake autoconf bzip2-devel clang libicu-devel libtool libxml2-devel llvm-devel openssl-devel yasm cmake && \ - git clone --progress https://github.com/tpoechtrager/osxcross.git && \ + automake autoconf bzip2-devel cmake gcc gcc-c++ libicu-devel libtool libxml2-devel openssl-devel yasm && \ + git clone --progress https://github.com/Relintai/osxcross.git && \ cd /root/osxcross && \ - git checkout 17bb5e2d0a46533c1dd525cf4e9a80d88bd9f00e && \ + git checkout 7be19917bba24a9129838d7f0cca49944cd48388 && \ ln -s /root/files/MacOSX12.3.sdk.tar.xz /root/osxcross/tarballs && \ - UNATTENDED=1 ./build.sh && \ + export UNATTENDED=1 && \ # Custom build to ensure we have Clang version matching Xcode SDK. CLANG_VERSION=13.0.1 ENABLE_CLANG_INSTALL=1 INSTALLPREFIX=/usr ./build_clang.sh && \ ./build.sh && \