aboutsummaryrefslogtreecommitdiff
path: root/projects/dlplibs
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2017-09-17 15:42:37 +0200
committerAbhishek Arya <inferno@chromium.org>2017-09-17 06:42:37 -0700
commit99880f1aef4e5096bc0eeff6fd8e24658f041cba (patch)
tree975a01338d773cfbc6c6e87b8571bb9e797ec471 /projects/dlplibs
parent92a77050028d068bc0e82989c02c9d35719692f6 (diff)
downloadoss-fuzz-99880f1aef4e5096bc0eeff6fd8e24658f041cba.tar.gz
dlplibs: workaround memory problems on builders (#845)
Diffstat (limited to 'projects/dlplibs')
-rwxr-xr-xprojects/dlplibs/build.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/projects/dlplibs/build.sh b/projects/dlplibs/build.sh
index e305b643d..a29b16464 100755
--- a/projects/dlplibs/build.sh
+++ b/projects/dlplibs/build.sh
@@ -149,7 +149,9 @@ pushd libmwaw
./configure --without-docs --disable-werror --disable-shared --enable-static --disable-tools --disable-zip --enable-fuzzers \
REVENGE_CFLAGS=-I$rvnginc REVENGE_LIBS="-L$rvnglib -lrevenge-0.0 -lrevenge-stream-0.0" \
REVENGE_GENERATORS_CFLAGS=-I$rvnginc REVENGE_GENERATORS_LIBS="-L$rvnglib -lrevenge-generators-0.0"
-make -j$(nproc)
+make -C src/lib -j$(nproc)
+# Link with less parallelism to avoid memory problems on the builders
+make -j2
popd
pushd libe-book