mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
Merge pull request #3976 from bluca/fuzzers
Problem: we have to send a PR to oss-fuzz on every build change on the fuzzers
This commit is contained in:
commit
61c7ae0610
19
builds/fuzz/ci_build.sh
Executable file
19
builds/fuzz/ci_build.sh
Executable file
@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# used by oss-fuzz https://github.com/google/oss-fuzz/tree/master/projects/libzmq
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -x
|
||||||
|
|
||||||
|
cd "${SRC}/libsodium"
|
||||||
|
DO_NOT_UPDATE_CONFIG_SCRIPTS=1 ./autogen.sh
|
||||||
|
./configure --disable-shared --prefix=/install_prefix --disable-asm
|
||||||
|
make -j$(nproc) V=1 install DESTDIR=/tmp/zmq_install_dir
|
||||||
|
|
||||||
|
cd "${SRC}/libzmq"
|
||||||
|
./autogen.sh
|
||||||
|
export LDFLAGS+=" $(PKG_CONFIG_PATH=/tmp/zmq_install_dir/install_prefix/lib/pkgconfig pkg-config --static --libs --define-prefix libsodium)"
|
||||||
|
export CXXFLAGS+=" $(PKG_CONFIG_PATH=/tmp/zmq_install_dir/install_prefix/lib/pkgconfig pkg-config --static --cflags --define-prefix libsodium)"
|
||||||
|
./configure --disable-shared --prefix=/install_prefix --disable-perf --disable-curve-keygen PKG_CONFIG_PATH=/tmp/zmq_install_dir/install_prefix/lib/pkgconfig --with-libsodium=yes --with-fuzzing-installdir=fuzzers --with-fuzzing-engine=$LIB_FUZZING_ENGINE
|
||||||
|
make -j$(nproc) V=1 install DESTDIR=/tmp/zmq_install_dir
|
||||||
|
|
||||||
|
cp /tmp/zmq_install_dir/install_prefix/fuzzers/* "${OUT}"
|
Loading…
Reference in New Issue
Block a user