Changes between Version 102 and Version 103 of AndroidPort


Ignore:
Timestamp:
Jan 11, 2012, 3:20:17 AM (12 years ago)
Author:
Anders Feder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v102 v103  
    196196$ nano -w ~/android/0ad/jni/Application.mk
    197197}}}
    198 Insert these two lines in the file, substituting the part after the `:=` on the first line with the full path of your project directory:
     198Insert these three lines in the file, substituting the part after the `:=` on the first line with the full path of your project directory:
    199199
    200200{{{
    201201APP_PROJECT_PATH := /home/youruser/android/0ad
    202 APP_STL := stlport_static
     202APP_STL := gnustl_static
     203APP_CPPFLAGS += -fexceptions
     204
    203205}}}
    204206Then save the file and exit the text editor.
     
    236238Then save the file and exit the text editor.
    237239
    238 Now we must build !SpiderMonkey. Change directory to the !SpiderMonkey source code directory, e.g.:
     240Now we must build !SpiderMonkey. Change directory to the !SpiderMonkey source code directory, e.g.:
    239241
    240242{{{
    241243$ cd ~/android/0ad/jni/lib/js
    242244}}}
    243 Then execute the following commands to compile !SpiderMonkey as a static library:
     245Then execute the following commands to compile !SpiderMonkey as a static library:
    244246
    245247{{{
     
    247249$ make
    248250}}}
    249 
    250 
    251251.
    252 
    253 
    254252
    255253== Building the application ==