diff options
author | Scott Wood | 2016-07-19 16:26:21 -0500 |
---|---|---|
committer | York Sun | 2016-07-25 12:51:16 -0700 |
commit | b60038ccabff484172bd39098afc7f7af3b9b3c0 (patch) | |
tree | 3d19c9da55f09e5d44671dbeef25792f51f4ca71 /arch | |
parent | 29d63a59eaf1c9f3b37e249cda2a97e5e4f183f8 (diff) |
powerpc/86xx: Pass -mcpu=7400 to GCC
Without this, GCC uses the toolchain default, which may be incompatible
with -maltivec.
Signed-off-by: Scott Wood <oss@buserror.net>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc86xx/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc86xx/config.mk b/arch/powerpc/cpu/mpc86xx/config.mk index 69a0b96eadb..aefb0f1fb4f 100644 --- a/arch/powerpc/cpu/mpc86xx/config.mk +++ b/arch/powerpc/cpu/mpc86xx/config.mk @@ -5,4 +5,4 @@ # SPDX-License-Identifier: GPL-2.0+ # -PLATFORM_CPPFLAGS += -mstring -maltivec -mabi=altivec -msoft-float +PLATFORM_CPPFLAGS += -mcpu=7400 -mstring -maltivec -mabi=altivec -msoft-float |