You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM fedora:latest
RUN yum install -y git gfortran make g++ glibc-static libgfortran-static libstdc++-static
RUN yum install -y gnuplot
RUN git clone https://github.com/MethodicalAcceleratorDesign/MAD-X.git
WORKDIR MAD-X
RUN make madx-linux64-gnu X11=no
RUN make numdiff-linux64-gnu
RUN make tests
gfortran version from 12.2.1 (fedora 36) to 13.2.1 (fedora 38)
The text was updated successfully, but these errors were encountered:
A quick look with Riccardo points out something related to GFortran version installed on Fedora and the dequaldacon function in the PTC TPSA interface.
FROM intel/oneapi-hpckit
RUN apt update
RUN apt install -y gnuplot
RUN git clone https://github.com/MethodicalAcceleratorDesign/MAD-X.git
WORKDIR MAD-X
RUN make madx-linux64-intel X11=no
RUN make numdiff-linux64-intel
RUN make tests
Here is a docker file to reproduce the issue:
gfortran version from 12.2.1 (fedora 36) to 13.2.1 (fedora 38)
The text was updated successfully, but these errors were encountered: