summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew G McGovern <matthew.mcgovern@microsoft.com>2019-08-29 17:47:43 +0000
committerMatthew G McGovern <matthew.mcgovern@microsoft.com>2019-08-29 17:47:43 +0000
commit427f4c90a62adfd50c3f0e289255e19b6d9d5281 (patch)
tree8ff071689a83628e9b0adcc88649a2c8fe784370
parent54051ec4047a5016bd065503ad6cf4fc64695ef1 (diff)
downloadcompiler-rt-427f4c90a62adfd50c3f0e289255e19b6d9d5281.tar.gz
[cmake] enable x86 libfuzzer on Windows
- recent commit https://reviews.llvm.org/D66433 enabled libfuzzer to build on windows, this just enables the option to build as part of the the regular build. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@370390 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--cmake/config-ix.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index 7c2121251..d2da0496b 100644
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -245,6 +245,8 @@ endif()
if(OS_NAME MATCHES "Linux")
set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64})
+elseif (OS_NAME MATCHES "Windows")
+ set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64})
elseif(OS_NAME MATCHES "Android")
set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64})
else()