[libFuzzer] Do not turn unittest warnings into errors.

Some warnings originating from googletest were causing bots to fail
while bulding unit tests.  The sanitizers address this issue by not
using -Werror.  We adopt this approach for libFuzzer.

llvm-svn: 335640
This commit is contained in:
Matt Morehouse 2018-06-26 18:37:37 +00:00
parent 0ab788e271
commit 0948bc2086
1 changed files with 0 additions and 1 deletions

View File

@ -3,7 +3,6 @@ set(LIBFUZZER_UNITTEST_CFLAGS
${COMPILER_RT_GTEST_CFLAGS}
-I${COMPILER_RT_SOURCE_DIR}/lib/fuzzer
-fno-rtti
-Werror
-O2)
if (APPLE)