Skip to content

Commit

Permalink
feat: Use make parallel jobs in ubuntu-tiger
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurelien30000 authored Oct 7, 2024
1 parent b94ec06 commit 15a4f10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiger/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ RUN apt install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross qemu-user
RUN git clone https://github.com/Genivia/RE-flex.git && cd RE-flex/ && ./clean.sh && ./build.sh && ./allinstall.sh && cd ../

# Havm.
RUN git clone https://gitlab.lre.epita.fr/tiger/havm.git && cd havm/ && ./bootstrap && ./configure && make && make check && make install && cd ../
RUN git clone https://gitlab.lre.epita.fr/tiger/havm.git && cd havm/ && ./bootstrap && ./configure && make -j4 && make check && make install && cd ../

# Nolimips.
RUN git clone https://gitlab.lre.epita.fr/tiger/nolimips.git && cd nolimips/ \
&& sed -i "s/^AX_CXX_COMPILE_STDCXX.*$//" configure.ac \
&& sed -i "s/^AX_COMPILER_FLAGS.*$//" configure.ac \
&& ./bootstrap && ./configure && make && make check && make install && cd ../
&& ./bootstrap && ./configure && make -j4 && make check && make install && cd ../

SHELL ["/bin/bash", "-c"]

0 comments on commit 15a4f10

Please sign in to comment.