termux_step_setup_toolchain() { if [ "$TERMUX_PACKAGE_LIBRARY" = "bionic" ]; then TERMUX_STANDALONE_TOOLCHAIN="$TERMUX_COMMON_CACHEDIR/android-r${TERMUX_NDK_VERSION}-api-${TERMUX_PKG_API_LEVEL}" [ "$TERMUX_PKG_METAPACKAGE" = "true" ] && return # Bump TERMUX_STANDALONE_TOOLCHAIN if a change is made in # toolchain setup to ensure that everyone gets an updated # toolchain if [ "${TERMUX_NDK_VERSION}" = "27" ]; then TERMUX_STANDALONE_TOOLCHAIN+="-v0" termux_setup_toolchain_27 elif [ "${TERMUX_NDK_VERSION}" = 23c ]; then TERMUX_STANDALONE_TOOLCHAIN+="-v8" termux_setup_toolchain_23c else termux_error_exit "We do not have a setup_toolchain function for NDK version $TERMUX_NDK_VERSION" fi elif [ "$TERMUX_PACKAGE_LIBRARY" = "glibc" ]; then if [ "$TERMUX_ON_DEVICE_BUILD" = "true" ]; then TERMUX_STANDALONE_TOOLCHAIN="$TERMUX_PREFIX" else TERMUX_STANDALONE_TOOLCHAIN="${CGCT_DIR}/${TERMUX_ARCH}" fi termux_setup_toolchain_gnu fi }