Sha256: 31138e44b71510cc1a942e128facd1911cf9c20c6a3c610316e9d830700fb13a
Contents?: true
Size: 514 Bytes
Versions: 4
Compression:
Stored size: 514 Bytes
Contents
#!/bin/bash -eu # This script is called by the oss-fuzz main project when compiling the fuzz # targets. This script is regression tested by travisoss.sh. # Save off the current folder as the build root. export BUILD_ROOT=$PWD echo "CC: $CC" echo "CXX: $CXX" echo "LIB_FUZZING_ENGINE: $LIB_FUZZING_ENGINE" echo "CFLAGS: $CFLAGS" echo "CXXFLAGS: $CXXFLAGS" echo "OUT: $OUT" export MAKEFLAGS+="-j$(nproc)" pushd ossfuzz make V=1 all popd # Copy the fuzzers to the target directory. cp -v ossfuzz/*_fuzzer $OUT/
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
extlz4-0.3.4 | contrib/lz4/ossfuzz/ossfuzz.sh |
extlz4-0.3.3 | contrib/lz4/ossfuzz/ossfuzz.sh |
extlz4-0.3.2 | contrib/lz4/ossfuzz/ossfuzz.sh |
extlz4-0.3.1 | contrib/lz4/ossfuzz/ossfuzz.sh |