Changes between Version 24 and Version 25 of Getting-Started/Android


Ignore:
Timestamp:
Sep 27, 2013 6:44:45 AM (11 years ago)
Author:
nanang
Comment:

adding info building for other targets

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Android

    v24 v25  
    3434 
    3535Notes: 
     36 * to build for other targets, e.g: x86 or armv7, instead of just '{{{./configure-android}}}', run  
     37   {{{ 
     38   TARGET_ABI=armeabi-v7a ./configure-android --use-ndk-cflags 
     39   }}} 
     40 * for some targets, there may be error like 
     41   {{{ 
     42   error: undefined reference to '__stack_chk_fail_local' 
     43   }}} 
     44   this can be fixed by adding {{{-fno-stack-protector}}} into CFLAGS, e.g: via {{{user.mak}}} file. 
    3645 * the {{{./configure-android}}} is a wrapper that calls the standard {{{./configure}}} script with settings suitable for Android target. 
    3746 * you may pass standard {{{./configure}}} options to this script too.