Skip to content

Commit

Permalink
compile-all-android.sh: revert the faulty dirty-linking
Browse files Browse the repository at this point in the history
  • Loading branch information
pavly-gerges committed Jun 10, 2024
1 parent 3a68fa6 commit ebb7fcd
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ source "./helper-scripts/project-impl/variables.sh"

./helper-scripts/project-impl/compile-electrostatic.sh \
"${CLANG_BIN}" "${CLANGPP_BIN}" \
"-target ${ARM_64} -ldl -lc" "${NDK_TOOLCHAIN_INCLUDES}" "android" "${ARM_64}"
"-target ${ARM_64}" "${NDK_TOOLCHAIN_INCLUDES}" "android" "${ARM_64}"

./helper-scripts/project-impl/compile-electrostatic.sh \
"${CLANG_BIN}" "${CLANGPP_BIN}" \
"-target ${ARM_32} -ldl -lc" "${NDK_TOOLCHAIN_INCLUDES}" "android" "${ARM_32}"
"-target ${ARM_32}" "${NDK_TOOLCHAIN_INCLUDES}" "android" "${ARM_32}"

./helper-scripts/project-impl/compile-electrostatic.sh \
"${CLANG_BIN}" "${CLANGPP_BIN}" \
"-target ${ANDROID_x86} -ldl -lc" "${NDK_TOOLCHAIN_INCLUDES}" "android" "${ANDROID_x86}"
"-target ${ANDROID_x86}" "${NDK_TOOLCHAIN_INCLUDES}" "android" "${ANDROID_x86}"

./helper-scripts/project-impl/compile-electrostatic.sh \
"${CLANG_BIN}" "${CLANGPP_BIN}" \
"-target ${ANDROID_x86_64} -ldl -lc" "${NDK_TOOLCHAIN_INCLUDES}" "android" "${ANDROID_x86_64}"
"-target ${ANDROID_x86_64}" "${NDK_TOOLCHAIN_INCLUDES}" "android" "${ANDROID_x86_64}"

0 comments on commit ebb7fcd

Please sign in to comment.