From e12cff87b86615f5a4643d246a6c1963a0e81ca5 Mon Sep 17 00:00:00 2001 From: Vicente Olivert Riera Date: Thu, 19 May 2016 10:35:45 +0100 Subject: [PATCH] Makefile.system: P5600 and I6400 cores need -mmsa Signed-off-by: Vicente Olivert Riera --- Makefile.system | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile.system b/Makefile.system index 73361fe..24a7a64 100644 --- a/Makefile.system +++ b/Makefile.system @@ -521,6 +521,16 @@ CCOMMON_OPT += -march=mips64 FCOMMON_OPT += -march=mips64 endif +ifeq ($(CORE), P5600) +CCOMMON_OPT += -mmsa +FCOMMON_OPT += -mmsa +endif + +ifeq ($(CORE), I6400) +CCOMMON_OPT += -mmsa +FCOMMON_OPT += -mmsa +endif + ifeq ($(OSNAME), AIX) BINARY_DEFINED = 1 endif -- 2.7.4