Skip to content

Commit

Permalink
android: Fix ANDROID_ABI flag not being passed on
Browse files Browse the repository at this point in the history
This caused everything to be built for arm instead of arm64
  • Loading branch information
rdb committed Nov 26, 2024
1 parent 640cf05 commit fae3a62
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,9 @@ set(COMMON_CMAKE_ARGS
-DCMAKE_INSTALL_LIBDIR=lib
-DCMAKE_ANDROID_ARCH=${CMAKE_ANDROID_ARCH}
-DCMAKE_ANDROID_ARCH_ABI=${CMAKE_ANDROID_ARCH_ABI}
-DCMAKE_ANDROID_ARCH_TRIPLE=${CMAKE_ANDROID_ARCH_TRIPLE}
-DCMAKE_ANDROID_ARCH_LLVM_TRIPLE=${CMAKE_ANDROID_ARCH_LLVM_TRIPLE}
#-DCMAKE_ANDROID_ARCH_TRIPLE=${CMAKE_ANDROID_ARCH_TRIPLE}
#-DCMAKE_ANDROID_ARCH_LLVM_TRIPLE=${CMAKE_ANDROID_ARCH_LLVM_TRIPLE}
-DANDROID_ABI=${CMAKE_ANDROID_ARCH_ABI}
-DANDROID_PLATFORM=${ANDROID_PLATFORM}
-DBUILD_SHARED_LIBS=OFF
-DSKIP_INSTALL_EXECUTABLES=ON
Expand Down

0 comments on commit fae3a62

Please sign in to comment.