Last active
December 25, 2015 12:39
-
-
Save Mikhael-Danilov/6977533 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export NDK=d:/adt-bundle-windows-x86_64-20130917/android-ndk-r9 | |
export NDKABI=14 | |
export NDKVER=$NDK/toolchains/arm-linux-androideabi-4.8 | |
export NDKP=$NDKVER/prebuilt/windows-x86_64/bin/arm-linux-androideabi- | |
export NDKF="--sysroot $NDK/platforms/android-$NDKABI/arch-arm" | |
export NDKARCH="-march=armv7-a -mfloat-abi=softfp -Wl,--fix-cortex-a8" | |
export NDK_MAKE=$NDK/prebuilt/windows-x86_64/bin/make.exe | |
make HOST_CC="gcc -m32" CROSS=$NDKP TARGET_FLAGS="$NDKF $NDKARCH" TARGET_SYS="Linux" clean default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment