https://codereview.appspot.com/7201045/diff/1/gyp/common_conditions.gypi File gyp/common_conditions.gypi (right): https://codereview.appspot.com/7201045/diff/1/gyp/common_conditions.gypi#newcode341 gyp/common_conditions.gypi:341: '-march=armv7-a', This flag is already defined. Should it be ...
11 years, 10 months ago
(2013-01-23 16:22:26 UTC)
#2
Yes it is intended, based on the following NDK docs... If you want to use ...
11 years, 10 months ago
(2013-01-23 18:23:34 UTC)
#5
Yes it is intended, based on the following NDK docs...
If you want to use Neon instructions, you will need to change the -mfpu
compiler flag:
CFLAGS='-march=armv7-a -mfloat-abi=softfp -mfpu=neon'
Note that this forces the use of VFPv3-D32, as per the ARM specification.
Also, make sure the following two flags are provided to linker:
LDFLAGS='-march=armv7-a -Wl,--fix-cortex-a8'
Issue 7201045: Update Android toolchain to NDK r8d with GCC 4.7
(Closed)
Created 11 years, 10 months ago by DerekS
Modified 11 years, 10 months ago
Reviewers: EricB
Base URL: https://skia.googlecode.com/svn/trunk
Comments: 3