Skip to content

Commit

Permalink
oss-fuzz: disable debug info
Browse files Browse the repository at this point in the history
with clang-15 still had issues with that, which show up with LTO.
I don't *think* oss-fuzz needs debug info for anything, so let's disable it.
  • Loading branch information
LebedevRI committed Apr 30, 2024
1 parent 452b734 commit f22fd3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/oss-fuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ mkdir build
cd build

cmake \
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON \
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DRAWSPEED_ENABLE_DEBUG_INFO=OFF \
-DBINARY_PACKAGE_BUILD=ON -DWITH_OPENMP=$WITH_OPENMP \
-DUSE_BUNDLED_LLVMOPENMP=ON -DALLOW_DOWNLOADING_LLVMOPENMP=ON \
-DWITH_PUGIXML=OFF -DUSE_XMLLINT=OFF -DWITH_JPEG=OFF -DWITH_ZLIB=OFF \
Expand Down

0 comments on commit f22fd3c

Please sign in to comment.