Changes between Version 92 and Version 93 of AndroidPort


Ignore:
Timestamp:
Jan 10, 2012, 4:19:03 PM (12 years ago)
Author:
Anders Feder
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