diff options
author | Maksim Gamarnik <MoNTE48@mail.ua> | 2016-02-05 20:56:56 +0200 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2016-03-05 05:52:45 +0100 |
commit | 096a01ffef032a11239bd97e548a9ebb3c6add4a (patch) | |
tree | 987da2c9723ca038b57963f3c05bca5bb29bebed /build/android/jni | |
parent | af714c7ade02d3f645671276a0f0514f5099b59e (diff) | |
download | minetest-096a01ffef032a11239bd97e548a9ebb3c6add4a.tar.gz minetest-096a01ffef032a11239bd97e548a9ebb3c6add4a.tar.bz2 minetest-096a01ffef032a11239bd97e548a9ebb3c6add4a.zip |
Update Android dependencies, -O3 optimization, remove old ARMv5 config
* Update OpenSSL (thanks @sapier, i use his patch!), Curl and SQLite3.
* Remove old arm config. Almost all phones that use ARMv5 have 1 core and 256-512 RAM, it's about 2-5 FPS.
* Do -O3 optimization for libs and remove -fexpensive-optimizations for Minetest (-O3 includes this! Read gcc docs).
* OpenSSL fix - thanks @sapier, again.
Diffstat (limited to 'build/android/jni')
-rw-r--r-- | build/android/jni/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/jni/Android.mk b/build/android/jni/Android.mk index 0528c560b..e1a2a54cb 100644 --- a/build/android/jni/Android.mk +++ b/build/android/jni/Android.mk @@ -80,7 +80,7 @@ LOCAL_CFLAGS := -D_IRR_ANDROID_PLATFORM_ \ ifndef NDEBUG LOCAL_CFLAGS += -g -D_DEBUG -O0 -fno-omit-frame-pointer else -LOCAL_CFLAGS += -fexpensive-optimizations -O3 +LOCAL_CFLAGS += -O3 endif ifdef GPROF |