[PATCH] D27868: [libFuzzer] Diff 23 - Properly use compiler options supported on Windows.

Marcos Pividori via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 20 14:59:54 PST 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL292668: [libFuzzer] Properly use compiler options supported on Windows. (authored by mpividori).

Changed prior to commit:
  https://reviews.llvm.org/D27868?vs=82607&id=85202#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D27868

Files:
  llvm/trunk/lib/Fuzzer/test/CMakeLists.txt


Index: llvm/trunk/lib/Fuzzer/test/CMakeLists.txt
===================================================================
--- llvm/trunk/lib/Fuzzer/test/CMakeLists.txt
+++ llvm/trunk/lib/Fuzzer/test/CMakeLists.txt
@@ -25,7 +25,7 @@
 endforeach()
 
 # Enable the coverage instrumentation (it is disabled for the Fuzzer lib).
-set(CMAKE_CXX_FLAGS "${LIBFUZZER_FLAGS_BASE} -fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp,trace-div,trace-gep -g")
+set(CMAKE_CXX_FLAGS "${LIBFUZZER_FLAGS_BASE} -fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp,trace-div,trace-gep -gline-tables-only")
 
 # add_libfuzzer_test(<name>
 #   SOURCES source0.cpp [source1.cpp ...]


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27868.85202.patch
Type: text/x-patch
Size: 671 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170120/352aa29c/attachment.bin>


More information about the llvm-commits mailing list