[PATCH] D40592: [LibFuzzer] Add Android to LibFuzzer's supported OSes
Yi Kong via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 28 19:53:15 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL319288: [LibFuzzer] Add Android to LibFuzzer's supported OSes (authored by kongyi).
Changed prior to commit:
https://reviews.llvm.org/D40592?vs=124676&id=124688#toc
Repository:
rL LLVM
https://reviews.llvm.org/D40592
Files:
compiler-rt/trunk/cmake/config-ix.cmake
Index: compiler-rt/trunk/cmake/config-ix.cmake
===================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake
+++ compiler-rt/trunk/cmake/config-ix.cmake
@@ -194,7 +194,7 @@
set(ALL_ASAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64}
${MIPS32} ${MIPS64} ${PPC64} ${S390X})
set(ALL_DFSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64})
-set(ALL_FUZZER_SUPPORTED_ARCH x86_64)
+set(ALL_FUZZER_SUPPORTED_ARCH ${X86_64})
if(APPLE)
set(ALL_LSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64} ${ARM64})
@@ -592,7 +592,7 @@
endif()
if (COMPILER_RT_HAS_SANITIZER_COMMON AND FUZZER_SUPPORTED_ARCH AND
- OS_NAME MATCHES "Darwin|Linux|NetBSD")
+ OS_NAME MATCHES "Android|Darwin|Linux|NetBSD")
set(COMPILER_RT_HAS_FUZZER TRUE)
else()
set(COMPILER_RT_HAS_FUZZER FALSE)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D40592.124688.patch
Type: text/x-patch
Size: 831 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171129/c9f0ede8/attachment.bin>
More information about the llvm-commits
mailing list