Changes between Version 22 and Version 23 of AndroidBuildApp
- Timestamp:
- Jan 15, 2015, 12:18:04 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AndroidBuildApp
v22 v23 38 38 ~/boinc/android/build_androidtc_arm.sh 39 39 }}} 40 This create a directory ~/androidarm-tc containing 41 compilers, linkers, and libraries for that CPU type. 40 42 43 Now build the BOINC libraries: 44 {{{ 45 cd ~/boinc/android 46 build_libraries_arm.sh 47 }}} 48 This builds the libraries, 49 and stores them together with their .h files in ~/androidtc_arm. 41 50 42 51 Now build your app as follows: … … 48 57 Note: this assumes we're building an ARM executable. 49 58 If you want to build MIPS or Intel, substitute "mips" or "intel" in the above commands. 50 51 HOW TO BUILD BOINC LIBS?52 53 HOW TO LINK WITH BOINC LIBS?54 59 55 60 == Building FPU versions == … … 136 141 -llog refers to the library required to use Logcat from native code. 137 142 Logcat is used for debugging purposes and is not required for the app's functionality. 143