diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-03-31 14:58:52 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-03-31 14:59:28 -0300 |
commit | ad634876b5b7d775f6d490cf7f874c6aae058a28 (patch) | |
tree | 940f59000d23b83388af4f304554e3b68b130aab /platform/android | |
parent | 7f8a0cddcfbd5744113de1826380310ad920360a (diff) |
fixes for light2d in androids that do not support
read depth
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/detect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 4cf12538db..86743fc370 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -24,7 +24,7 @@ def get_opts(): ('NDK_TOOLCHAIN', 'toolchain to use for the NDK',"arm-eabi-4.4.0"), #android 2.3 ('ndk_platform', 'compile for platform: (2.2,2.3)',"2.2"), - ('NDK_TARGET', 'toolchain to use for the NDK',"arm-linux-androideabi-4.8"), + ('NDK_TARGET', 'toolchain to use for the NDK',"arm-linux-androideabi-4.9"), ('android_stl','enable STL support in android port (for modules)','no'), ('armv6','compile for older phones running arm v6 (instead of v7+neon+smp)','no'), ('x86','Xompile for Android-x86','no') @@ -91,7 +91,7 @@ def configure(env): gcc_path=gcc_path+"/darwin-x86_64/bin" #this may be wrong env['SHLINKFLAGS'][1] = '-shared' elif (os.name=="nt"): - gcc_path=gcc_path+"/windows/bin" #this may be wrong + gcc_path=gcc_path+"/windows-x86_64/bin" #this may be wrong |