1
- FROM quay.io/pypa/manylinux_2_28_x86_64:2025-01-05-75aeda9 as builder
1
+ ARG ARCH
2
+ FROM quay.io/pypa/manylinux_2_28_${ARCH}:2025.02.02-1 as builder
2
3
4
+ ARG ARCH
3
5
ARG NPROCS=24
4
6
ARG BUILD_DIR=/opt/smelibs
5
7
ARG TMP_DIR=/opt/tmpwd
@@ -47,16 +49,17 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
47
49
&& rm -rf $TMP_DIR
48
50
49
51
ARG GMP_VERSION="6.3.0"
52
+ # download url is a temporary workaround for gmp blacklisting github ips
50
53
RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
51
54
&& curl -L \
52
- https://gmplib.org/ download/gmp /gmp-${GMP_VERSION}.tar.bz2 \
53
- --output gmp.tar.bz2 \
54
- && tar xjf gmp.tar.bz2 \
55
+ https://github.com/spatial-model-editor/spatial-model-editor.github.io/releases/ download/1.0.0 /gmp-${GMP_VERSION}.tar.xz \
56
+ --output gmp.tar.xz \
57
+ && tar xf gmp.tar.xz \
55
58
&& cd gmp-${GMP_VERSION} \
56
59
&& ./configure \
57
60
--prefix=$BUILD_DIR \
58
61
--disable-shared \
59
- --host=x86_64 -unknown-linux-gnu \
62
+ --host=${ARCH} -unknown-linux-gnu \
60
63
--enable-static \
61
64
--with-pic \
62
65
--enable-cxx \
@@ -75,7 +78,7 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
75
78
&& ./configure \
76
79
--prefix=$BUILD_DIR \
77
80
--disable-shared \
78
- --host=x86_64 -unknown-linux-gnu \
81
+ --host=${ARCH} -unknown-linux-gnu \
79
82
--enable-static \
80
83
--with-pic \
81
84
--with-gmp-lib=$BUILD_DIR/lib \
@@ -182,7 +185,7 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
182
185
&& ninja install \
183
186
&& rm -rf $TMP_DIR
184
187
185
- ARG LLVM_VERSION="19.1.6 "
188
+ ARG LLVM_VERSION="19.1.7 "
186
189
RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
187
190
&& git clone \
188
191
-b llvmorg-$LLVM_VERSION \
@@ -196,7 +199,7 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
196
199
-DCMAKE_BUILD_TYPE=Release \
197
200
-DCMAKE_INSTALL_PREFIX=$BUILD_DIR \
198
201
-DPython3_EXECUTABLE:FILEPATH=/opt/python/cp312-cp312/bin/python \
199
- -DLLVM_DEFAULT_TARGET_TRIPLE=x86_64 -unknown-linux-gnu \
202
+ -DLLVM_DEFAULT_TARGET_TRIPLE=${ARCH} -unknown-linux-gnu \
200
203
-DLLVM_TARGETS_TO_BUILD="X86" \
201
204
-DLLVM_BUILD_TOOLS=OFF \
202
205
-DLLVM_INCLUDE_TOOLS=OFF \
@@ -724,27 +727,31 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
724
727
&& ninja install \
725
728
&& rm -rf $TMP_DIR
726
729
727
- FROM quay.io/pypa/manylinux_2_28_x86_64 :2025-01-05-75aeda9
730
+ FROM quay.io/pypa/manylinux_2_28_${ARCH} :2025.02.02-1
728
731
729
- LABEL org.opencontainers.image.source=https://github.com/spatial-model-editor/sme_manylinux_x86_64
730
- LABEL org.opencontainers.image.description="manylinux x86_64 image for compiling Spatial Model Editor python wheels"
732
+ LABEL org.opencontainers.image.source=https://github.com/spatial-model-editor/sme_manylinux
733
+ LABEL org.opencontainers.image.description="manylinux ${ARCH} image for compiling Spatial Model Editor python wheels"
731
734
LABEL org.opencontainers.image.licenses=MIT
732
735
733
736
ARG BUILD_DIR=/opt/smelibs
734
737
ARG TMP_DIR=/opt/tmpwd
735
738
739
+ RUN /opt/python/cp312-cp312/bin/pip install ninja \
740
+ && ln -fs /opt/python/cp312-cp312/bin/ninja /usr/bin/ninja
741
+
736
742
ARG CCACHE_VERSION="4.10.2"
737
743
RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
738
744
&& curl \
739
- -L https://github.com/ccache/ccache/releases/download/v${CCACHE_VERSION}/ccache-${CCACHE_VERSION}-linux-x86_64 .tar.xz \
745
+ -L https://github.com/ccache/ccache/releases/download/v${CCACHE_VERSION}/ccache-${CCACHE_VERSION}.tar.xz \
740
746
--output ccache.tar.xz \
741
747
&& tar xJf ccache.tar.xz \
742
- && cd ccache-${CCACHE_VERSION}-linux-x86_64 \
743
- && make install \
748
+ && cd ccache-${CCACHE_VERSION} \
749
+ && mkdir build \
750
+ && cd build \
751
+ && cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_DOCUMENTATION=OFF -DHTTP_STORAGE_BACKEND=OFF -DENABLE_TESTING=OFF -DREDIS_STORAGE_BACKEND=OFF -GNinja .. \
752
+ && ninja \
753
+ && ninja install \
744
754
&& rm -rf $TMP_DIR
745
755
746
- RUN /opt/python/cp312-cp312/bin/pip install ninja \
747
- && ln -fs /opt/python/cp312-cp312/bin/ninja /usr/bin/ninja
748
-
749
756
# SME static libs
750
757
COPY --from=builder $BUILD_DIR $BUILD_DIR
0 commit comments