Upgrade to newest magic bug fixes

This commit is contained in:
mrg 2022-02-28 09:11:09 -08:00
parent 2520d9f590
commit 8b4ef9b6c1
1 changed files with 6 additions and 4 deletions

View File

@ -113,7 +113,8 @@ RUN rm -rf /root/ngspice
#ARG NETGEN_COMMIT=1.5.219
ARG NETGEN_COMMIT=88d53fab15eb611cffc024eebf8743fae5cf8cb7
WORKDIR /root
RUN git clone https://github.com/RTimothyEdwards/netgen.git netgen
#RUN git clone https://github.com/RTimothyEdwards/netgen.git netgen
RUN git clone git://opencircuitdesign.com/netgen netgen
WORKDIR /root/netgen
RUN git checkout ${NETGEN_COMMIT}
RUN ./configure \
@ -125,10 +126,11 @@ RUN rm -rf /root/netgen
RUN apt-get install --no-install-recommends -y iverilog
### Magic ###
ARG MAGIC_COMMIT=8.3.260
#ARG MAGIC_COMMIT=8.3.254
#ARG MAGIC_COMMIT=db4fa65bfc096e63954b37b188ea27b90ab31839
ARG MAGIC_COMMIT=8.3.273
WORKDIR /root
RUN git clone https://github.com/RTimothyEdwards/magic.git magic
#RUN git clone https://github.com/RTimothyEdwards/magic.git magic
RUN git clone git://opencircuitdesign.com/magic magic
WORKDIR /root/magic
RUN git checkout ${MAGIC_COMMIT}
RUN ./configure \