aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9
diff options
context:
space:
mode:
authorPavel Chupin <pavel.v.chupin@intel.com>2014-06-20 15:25:13 +0400
committerPavel Chupin <pavel.v.chupin@intel.com>2014-06-20 15:25:13 +0400
commit07c90b853afa81c102fbdcc3b956641f13c450c4 (patch)
treef1d6090344c237e698510551fe8a61c7d3acbfa3 /gcc-4.9
parent85f026f337499654a77d32ca68929fd5d456000e (diff)
downloadtoolchain_gcc-07c90b853afa81c102fbdcc3b956641f13c450c4.tar.gz
toolchain_gcc-07c90b853afa81c102fbdcc3b956641f13c450c4.tar.bz2
toolchain_gcc-07c90b853afa81c102fbdcc3b956641f13c450c4.zip
Setup x86_64 ABI and add -mssse3 to x86 ABI
32-bit: replace -msse3 by -mssse3 64-bit: setup default options as -msse4.2 -mpopcnt Note: when multilib compiler is used -m32 will match 32-bit options and -m64 or default (neither -m32 nor -m64) will match 64-bit options. Change-Id: Ia20a03f54e3ff5857108e9ab0ae1c4c7c1e6cc7f Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
Diffstat (limited to 'gcc-4.9')
-rw-r--r--gcc-4.9/gcc/config/i386/linux-common.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc-4.9/gcc/config/i386/linux-common.h b/gcc-4.9/gcc/config/i386/linux-common.h
index 93013221a..574f096e6 100644
--- a/gcc-4.9/gcc/config/i386/linux-common.h
+++ b/gcc-4.9/gcc/config/i386/linux-common.h
@@ -27,12 +27,16 @@ along with GCC; see the file COPYING3. If not see
} \
while (0)
+#undef ANDROID_TARGET_CC1_SPEC
+#define ANDROID_TARGET_CC1_SPEC \
+ "%{m32:-mstackrealign -mssse3 -fno-short-enums}" \
+ "%{!m32:-msse4.2 -mpopcnt}"
+
#undef CC1_SPEC
#define CC1_SPEC \
LINUX_OR_ANDROID_CC (GNU_USER_TARGET_CC1_SPEC, \
GNU_USER_TARGET_CC1_SPEC \
- " -mstackrealign -msse3" \
- " -fno-short-enums" \
+ ANDROID_TARGET_CC1_SPEC \
" " \
ANDROID_CC1_SPEC("-fPIC"))