summaryrefslogtreecommitdiffstats
path: root/recipes-extended/kvmtool/files/external-crosscompiler.patch
blob: b8780245900ec4bd80715db1da4dc874b668cf0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
From 91b7123682c67ec8b0c50147c9ebd59efa563f26 Mon Sep 17 00:00:00 2001
From: Stefan Agner <stefan@agner.ch>
Date: Tue, 6 Sep 2016 11:51:40 -0700
Subject: [PATCH] kvmtool: add lightweight hypervisor native Linux KVM tool

Upstream-Status: Inappropriate [embedded specific]

This allows OpenEmbedded to pass in cross compiler configuration using
the default envirnment variables. It is required so that kvmtool can
be linked against the cross-compiled libfdt library.

---
 Makefile | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/Makefile b/Makefile
index e9121dc..c05b2c0 100644
--- a/Makefile
+++ b/Makefile
@@ -19,12 +19,6 @@ include config/utilities.mak
 include config/feature-tests.mak
 -include $(OUTPUT)KVMTOOLS-VERSION-FILE
 
-CC	:= $(CROSS_COMPILE)gcc
-CFLAGS	:=
-LD	:= $(CROSS_COMPILE)ld
-LDFLAGS	:=
-OBJCOPY	:= $(CROSS_COMPILE)objcopy
-
 FIND	:= find
 CSCOPE	:= cscope
 TAGS	:= ctags
@@ -343,7 +337,7 @@ $(warning No static libc found. Skipping guest init)
 endif
 
 ifeq (y,$(ARCH_WANT_LIBFDT))
-	ifneq ($(call try-build,$(SOURCE_LIBFDT),$(CFLAGS),-lfdt),y)
+	ifneq ($(call try-build,$(SOURCE_LIBFDT),$(CPPFLAGS) $(CFLAGS),-lfdt),y)
           $(error No libfdt found. Please install libfdt-dev package)
 	else
 		CFLAGS_DYNOPT	+= -DCONFIG_HAS_LIBFDT