Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion projects/gpac/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,30 @@
#
################################################################################

MAKE_PARAM=""

# force fwrapv to make signed overflows deterministic
export CFLAGS="$CFLAGS -fwrapv"
export CXXFLAGS="$CXXFLAGS -fwrapv"

# avoid simple int overflows
if [ "$SANITIZER" = undefined ]; then
export CFLAGS="$CFLAGS -fno-sanitize=unsigned-integer-overflow,signed-integer-overflow"
export CXXFLAGS="$CXXFLAGS -fno-sanitize=unsigned-integer-overflow,signed-integer-overflow"
fi


# # for debugging and reproducing do asan+ubsan
# if [ "$SANITIZER" = "address" ]; then
# export CFLAGS="$CFLAGS -fsanitize=undefined -fno-sanitize-recover=undefined"
# export CXXFLAGS="$CXXFLAGS -fsanitize=undefined -fno-sanitize-recover=undefined"
# fi
# MAKE_PARAM="-j"



./configure --static-build --extra-cflags="${CFLAGS}" --extra-ldflags="${CFLAGS}"
make
make $MAKE_PARAM


fuzzers=$(find $SRC/gpac/testsuite/oss-fuzzers -name "fuzz_*.c")
Expand Down
2 changes: 1 addition & 1 deletion projects/postcss/project.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
homepage: https://postcss.org/
language: javascript
primary_contact: "andrey@sitnik.es"
primary_contact: "andrey@sitnik.ru"
main_repo: https://github.com/postcss/postcss
fuzzing_engines:
- libfuzzer
Expand Down
Loading