blob: 467de3275152405023ac6b6e7fb50cea07c137bd [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From e58369f6d36bc51eb59d6afa34c1cae3ff0810ef Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Mon, 7 Aug 2017 14:10:38 +0300
4Subject: [PATCH] Makefile: build mktables using native gcc
5
6It's a throwaway helper binary used during build, and so it needs to
7be native.
8
9Upstream-Status: Inappropriate [oe specific]
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11---
12 Makefile | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
Brad Bishop316dfdd2018-06-25 12:45:53 -040015Index: git/Makefile
16===================================================================
17--- git.orig/Makefile
18+++ git/Makefile
19@@ -343,7 +343,7 @@ version.h: version.sh version.h.in confi
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020
21 mktables: kernel-lib/mktables.c
22 @echo " [CC] $@"
23- $(Q)$(CC) $(CFLAGS) $< -o $@
24+ $(Q)$(BUILD_CC) $(BUILD_CFLAGS) $< -o $@
25
Brad Bishop316dfdd2018-06-25 12:45:53 -040026 # the target can be regenerated manually using mktables, but a local copy is
27 # kept so the build process is simpler