Parallel jobs for container build

pull/54/head
Andre Richter 4 years ago
parent 681092829c
commit c5d0f63ede
No known key found for this signature in database
GPG Key ID: 2116C1AB102F615E

@ -47,7 +47,7 @@ RUN set -ex; \
./configure --target-list=aarch64-softmmu --enable-modules \ ./configure --target-list=aarch64-softmmu --enable-modules \
--enable-tcg-interpreter --enable-debug-tcg \ --enable-tcg-interpreter --enable-debug-tcg \
--python=/usr/bin/python2.7; \ --python=/usr/bin/python2.7; \
make; \ make -j8; \
make install; \ make install; \
cd ..; \ cd ..; \
rm -rf qemu; \ rm -rf qemu; \
@ -56,7 +56,7 @@ RUN set -ex; \
cd openocd; \ cd openocd; \
./bootstrap; \ ./bootstrap; \
./configure --enable-ftdi; \ ./configure --enable-ftdi; \
make; \ make -j8; \
make install; \ make install; \
# GDB # GDB
wget -P ~ git.io/.gdbinit; \ wget -P ~ git.io/.gdbinit; \

Loading…
Cancel
Save