crossgcc: fix edk2 tools_def template
Forgot the /bin/ part of the executable paths Change-Id: I87d63ec18338e376787d02bb771471e746a17b62 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/22640 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
a6802ec30f
commit
214dde058c
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
####################################################################################
|
||||
|
||||
DEFINE COREBOOT_IA32_PREFIX = @@PREFIX@@/i386-elf-
|
||||
DEFINE COREBOOT_X64_PREFIX = @@PREFIX@@/x86_64-elf-
|
||||
DEFINE COREBOOT_ARM_PREFIX = @@PREFIX@@/arm-eabi-
|
||||
DEFINE COREBOOT_AARCH64_PREFIX = @@PREFIX@@/arch64-elf-
|
||||
DEFINE COREBOOT_IA32_PREFIX = @@PREFIX@@/bin/i386-elf-
|
||||
DEFINE COREBOOT_X64_PREFIX = @@PREFIX@@/bin/x86_64-elf-
|
||||
DEFINE COREBOOT_ARM_PREFIX = @@PREFIX@@/bin/arm-eabi-
|
||||
DEFINE COREBOOT_AARCH64_PREFIX = @@PREFIX@@/bin/arch64-elf-
|
||||
|
||||
DEFINE COREBOOT_IA32_CC_FLAGS = DEF(GCC5_IA32_CC_FLAGS)
|
||||
DEFINE COREBOOT_X64_CC_FLAGS = DEF(GCC5_X64_CC_FLAGS)
|
||||
|
|
Loading…
Reference in New Issue