From 8fde05191a6896d0714d33ce9e26b0ef1d2d9afe Mon Sep 17 00:00:00 2001 From: Thierry Fauck Date: Thu, 13 Oct 2016 09:23:11 -0400 Subject: [PATCH] powerpc: Omit -Os flag to avoid use of savegrp* Signed-off-by: Thierry Fauck modified: stub/Makefile --- src/stub/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stub/Makefile b/src/stub/Makefile index e9470c4a..ee500468 100644 --- a/src/stub/Makefile +++ b/src/stub/Makefile @@ -1221,7 +1221,7 @@ tmp/powerpc-darwin.macho-fold.o : $(srcdir)/src/$$T.S $(call tc,f-objstrip,$@) tmp/powerpc-darwin.macho-main.o : $(srcdir)/src/$$T.c - $(call tc,gcc) -c -Os $< -o $@ + $(call tc,gcc) -c $< -o $@ $(call tc,f-objstrip,$@) @@ -1266,7 +1266,7 @@ tmp/powerpc-linux.elf-fold.o : $(srcdir)/src/$$T.S $(call tc,f-objstrip,$@) tmp/powerpc-linux.elf-main.o : $(srcdir)/src/$$T.c - $(call tc,gcc) -c -Os $< -o $@ + $(call tc,gcc) -c $< -o $@ $(call tc,f-objstrip,$@)