[PATCH] D61354: [libFuzzer] Disable i386 on non-Linux platforms

Jonathan Metzman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 30 18:38:31 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL359641: [libFuzzer] Disable i386 on non-Linux platforms (authored by metzman, committed by ).
Herald added a subscriber: delcypher.

Changed prior to commit:
  https://reviews.llvm.org/D61354?vs=197486&id=197496#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61354/new/

https://reviews.llvm.org/D61354

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
@@ -231,7 +231,11 @@
     ${MIPS32} ${MIPS64} ${PPC64} ${S390X})
 set(ALL_CRT_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64})
 set(ALL_DFSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64})
-set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64})
+if(LINUX)
+  set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64})
+else()
+  set(ALL_FUZZER_SUPPORTED_ARCH ${X86_64} ${ARM64})
+endif()
 
 if(APPLE)
   set(ALL_LSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64} ${ARM64})


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61354.197496.patch
Type: text/x-patch
Size: 672 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190501/554e2d21/attachment.bin>


More information about the llvm-commits mailing list