File tree 7 files changed +7
-7
lines changed
src/ci/docker/host-x86_64/dist-x86_64-linux
7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ curl https://ftp.gnu.org/gnu/binutils/binutils-$VERSION.tar.bz2 | tar xfj -
11
11
mkdir binutils-build
12
12
cd binutils-build
13
13
hide_output ../binutils-$VERSION /configure --prefix=/rustroot
14
- hide_output make -j10
14
+ hide_output make -j $( nproc )
15
15
hide_output make install
16
16
17
17
cd ..
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ hide_output \
30
30
-DLLVM_ENABLE_PROJECTS=" clang;lld" \
31
31
-DC_INCLUDE_DIRS=" $INC "
32
32
33
- hide_output make -j10
33
+ hide_output make -j $( nproc )
34
34
hide_output make install
35
35
36
36
cd ../..
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ curl -L https://github.com/Kitware/CMake/releases/download/v$CMAKE/cmake-$CMAKE.
9
9
mkdir cmake-build
10
10
cd cmake-build
11
11
hide_output ../cmake-$CMAKE /configure --prefix=/rustroot
12
- hide_output make -j10
12
+ hide_output make -j $( nproc )
13
13
hide_output make install
14
14
15
15
cd ..
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ hide_output ../curl-$VERSION/configure \
30
30
--disable-rtsp \
31
31
--disable-ldaps \
32
32
--disable-ldap
33
- hide_output make -j10
33
+ hide_output make -j $( nproc )
34
34
hide_output make install
35
35
36
36
cd ..
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ hide_output ../gcc-$GCC/configure \
32
32
--prefix=/rustroot \
33
33
--enable-languages=c,c++ \
34
34
--disable-gnu-unique-object
35
- hide_output make -j10
35
+ hide_output make -j $( nproc )
36
36
hide_output make install
37
37
ln -s gcc /rustroot/bin/cc
38
38
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ curl $URL | tar xzf -
14
14
15
15
cd openssl-$VERSION
16
16
hide_output ./config --prefix=/rustroot shared -fPIC
17
- hide_output make -j10
17
+ hide_output make -j $( nproc )
18
18
hide_output make install
19
19
cd ..
20
20
rm -rf openssl-$VERSION
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ cd python-build
14
14
# than that fairly normal.
15
15
CFLAGS=' -I /rustroot/include' LDFLAGS=' -L /rustroot/lib -L /rustroot/lib64' \
16
16
hide_output ../Python-$VERSION /configure --prefix=/rustroot
17
- hide_output make -j10
17
+ hide_output make -j $( nproc )
18
18
hide_output make install
19
19
20
20
cd ..
You can’t perform that action at this time.
0 commit comments