We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In fuzzing mode or compatibility mode, address sanitizer is forced.
fuzztest/cmake/FuzzTestFlagSetup.cmake
Line 3 in a990537
This is problematic on oss-fuzz which has different sanitizers. We therefore remove those flags https://github.com/AOMediaCodec/libavif/blob/d074bae4b0b1d7423d102f6d9d5e0c5303971a51/ext/fuzztest.cmd#L14 and use the ones set in the environment variable CXXFLAGS by oss-fuzz.
CXXFLAGS
I believe those sanitizer flags should only be set for FUZZTEST_FUZZING_MODE, not when FUZZTEST_COMPATIBILITY_MODE STREQUAL "libfuzzer").
FUZZTEST_FUZZING_MODE
FUZZTEST_COMPATIBILITY_MODE STREQUAL "libfuzzer")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In fuzzing mode or compatibility mode, address sanitizer is forced.
fuzztest/cmake/FuzzTestFlagSetup.cmake
Line 3 in a990537
This is problematic on oss-fuzz which has different sanitizers. We therefore remove those flags https://github.com/AOMediaCodec/libavif/blob/d074bae4b0b1d7423d102f6d9d5e0c5303971a51/ext/fuzztest.cmd#L14 and use the ones set in the environment variable
CXXFLAGS
by oss-fuzz.I believe those sanitizer flags should only be set for
FUZZTEST_FUZZING_MODE
, not whenFUZZTEST_COMPATIBILITY_MODE STREQUAL "libfuzzer")
.The text was updated successfully, but these errors were encountered: