Stop generating unused assembly for 32-bit iOS
We stopped using it in
https://boringssl-review.googlesource.com/c/boringssl/+/64748. No need
to run through it with perlasm.
Change-Id: If58d38d9bf95080ebb245bec680b5c5639f07404
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/65807
Reviewed-by: Bob Beck <bbe@google.com>
Auto-Submit: David Benjamin <davidben@google.com>
Commit-Queue: Bob Beck <bbe@google.com>
diff --git a/cmake/perlasm.cmake b/cmake/perlasm.cmake
index 6d0c30f..0dc104c 100644
--- a/cmake/perlasm.cmake
+++ b/cmake/perlasm.cmake
@@ -37,9 +37,8 @@
add_perlasm_target("${dest}-win.S" ${src} win64 ${ARGN})
append_to_parent_scope("${var}_ASM" "${dest}-apple.S" "${dest}-linux.S" "${dest}-win.S")
elseif(arch STREQUAL "arm")
- add_perlasm_target("${dest}-apple.S" ${src} ios32 ${ARGN})
add_perlasm_target("${dest}-linux.S" ${src} linux32 ${ARGN})
- append_to_parent_scope("${var}_ASM" "${dest}-apple.S" "${dest}-linux.S")
+ append_to_parent_scope("${var}_ASM" "${dest}-linux.S")
elseif(arch STREQUAL "x86")
add_perlasm_target("${dest}-apple.S" ${src} macosx -fPIC -DOPENSSL_IA32_SSE2 ${ARGN})
add_perlasm_target("${dest}-linux.S" ${src} elf -fPIC -DOPENSSL_IA32_SSE2 ${ARGN})