From ed211b14908fa305754b6c9cd4ac0c176aba1931 Mon Sep 17 00:00:00 2001 From: jsg Date: Sun, 1 Jan 2017 03:16:48 +0000 Subject: Switch the arm default config from arm9e (armv5te) to mpcore (armv6k). The same change was made in ports gcc 4.9 already. This is is most recent arm architecture version base gcc has support for. This changes builtin defines from __ARM_ARCH_5TE__ to __ARM_ARCH_6K__. These defines are often used to select between inline assembly paths. Note that base gcc still lacks support for atomic builtins available in ports gcc and clang however. ok patrick@ kettenis@ --- gnu/gcc/gcc/config/arm/openbsd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/gcc') diff --git a/gnu/gcc/gcc/config/arm/openbsd.h b/gnu/gcc/gcc/config/arm/openbsd.h index 9431be1deb7..0daacab4d4d 100644 --- a/gnu/gcc/gcc/config/arm/openbsd.h +++ b/gnu/gcc/gcc/config/arm/openbsd.h @@ -38,8 +38,8 @@ Boston, MA 02111-1307, USA. */ #undef MULTILIB_DEFAULTS -/* armv5te default cpu. */ -#define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm9e +/* armv6k default cpu. */ +#define SUBTARGET_CPU_DEFAULT TARGET_CPU_mpcore /* We default to a soft-float ABI so that binaries can run on all target hardware. */ -- cgit v1.2.3-59-g8ed1b