Attempt to fix the build on arm7
Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
parent
b18c32ba8d
commit
7d430a60e6
32
0003-Fix-arm-build-paths-in-the-makefile.patch
Normal file
32
0003-Fix-arm-build-paths-in-the-makefile.patch
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
From 5c468c2935e3607edd715ae799520c0c97d6ab06 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Peter Jones <pjones@redhat.com>
|
||||||
|
Date: Thu, 2 Feb 2017 14:31:25 -0500
|
||||||
|
Subject: [PATCH] Fix arm build paths in the makefile
|
||||||
|
|
||||||
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
||||||
|
---
|
||||||
|
Make.defaults | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Make.defaults b/Make.defaults
|
||||||
|
index 51bd7d8..1815b90 100755
|
||||||
|
--- a/Make.defaults
|
||||||
|
+++ b/Make.defaults
|
||||||
|
@@ -62,12 +62,12 @@ OBJCOPY := $(prefix)$(CROSS_COMPILE)objcopy
|
||||||
|
|
||||||
|
# Host/target identification
|
||||||
|
OS := $(shell uname -s)
|
||||||
|
-HOSTARCH := $(shell $(HOSTCC) -dumpmachine | cut -f1 -d- | sed s,i[3456789]86,ia32,)
|
||||||
|
+HOSTARCH := $(shell $(HOSTCC) -dumpmachine | cut -f1 -d- | sed -e s,i[3456789]86,ia32, -e s,arm7.*,arm, )
|
||||||
|
ARCH := $(HOSTARCH)
|
||||||
|
|
||||||
|
# Get ARCH from the compiler if cross compiling
|
||||||
|
ifneq ($(CROSS_COMPILE),)
|
||||||
|
- override ARCH := $(shell $(CC) -dumpmachine | cut -f1 -d-| sed s,i[3456789]86,ia32,)
|
||||||
|
+ override ARCH := $(shell $(CC) -dumpmachine | cut -f1 -d-| sed -e s,i[3456789]86,ia32, -e s,arm7.*,arm, )
|
||||||
|
endif
|
||||||
|
|
||||||
|
# FreeBSD (and possibly others) reports amd64 instead of x86_64
|
||||||
|
--
|
||||||
|
2.9.3
|
||||||
|
|
@ -13,6 +13,7 @@ Source: http://superb-dca2.dl.sourceforge.net/project/gnu-efi/gnu-efi-%{version}
|
|||||||
|
|
||||||
Patch0001: 0001-Mark-our-explicit-fall-through-so-Wextra-will-work-i.patch
|
Patch0001: 0001-Mark-our-explicit-fall-through-so-Wextra-will-work-i.patch
|
||||||
Patch0002: 0002-Fix-some-types-gcc-doesn-t-like.patch
|
Patch0002: 0002-Fix-some-types-gcc-doesn-t-like.patch
|
||||||
|
Patch0003: 0003-Fix-arm-build-paths-in-the-makefile.patch
|
||||||
|
|
||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user