diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-17 15:13:40 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-17 21:14:57 +0200 |
commit | 262f31c3525f57f29310b5c7173b1a0f34efe792 (patch) | |
tree | f83e22b9b93fc944c42342b252e9ae02231530b7 /toolchain.inc | |
parent | b145b8301fe973f588bcd637bb5eb070b1f472d3 (diff) |
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>
Reviewed-on: http://review.coreboot.org/5770
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'toolchain.inc')
-rw-r--r-- | toolchain.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/toolchain.inc b/toolchain.inc index 568b3d639a..9417a7323c 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)))) |