[compiler-rt] 2782cb8 - libfuzzer: All building libfuzzer for ARM32
Manoj Gupta via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 18 17:31:01 PST 2021
Author: Manoj Gupta
Date: 2021-11-18T17:30:24-08:00
New Revision: 2782cb8da0b3c180fa7c8627cb255a026f3d25a2
URL: https://github.com/llvm/llvm-project/commit/2782cb8da0b3c180fa7c8627cb255a026f3d25a2
DIFF: https://github.com/llvm/llvm-project/commit/2782cb8da0b3c180fa7c8627cb255a026f3d25a2.diff
LOG: libfuzzer: All building libfuzzer for ARM32
We need libfuzzer libraries on Arm32 so that we can fuzz
Arm32 binaries on Linux (Chrome OS). Android already
allows Arm32 for libfuzzer.
Reviewed By: morehouse
Differential Revision: https://reviews.llvm.org/D112091
Added:
Modified:
compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
Removed:
################################################################################
diff --git a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
index 86fa3bb5527fa..9a96202c72d45 100644
--- a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
+++ b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
@@ -38,7 +38,7 @@ else()
endif()
if(OS_NAME MATCHES "Linux")
- set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64} ${S390X})
+ set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${S390X})
elseif (OS_NAME MATCHES "Windows")
set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64})
elseif(OS_NAME MATCHES "Android")
More information about the llvm-commits
mailing list