[PATCH] D112091: libfuzzer: All building libfuzzer for ARM32
Manoj Gupta via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 19 12:58:01 PDT 2021
manojgupta created this revision.
manojgupta added a reviewer: metzman.
Herald added subscribers: kristof.beyls, mgorny.
manojgupta requested review of this revision.
Herald added a project: Sanitizers.
Herald added a subscriber: Sanitizers.
We need libfuzzer libraries on Arm32 so that we can fuzz
Arm32 binaries on Linux (Chrome OS). Android already
allows Arm32 for libfuzzer.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D112091
Files:
compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
Index: compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
===================================================================
--- compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
+++ compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
@@ -38,7 +38,7 @@
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")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112091.380761.patch
Type: text/x-patch
Size: 569 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20211019/13c0da6e/attachment-0001.bin>
More information about the cfe-commits
mailing list