From: Jan Kiszka <[email protected]> Check for additional toolchain services needed and AC_SUBST their variables. This fixes cross-building for arm64.
Signed-off-by: Jan Kiszka <[email protected]> --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 761f2cd..7916dfb 100644 --- a/configure.ac +++ b/configure.ac @@ -35,6 +35,8 @@ AC_CANONICAL_HOST AC_SYS_LARGEFILE AC_PROG_CC +AC_CHECK_TOOL(LD, ld) +AC_CHECK_TOOL(OBJCOPY, objcopy) dnl Dont try to use things like -std=c99 for efi compilation GNUEFI_CC=$CC -- 2.31.1 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/948818c8-07c1-2466-b37f-e3ba7f7af5a6%40siemens.com.
