diff options
author | Patrick Georgi <pgeorgi@google.com> | 2020-06-02 19:50:47 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-06-04 08:11:48 +0000 |
commit | 3909908de897dddf2182032f30369e235ebe4095 (patch) | |
tree | f84c925b58164361b2e44a8ef2b087447649f8e9 /util/ifdtool | |
parent | 19704cdcdc06e0304042d60dc9c5783c7a2b445d (diff) |
util: Allow overriding gcc as default host compiler
BUG=chromium:1088209
TEST=emerge coreboot-utils (with patches to the ebuild) works
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Change-Id: I25d237d048e417f4e412583031905ecf3614c431
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42016
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util/ifdtool')
-rw-r--r-- | util/ifdtool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ifdtool/Makefile b/util/ifdtool/Makefile index d70080d551..e8d818c021 100644 --- a/util/ifdtool/Makefile +++ b/util/ifdtool/Makefile @@ -4,7 +4,7 @@ PROGRAM = ifdtool -CC = gcc +CC ?= gcc INSTALL = /usr/bin/env install PREFIX = /usr/local CFLAGS = -O2 -g -Wall -Wextra -Wmissing-prototypes -Werror |