Skip to content

Commit

Permalink
OpenSSL: Fix Android x86_64 build (#1647)
Browse files Browse the repository at this point in the history
It was being compiled for x86, not x86_64.
  • Loading branch information
hugleo committed Oct 9, 2023
1 parent 8d39d55 commit b864466
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions thirdparty/openssl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ if(DEFINED ENV{ANDROID})
set(CFG_OPTS android-arm ${CFG_OPTS})
elseif (${CHOST} MATCHES "^aarch64-.*")
set(CFG_OPTS android-arm64 ${CFG_OPTS})
elseif (${CHOST} MATCHES "^x86_64-.*")
set(CFG_OPTS android-x86_64 ${CFG_OPTS})
else()
set(CFG_OPTS android-x86 ${CFG_OPTS})
endif()
Expand Down

0 comments on commit b864466

Please sign in to comment.