Reviewers: Søren Gjesse, Description: Change default Android scons build to suit more modern hardware.
Please review this at http://codereview.chromium.org/1640008/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M SConstruct Index: SConstruct =================================================================== --- SConstruct (revision 4393) +++ SConstruct (working copy) @@ -52,8 +52,8 @@ GCC_EXTRA_CCFLAGS = [] GCC_DTOA_EXTRA_CCFLAGS = [] -ANDROID_FLAGS = ['-march=armv5te', - '-mtune=xscale', +ANDROID_FLAGS = ['-march=armv7-a', + '-mtune=cortex-a8', '-msoft-float', '-fpic', '-mthumb-interwork', @@ -69,6 +69,8 @@ '-fomit-frame-pointer', '-fno-strict-aliasing', '-finline-limit=64', + '-DCAN_USE_VFP_INSTRUCTIONS=1', + '-DCAN_USE_ARMV7_INSTRUCTIONS=1', '-MD'] ANDROID_INCLUDES = [ANDROID_TOP + '/bionic/libc/arch-arm/include', -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev To unsubscribe, reply using "remove me" as the subject.
