Skip to content

Commit

Permalink
Hardcode disable Bitcode to true
Browse files Browse the repository at this point in the history
Deprecated in Xcode 14.
  • Loading branch information
keeshux committed Sep 25, 2022
1 parent 4d57a92 commit 2a30117
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions build-libssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ echo_help()
echo " --min-watchos-sdk=SDKVERSION Set minimum watchOS SDK version (default: $WATCHOS_MIN_SDK_VERSION)"
echo " --min-tvos-sdk=SDKVERSION Set minimum tvOS SDK version (default: $TVOS_MIN_SDK_VERSION)"
echo " --noparallel Disable running make with parallel jobs (make -j)"
echo " --disable-bitcode Disable embedding Bitcode"
echo " -v, --verbose Enable verbose logging"
echo " --verbose-on-error Dump last 500 lines from log file if an error occurs (for Travis builds)"
echo " --version=VERSION OpenSSL version to build (defaults to ${DEFAULTVERSION})"
Expand Down Expand Up @@ -237,7 +236,7 @@ ARCHS=""
BRANCH=""
CLEANUP=""
CONFIG_ENABLE_EC_NISTP_64_GCC_128=""
CONFIG_DISABLE_BITCODE=""
CONFIG_DISABLE_BITCODE="true"
CONFIG_NO_DEPRECATED=""
IOS_SDKVERSION=""
MACOS_SDKVERSION=""
Expand Down Expand Up @@ -266,9 +265,6 @@ case $i in
--ec-nistp-64-gcc-128)
CONFIG_ENABLE_EC_NISTP_64_GCC_128="true"
;;
--disable-bitcode)
CONFIG_DISABLE_BITCODE="true"
;;
-h|--help)
echo_help
exit
Expand Down

0 comments on commit 2a30117

Please sign in to comment.