We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52d660d commit b1f4244Copy full SHA for b1f4244
1 file changed
build-libv8
@@ -5,10 +5,13 @@ set -u
5
6
version="${1}"
7
8
+NJOBS="${NJOBS:-$(getconf _NPROCESSORS_ONLN 2>/dev/null || true)}"
9
+NJOBS="${NJOBS:-1}"
10
+
11
cd "src/node-${version}"
12
-./configure --openssl-no-asm --without-npm
-make
13
+python2 configure --openssl-no-asm --without-npm --shared --with-intl=small-icu
14
+make -j"${NJOBS}"
15
16
# taken from
17
# ./configure
0 commit comments