Changes between Version 7 and Version 8 of AndroidBuildApp
- Timestamp:
- Aug 28, 2013, 10:59:05 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AndroidBuildApp
v7 v8 62 62 -O3 -mhard-float -mfpu=neon -mfloat-abi=softfp -fomit-frame-pointer 63 63 }}} 64 65 It's often useful to build an executable that can support specific instructions for the vfp or neon instructions. You can do this by selectively compiling using the above options, into separate libraries, and use C++ namespaces to separate similar function calls. Refer to the boinc/client/Makefile.am and client/whetstone.cpp, and client/cs_benchmark.h files for an example of how to do this. 66 64 67 == Example == 65 68