migrate to boost::regex
This commit is contained in:
@@ -13,19 +13,20 @@ RUN DEBIAN_FRONTEND=noninteractive apt install -y libmpc-dev libmpfr-dev libgmp-
|
||||
|
||||
WORKDIR /
|
||||
|
||||
RUN wget https://mirror.linux-ia64.org/gnu/gcc/releases/gcc-12.3.0/gcc-12.3.0.tar.gz
|
||||
RUN tar xf gcc-12.3.0.tar.gz
|
||||
#RUN wget https://mirror.linux-ia64.org/gnu/gcc/releases/gcc-12.3.0/gcc-12.3.0.tar.gz
|
||||
RUN wget https://mirror.linux-ia64.org/gnu/gcc/releases/gcc-13.3.0/gcc-13.3.0.tar.gz
|
||||
RUN tar xf gcc-13.3.0.tar.gz
|
||||
|
||||
RUN rm gcc-12.3.0.tar.gz
|
||||
RUN rm gcc-13.3.0.tar.gz
|
||||
|
||||
WORKDIR /gcc-12.3.0
|
||||
WORKDIR /gcc-13.3.0
|
||||
RUN ./configure --disable-multilib --prefix=/usr
|
||||
RUN make -j $(nproc) && make install
|
||||
|
||||
RUN cp /lib64/* /lib/x86_64-linux-gnu || :
|
||||
|
||||
WORKDIR /
|
||||
RUN rm -rf gcc-12.3.0
|
||||
RUN rm -rf gcc-13.3.0
|
||||
|
||||
# Download linuxdeployqt
|
||||
RUN wget https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage -O /usr/bin/linuxdeployqt && \
|
||||
@@ -65,13 +66,13 @@ RUN cmake -DBUILD_TRANSLATIONS=on .. && make -j 8
|
||||
|
||||
WORKDIR /appimage/AppDir/usr/bin
|
||||
|
||||
RUN cp /appimage/build/checks-parser
|
||||
RUN cp /appimage/build/checks-parser .
|
||||
|
||||
WORKDIR /appimage
|
||||
|
||||
RUN linuxdeployqt --appimage-extract-and-run AppDir/usr/bin/checks-parser -no-copy-copyright-files -appimage
|
||||
RUN linuxdeployqt --appimage-extract-and-run AppDir/usr/bin/checks-parser -no-copy-copyright-files -appimage || :
|
||||
|
||||
RUN mkdir -p /output
|
||||
RUN cp Checks_parser-x86_64.AppImage /output
|
||||
RUN mkdir -p /output || :
|
||||
RUN cp Checks_parser-x86_64.AppImage /output || :
|
||||
|
||||
ENTRYPOINT bash
|
||||
|
||||
Reference in New Issue
Block a user