Update build.sh

This commit is contained in:
Mike Aizatsky 2016-11-01 15:55:32 -07:00 committed by GitHub
parent 2b092122a5
commit 9d178fab04
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@ cd /src/libchewing
# build the library. # build the library.
./autogen.sh ./autogen.sh
./configure --disable-shared --enable-static --without-sqlite3 ./configure --disable-shared --enable-static --without-sqlite3
make -j$(nproc) clean all make clean
make -j$(nproc) all
# build your fuzzer(s) # build your fuzzer(s)
make -C test CFLAGS="$CFLAGS -Dmain=stress_main -Drand=get_fuzz_input" stress.o make -C test CFLAGS="$CFLAGS -Dmain=stress_main -Drand=get_fuzz_input" stress.o