Changes between Version 92 and Version 93 of AndroidPort


Ignore:
Timestamp:
2012-01-10 15:19:03 (17 months ago)
Author:
afeder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v92 v93  
    191191The Android platform provides only a very minimal C++ runtime support library (/system/lib/libstdc++) and corresponding headers for it in the NDK. To compile the game with the Standard C++ Library, we have to explicitly instruct `ndk-build` to compile against the STL runtime. 
    192192 
    193 Create a new file called `Application.mk` under `jni` in the project directory, e.g.: 
     193Create a new file called `Application.mk` under the `jni` directory in the project directory, e.g.: 
    194194 
    195195{{{ 
     
    202202APP_STL := stlport_static 
    203203}}} 
    204  
    205  
    206204Then save the file and exit the text editor. 
    207205