Turn off ubsan enum check for ICU project (#11539)

Our fuzzer try to use out of bound enum to make sure the API will not
crash so we like to turn that enum check off to avoid noise.
This commit is contained in:
Frank Yung-Fong Tang 2024-01-25 02:57:58 -08:00 committed by GitHub
parent 296dc88841
commit 979d7fd417
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ CFLAGS=$CFLAGS CXXFLAGS=$CXXFLAGS CC=$CC CXX=$CXX \
--with-library-bits=64 --with-data-packaging=static --enable-static --disable-shared
export ASAN_OPTIONS="detect_leaks=0"
export UBSAN_OPTIONS="detect_leaks=0"
export UBSAN_OPTIONS="detect_leaks=0,enum=0"
make -j$(nproc)