Changes between Version 150 and Version 151 of AndroidPort


Ignore:
Timestamp:
2012-01-24 07:26:25 (17 months ago)
Author:
afeder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v150 v151  
    189189 
    190190{{{ 
    191 $ export HOSTCONF=arm-unknown-linux-gnu 
     191$ export HOSTCONF=arm-eabi 
     192$ export ARCH=armv7-a 
     193$ export PATH=~/android/toolchain/bin:$PATH 
    192194$ export CROSS_COMPILE=arm-linux-androideabi 
    193195$ export CC=${CROSS_COMPILE}-gcc 
    194196$ export CXX=${CROSS_COMPILE}-g++ 
     197$ export SYSROOT=$HOME/android/toolchain/sysroot 
     198$ export CFLAGS="-DANDROID -mandroid -fomit-frame-pointer --sysroot $SYSROOT -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb" 
     199$ export CXXFLAGS=$CFLAGS 
    195200}}} 
    196201 
     
    216221}}} 
    217222 
    218 === Building the application === 
     223=== Building the game === 
    219224The native library (i.e. the actual game) is built using the standard Premake build system as follows. 
    220225