Skip to content

Commit

Permalink
Build OpenSSL for arm64e (#6)
Browse files Browse the repository at this point in the history
I have missed this architecture from the default list. It is important
for more security featuress of iOS [1], let's add it. The architecture
has been available for a while, and it looks like latest devices are
going to require it.

[1]: https://developer.apple.com/documentation/security/preparing_your_app_to_work_with_pointer_authentication

Co-Authored-By: vixentael <[email protected]>

Co-authored-by: vixentael <[email protected]>
  • Loading branch information
ilammy and vixentael authored Aug 7, 2020
1 parent 214f628 commit c05395c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ VERSION ?= 1.1.1g
MIN_IOS_SDK = 8.0
MIN_OSX_SDK = 10.9

BUILD_ARCHS += ios_i386 ios_x86_64 ios_arm64 ios_armv7s ios_armv7
BUILD_ARCHS += ios_i386 ios_x86_64 ios_arm64 ios_arm64e ios_armv7s ios_armv7
BUILD_ARCHS += mac_x86_64
BUILD_TARGETS += ios-sim-cross-i386 ios-sim-cross-x86_64
BUILD_TARGETS += ios64-cross-arm64 ios-cross-armv7s ios-cross-armv7
BUILD_TARGETS += ios64-cross-arm64 ios64-cross-arm64e ios-cross-armv7s ios-cross-armv7
BUILD_TARGETS += macos64-x86_64

BUILD_FLAGS += --version=$(VERSION)
Expand Down

0 comments on commit c05395c

Please sign in to comment.