Patrick Georgi (patrick@georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5770
-gerrit
commit 52cf0d270acf07110d4c1ad607faf58e8f60b782 Author: Patrick Georgi patrick@georgi-clan.de Date: Sat May 17 15:13:40 2014 +0200
build: remove call to missing function
set_stage_libgcc never existed in our tree.
Change-Id: I864fc683dd7b89a030daf05eafb9624ce828cb72 Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- toolchain.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/toolchain.inc b/toolchain.inc index 568b3d6..9417a73 100644 --- a/toolchain.inc +++ b/toolchain.inc @@ -70,8 +70,7 @@ endef # @1 : stage for which the toolchain is to be initialized init_standard_toolchain = \ $(eval $(call set_stage_toolchain,$(1))) \ - $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y))) \ - $(eval $(call set_stage_libgcc,$(1))) + $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
init_stages = \ $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(eval $(call init_standard_toolchain,$(stage))))