gcc.c: Test for gcc, not for non-clang
This is gcc specific, not necessary-everywhere-but-on-clang. Change-Id: Ie02587bd41c856cbf730ea2f72f594a20b5fefbe Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: http://review.coreboot.org/7609 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
32a5a5f467
commit
6d0cba7978
|
@ -38,7 +38,7 @@ romstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
|||
endif
|
||||
|
||||
romstage-y += compute_ip_checksum.c
|
||||
ifneq ($(CONFIG_COMPILER_LLVM_CLANG),y)
|
||||
ifeq ($(CONFIG_COMPILER_GCC),y)
|
||||
romstage-$(CONFIG_ARCH_ROMSTAGE_X86_32) += gcc.c
|
||||
ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_32) += gcc.c
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue