From 43abe156e7c8e1190a01ed000e7910e311f145de Mon Sep 17 00:00:00 2001 From: Joe Zuntz Date: Thu, 5 Sep 2024 08:46:17 +0100 Subject: [PATCH] update with mpicc --- txpipe-min-failing/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/txpipe-min-failing/Dockerfile b/txpipe-min-failing/Dockerfile index 269b538..793d90b 100644 --- a/txpipe-min-failing/Dockerfile +++ b/txpipe-min-failing/Dockerfile @@ -15,8 +15,9 @@ RUN mkdir /opt/mpich \ && wget http://www.mpich.org/static/downloads/${MPI_VERSION}/mpich-${MPI_VERSION}.tar.gz \ && tar xvzf mpich-${MPI_VERSION}.tar.gz \ && cd mpich-${MPI_VERSION} \ + && ./autogen.sh \ && FFLAGS=-fallow-argument-mismatch FCFLAGS=-fallow-argument-mismatch ./configure --disable-cxx --with-channel=ch3 \ - && make \ + && make -j 2 \ && make install \ && rm -rf /opt/mpich @@ -25,4 +26,4 @@ RUN /sbin/ldconfig # check we are using the conda python RUN which python3 RUN python3 --version -RUN python3 -m pip install mpi4py +RUN MPICC=mpicc python3 pip install --force-reinstall --no-cache-dir --no-binary=mpi4py mpi4py