enable openssl on 32 bit ios architectures

pull/583/head
Taner Sener 3 years ago
parent 9bf49c9d2a
commit 806e1c2a47
  1. 6
      scripts/apple/openssl.sh

@ -1,9 +1,9 @@
#!/bin/bash #!/bin/bash
if [[ ${ARCH} == "i386" ]] || [[ ${ARCH} == "armv7"* ]] || [[ ${FFMPEG_KIT_BUILD_TYPE} == "tvos" ]]; then if [[ ${FFMPEG_KIT_BUILD_TYPE} == "tvos" ]]; then
# openssl does not support 32-bit apple architectures and tvos yet # openssl does not support tvos yet
echo -e "ERROR: openssl is not supported on $ARCH architecture for $FFMPEG_KIT_BUILD_TYPE platform.\n" 1>>"${BASEDIR}"/build.log 2>&1 echo -e "ERROR: openssl is not supported on $FFMPEG_KIT_BUILD_TYPE platform.\n" 1>>"${BASEDIR}"/build.log 2>&1
return 200 return 200
fi fi

Loading…
Cancel
Save