diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2015-07-06 09:06:27 +0000 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-07-06 18:26:42 +0200 |
commit | 46eeb339e978ab8059d8ecf2e74c094f6c928883 (patch) | |
tree | 9ae1cab5e4f0d0bf1fe1294db026250a67a53138 | |
parent | db0325591d5abe39544602b92cc141f7ba4d6f5a (diff) |
libpayload: drop LIBGCC_FILE_NAME variable
It's unused. If we need something like that, .xcompile provides it,
and in a cross-platform and clang-aware way.
Change-Id: Ic1bdc2e3e252d612a5b99ad4e8caebc5158a485f
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/10802
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | payloads/libpayload/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/payloads/libpayload/Makefile b/payloads/libpayload/Makefile index 252075ff6c..92efd7362a 100644 --- a/payloads/libpayload/Makefile +++ b/payloads/libpayload/Makefile @@ -129,9 +129,6 @@ AR := $(AR_$(ARCH-y)) CFLAGS += $(CFLAGS_$(ARCH-y)) -LIBGCC_FILE_NAME := $(shell test -r `$(CC) -print-libgcc-file-name` && \ - $(CC) -print-libgcc-file-name) - # Three cases where we don't need fully populated $(obj) lists: # 1. when no .config exists # 2. when make config (in any flavour) is run @@ -283,7 +280,6 @@ printall: @echo alldirs:=$(alldirs) @echo allsrcs=$(allsrcs) @echo DEPENDENCIES=$(DEPENDENCIES) - @echo LIBGCC_FILE_NAME=$(LIBGCC_FILE_NAME) @$(foreach class,$(special-classes),echo $(class):='$($(class))'; ) endif |