labyrinth

changeset 6:345db647383a

fixed the unloadable so bug
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 03 May 2015 02:23:54 +0300
parents c8826e5ebec1
children b557812c45db
files android/Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/android/Makefile	Fri May 01 05:58:41 2015 +0300
     1.2 +++ b/android/Makefile	Sun May 03 02:23:54 2015 +0300
     1.3 @@ -25,11 +25,11 @@
     1.4  
     1.5  android_usr = $(NDK)/platforms/$(android_platform)/arch-arm/usr
     1.6  android_inc = -I$(android_usr)/include -I$(native_app_glue_dir)
     1.7 -android_libs = -L$(android_usr)/lib -llog -landroid -lEGL -lGLESv1_CM
     1.8 +android_libs = -llog -landroid -lEGL -lGLESv1_CM -lm
     1.9  
    1.10  CFLAGS = -std=c99 -Wall -g -DAPP_NAME=\"$(name)\" \
    1.11  		 $(android_inc) -I$(root)/src/android -I$(root)/src/gles $(incpaths)
    1.12 -LDFLAGS = -Wl,--fix-cortex-a8 $(android_libs) $(libpaths)
    1.13 +LDFLAGS = -Wl,--fix-cortex-a8 -Wl,-z,defs $(android_libs) $(libpaths)
    1.14  
    1.15  .PHONY: debug
    1.16  debug: $(apk-debug)