mirror of https://github.com/google/oss-fuzz.git
libfido2: enable more fuzzing engines (#9467)
This commit is contained in:
parent
5a9e2a461b
commit
c347ac5cae
|
@ -46,7 +46,8 @@ make install
|
||||||
# Building libfido2 with ${LIB_FUZZING_ENGINE} and chosen sanitizer
|
# Building libfido2 with ${LIB_FUZZING_ENGINE} and chosen sanitizer
|
||||||
cd ${SRC}/libfido2
|
cd ${SRC}/libfido2
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake -DFUZZ=1 -DFUZZ_LDFLAGS=${LIB_FUZZING_ENGINE} \
|
cmake -DFUZZ=1 -DFUZZ_LDFLAGS="${LIB_FUZZING_ENGINE}" \
|
||||||
|
-DFUZZ_LINKER_LANGUAGE=CXX \
|
||||||
-DPKG_CONFIG_USE_CMAKE_PREFIX_PATH=1 \
|
-DPKG_CONFIG_USE_CMAKE_PREFIX_PATH=1 \
|
||||||
-DCMAKE_PREFIX_PATH=${WORK} \
|
-DCMAKE_PREFIX_PATH=${WORK} \
|
||||||
-DCMAKE_INSTALL_PREFIX=${WORK} \
|
-DCMAKE_INSTALL_PREFIX=${WORK} \
|
||||||
|
|
|
@ -13,4 +13,7 @@ sanitizers:
|
||||||
- memory
|
- memory
|
||||||
fuzzing_engines:
|
fuzzing_engines:
|
||||||
- libfuzzer
|
- libfuzzer
|
||||||
|
- afl
|
||||||
|
- centipede
|
||||||
|
- honggfuzz
|
||||||
main_repo: 'https://github.com/Yubico/libfido2'
|
main_repo: 'https://github.com/Yubico/libfido2'
|
||||||
|
|
Loading…
Reference in New Issue