File tree 8 files changed +9
-9
lines changed
8 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ function build_c_igraph() {
48
48
fi
49
49
50
50
51
- try $MAKE
52
- try $MAKE install
51
+ try $MAKE -j $MAKE_JOBS
52
+ try $MAKE -j $MAKE_JOBS install
53
53
54
54
pop_arm
55
55
touch .built
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function build_libevent() {
22
22
23
23
push_arm
24
24
try ./configure --build=i686-pc-linux-gnu --host=arm-linux-eabi --prefix=$BUILD_libevent /build/
25
- try make install
25
+ try make -j $MAKE_JOBS install
26
26
pop_arm
27
27
}
28
28
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ function build_libpq() {
29
29
push_arm
30
30
31
31
try ./configure --without-readline --host=arm-linux
32
- try make submake-libpq
32
+ try make -j $MAKE_JOBS submake-libpq
33
33
try cp -a $BUILD_libpq /src/interfaces/libpq/libpq.a $LIBS_PATH
34
34
35
35
pop_arm
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function build_libsodium() {
23
23
push_arm
24
24
25
25
try ./configure --enable-minimal --disable-soname-versions --host=" arm-linux-androideabi" --enable-shared
26
- try make
26
+ try make -j $MAKE_JOBS
27
27
28
28
try cp -L $BUILD_libsodium /src/libsodium/.libs/libsodium.so $LIBS_PATH
29
29
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ function build_libxml2() {
26
26
--without-modules --without-legacy --without-history --without-debug --without-docbook --without-python
27
27
try $SED ' s/ runtest\$(EXEEXT) \\/ \\/' Makefile
28
28
try $SED ' s/ testrecurse\$(EXEEXT)$//' Makefile
29
- try make
29
+ try make -j $MAKE_JOBS
30
30
31
31
pop_arm
32
32
}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ function build_libxslt() {
30
30
try ./configure --build=i686-pc-linux-gnu --host=arm-linux-eabi \
31
31
--without-plugins --without-debug --without-python --without-crypto \
32
32
--with-libxml-src=$BUILD_libxml2
33
- try make
33
+ try make -j $MAKE_JOBS
34
34
35
35
36
36
pop_arm
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function build_libyaml() {
23
23
24
24
# using arm-linux-eabi does not create a shared library
25
25
try ./configure --build=i686-pc-linux-gnu --host=arm-linux-androideabi
26
- try make
26
+ try make -j $MAKE_JOBS
27
27
28
28
try cp -L $BUILD_libyaml /src/.libs/libyaml.so $LIBS_PATH
29
29
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function build_openssl() {
23
23
push_arm
24
24
25
25
try ./Configure no-dso no-krb5 linux-armv4
26
- try make build_libs
26
+ try make -j $MAKE_JOBS build_libs
27
27
28
28
pop_arm
29
29
}
You can’t perform that action at this time.
0 commit comments