Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 1 | From 3683b3f3e318fa711f6018f154d950c51d5b597a Mon Sep 17 00:00:00 2001 |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 2 | From: Andrea Adami <andrea.adami@gmail.com> |
| 3 | Date: Thu, 19 Apr 2018 19:26:53 +0200 |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 4 | Subject: [PATCH] powerpc/purgatory: Makefile: remove unknown flags for powerpc |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 5 | |
| 6 | Fix |
| 7 | |
| 8 | powerpc-oe-linux-musl-ld: unrecognised emulation mode: soft-float |
| 9 | Supported emulations: elf32ppclinux elf32ppc elf32ppcsim elf32lppclinux |
| 10 | elf32lppc elf32lppcsim elf64ppc elf64lppc |
| 11 | |
| 12 | Upstream-Status: Inappropriate [klibc specific] |
| 13 | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 14 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 15 | --- |
| 16 | purgatory/arch/ppc/Makefile | 2 +- |
| 17 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 18 | |
| 19 | diff --git a/purgatory/arch/ppc/Makefile b/purgatory/arch/ppc/Makefile |
| 20 | index c85c58a..cd44a16 100644 |
| 21 | --- a/purgatory/arch/ppc/Makefile |
| 22 | +++ b/purgatory/arch/ppc/Makefile |
| 23 | @@ -7,7 +7,7 @@ ppc_PURGATORY_SRCS += purgatory/arch/ppc/misc.S |
| 24 | ppc_PURGATORY_SRCS += purgatory/arch/ppc/purgatory-ppc.c |
| 25 | ppc_PURGATORY_SRCS += purgatory/arch/ppc/console-ppc.c |
| 26 | |
| 27 | -ppc_PURGATORY_EXTRA_CFLAGS += -msoft-float |
| 28 | +#ppc_PURGATORY_EXTRA_CFLAGS += -msoft-float |
| 29 | |
| 30 | dist += purgatory/arch/ppc/Makefile $(ppc_PURGATORY_SRCS) \ |
| 31 | purgatory/arch/ppc/purgatory-ppc.h purgatory/arch/ppc/ppc_asm.h |