forked from OSchip/llvm-project
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
This commit is contained in:
parent
734abbad79
commit
2782cb8da0
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue