Revision: 12654 Author: [email protected] Date: Tue Oct 2 06:20:27 2012 Log: Change the Android makefile to use GCC 4.6 instead of GCC 4.4.3.
Android NDK 8b includes GCC 4.6 [email protected] Review URL: https://chromiumcodereview.appspot.com/11032018 http://code.google.com/p/v8/source/detail?r=12654 Modified: /branches/bleeding_edge/Makefile.android ======================================= --- /branches/bleeding_edge/Makefile.android Mon Sep 3 04:27:09 2012 +++ /branches/bleeding_edge/Makefile.android Tue Oct 2 06:20:27 2012 @@ -48,11 +48,11 @@ ifeq ($(ARCH), android_arm) DEFINES = target_arch=arm v8_target_arch=arm android_target_arch=arm DEFINES += arm_neon=0 armv7=1 - TOOLCHAIN_ARCH = arm-linux-androideabi-4.4.3 + TOOLCHAIN_ARCH = arm-linux-androideabi-4.6 else ifeq ($(ARCH), android_ia32) DEFINES = target_arch=ia32 v8_target_arch=ia32 android_target_arch=x86 - TOOLCHAIN_ARCH = x86-4.4.3 + TOOLCHAIN_ARCH = x86-4.6 else $(error Target architecture "${ARCH}" is not supported) endif -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
