Skip to content

Commit

Permalink
Merge pull request x2on#224 from cgutman/tvos_sim_fix
Browse files Browse the repository at this point in the history
Fix target detection for ARM64 Apple TV Simulator headers
  • Loading branch information
x2on authored Mar 13, 2023
2 parents 09ae828 + 1bcb86e commit 70ea451
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-libssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ if [ ${#OPENSSLCONF_ALL[@]} -gt 1 ]; then
DEFINE_CONDITION="TARGET_OS_TV && TARGET_OS_SIMULATOR && TARGET_CPU_X86_64"
;;
*_tvos_arm64.h)
DEFINE_CONDITION="TARGET_OS_TV && TARGET_OS_EMBEDDED && TARGET_CPU_ARM64"
DEFINE_CONDITION="TARGET_OS_TV && (TARGET_OS_EMBEDDED || TARGET_OS_SIMULATOR) && TARGET_CPU_ARM64"
;;
*_watchos_i386.h)
DEFINE_CONDITION="TARGET_OS_WATCH && TARGET_OS_SIMULATOR && TARGET_CPU_X86"
Expand Down

0 comments on commit 70ea451

Please sign in to comment.