All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2] conf/machine: k3: Enable grub-efi by default in wic images
@ 2021-06-28 18:06 Tom Rini
  2021-06-28 20:11 ` [meta-ti] " Denys Dmytriyenko
  2021-08-10 16:48 ` [EXTERNAL] " Yogesh Siraswar
  0 siblings, 2 replies; 5+ messages in thread
From: Tom Rini @ 2021-06-28 18:06 UTC (permalink / raw)
  To: meta-ti

All of our platforms here support running EFI binaries.  We can have wic
generate a simple grub.cfg file for us that will find the root partition
via PARTUUID and utilize the device tree that is already discoverable
via the EFI configuration tables.  Assuming the EFI loader is U-Boot,
this device tree can be replaced at run-time by the normal mechanism of
loading in to memory and passing that address as an argument to bootefi.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
Changes in v2:
- Add missing IMAGE_EFI_BOOT_FILES which is how we populate in the
  various firmware portions.
- Use --fixed-size 128M to ensure we have some spare room on the boot
  partition.
---
 conf/machine/include/k3.inc | 6 +++++-
 wic/sdimage-2part-efi.wks   | 7 +++++++
 2 files changed, 12 insertions(+), 1 deletion(-)
 create mode 100644 wic/sdimage-2part-efi.wks

diff --git a/conf/machine/include/k3.inc b/conf/machine/include/k3.inc
index e0970698b33d..166c09239069 100644
--- a/conf/machine/include/k3.inc
+++ b/conf/machine/include/k3.inc
@@ -44,8 +44,12 @@ IMAGE_BOOT_FILES_LEGACY = "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} tiboot3.bin sysf
 IMAGE_BOOT_FILES_MULTI_CERT = "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} tiboot3.bin"
 
 IMAGE_BOOT_FILES ?= "${IMAGE_BOOT_FILES_LEGACY}"
+IMAGE_EFI_BOOT_FILES ?= "${IMAGE_BOOT_FILES}"
 
-WKS_FILE ?= "sdimage-2part.wks"
+EFI_PROVIDER ?= "grub-efi"
+MACHINE_FEATURES += "efi"
+
+WKS_FILE ?= "sdimage-2part-efi.wks"
 do_image_wic[depends] += "virtual/bootloader:do_deploy"
 do_image_wic[mcdepends] += "mc::k3r5:virtual/bootloader:do_deploy mc::k3r5:ti-sci-fw:do_deploy"
 do_image_tar[mcdepends] += "mc::k3r5:virtual/bootloader:do_deploy mc::k3r5:ti-sci-fw:do_deploy"
diff --git a/wic/sdimage-2part-efi.wks b/wic/sdimage-2part-efi.wks
new file mode 100644
index 000000000000..ffb8d24bacd1
--- /dev/null
+++ b/wic/sdimage-2part-efi.wks
@@ -0,0 +1,7 @@
+# short-description: Create SD card image with 2 partitions and EFI support
+# long-description: Creates a partitioned SD card image for TI platforms that
+# supports EFI.  Boot files are located in the first vfat partition with extra
+# reserved space.  We cannot use a GPT here.
+bootloader --append="rootfstype=ext4 ro"
+part /boot --source bootimg-efi --sourceparams="loader=grub-efi" --fstype=vfat --label boot --active --align 1024 --use-uuid --fixed-size 128M
+part / --source rootfs --fstype=ext4 --label root --align 1024 --use-uuid
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [meta-ti] [PATCHv2] conf/machine: k3: Enable grub-efi by default in wic images
  2021-06-28 18:06 [PATCHv2] conf/machine: k3: Enable grub-efi by default in wic images Tom Rini
@ 2021-06-28 20:11 ` Denys Dmytriyenko
  2021-08-10 16:48 ` [EXTERNAL] " Yogesh Siraswar
  1 sibling, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2021-06-28 20:11 UTC (permalink / raw)
  To: Tom Rini; +Cc: meta-ti

On Mon, Jun 28, 2021 at 02:06:17PM -0400, Tom Rini wrote:
> All of our platforms here support running EFI binaries.  We can have wic
> generate a simple grub.cfg file for us that will find the root partition
> via PARTUUID and utilize the device tree that is already discoverable
> via the EFI configuration tables.  Assuming the EFI loader is U-Boot,
> this device tree can be replaced at run-time by the normal mechanism of
> loading in to memory and passing that address as an argument to bootefi.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>

Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>


> ---
> Changes in v2:
> - Add missing IMAGE_EFI_BOOT_FILES which is how we populate in the
>   various firmware portions.
> - Use --fixed-size 128M to ensure we have some spare room on the boot
>   partition.
> ---
>  conf/machine/include/k3.inc | 6 +++++-
>  wic/sdimage-2part-efi.wks   | 7 +++++++
>  2 files changed, 12 insertions(+), 1 deletion(-)
>  create mode 100644 wic/sdimage-2part-efi.wks
> 
> diff --git a/conf/machine/include/k3.inc b/conf/machine/include/k3.inc
> index e0970698b33d..166c09239069 100644
> --- a/conf/machine/include/k3.inc
> +++ b/conf/machine/include/k3.inc
> @@ -44,8 +44,12 @@ IMAGE_BOOT_FILES_LEGACY = "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} tiboot3.bin sysf
>  IMAGE_BOOT_FILES_MULTI_CERT = "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} tiboot3.bin"
>  
>  IMAGE_BOOT_FILES ?= "${IMAGE_BOOT_FILES_LEGACY}"
> +IMAGE_EFI_BOOT_FILES ?= "${IMAGE_BOOT_FILES}"
>  
> -WKS_FILE ?= "sdimage-2part.wks"
> +EFI_PROVIDER ?= "grub-efi"
> +MACHINE_FEATURES += "efi"
> +
> +WKS_FILE ?= "sdimage-2part-efi.wks"
>  do_image_wic[depends] += "virtual/bootloader:do_deploy"
>  do_image_wic[mcdepends] += "mc::k3r5:virtual/bootloader:do_deploy mc::k3r5:ti-sci-fw:do_deploy"
>  do_image_tar[mcdepends] += "mc::k3r5:virtual/bootloader:do_deploy mc::k3r5:ti-sci-fw:do_deploy"
> diff --git a/wic/sdimage-2part-efi.wks b/wic/sdimage-2part-efi.wks
> new file mode 100644
> index 000000000000..ffb8d24bacd1
> --- /dev/null
> +++ b/wic/sdimage-2part-efi.wks
> @@ -0,0 +1,7 @@
> +# short-description: Create SD card image with 2 partitions and EFI support
> +# long-description: Creates a partitioned SD card image for TI platforms that
> +# supports EFI.  Boot files are located in the first vfat partition with extra
> +# reserved space.  We cannot use a GPT here.
> +bootloader --append="rootfstype=ext4 ro"
> +part /boot --source bootimg-efi --sourceparams="loader=grub-efi" --fstype=vfat --label boot --active --align 1024 --use-uuid --fixed-size 128M
> +part / --source rootfs --fstype=ext4 --label root --align 1024 --use-uuid
> -- 
> 2.17.1
> 

> 
> 
> 


-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [EXTERNAL] [meta-ti] [PATCHv2] conf/machine: k3: Enable grub-efi by default in wic images
  2021-06-28 18:06 [PATCHv2] conf/machine: k3: Enable grub-efi by default in wic images Tom Rini
  2021-06-28 20:11 ` [meta-ti] " Denys Dmytriyenko
@ 2021-08-10 16:48 ` Yogesh Siraswar
  2021-08-10 18:16   ` Tom Rini
  1 sibling, 1 reply; 5+ messages in thread
From: Yogesh Siraswar @ 2021-08-10 16:48 UTC (permalink / raw)
  To: Tom Rini, meta-ti

[-- Attachment #1: Type: text/plain, Size: 2802 bytes --]

Tom,
I am running into build issue after integrating this to 
dunfell-next.(See attachment)
Let me know if I am missing anything.

Thanks
Yogesh

On 6/28/2021 1:06 PM, Tom Rini wrote:
> All of our platforms here support running EFI binaries.  We can have wic
> generate a simple grub.cfg file for us that will find the root partition
> via PARTUUID and utilize the device tree that is already discoverable
> via the EFI configuration tables.  Assuming the EFI loader is U-Boot,
> this device tree can be replaced at run-time by the normal mechanism of
> loading in to memory and passing that address as an argument to bootefi.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> Changes in v2:
> - Add missing IMAGE_EFI_BOOT_FILES which is how we populate in the
>    various firmware portions.
> - Use --fixed-size 128M to ensure we have some spare room on the boot
>    partition.
> ---
>   conf/machine/include/k3.inc | 6 +++++-
>   wic/sdimage-2part-efi.wks   | 7 +++++++
>   2 files changed, 12 insertions(+), 1 deletion(-)
>   create mode 100644 wic/sdimage-2part-efi.wks
> 
> diff --git a/conf/machine/include/k3.inc b/conf/machine/include/k3.inc
> index e0970698b33d..166c09239069 100644
> --- a/conf/machine/include/k3.inc
> +++ b/conf/machine/include/k3.inc
> @@ -44,8 +44,12 @@ IMAGE_BOOT_FILES_LEGACY = "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} tiboot3.bin sysf
>   IMAGE_BOOT_FILES_MULTI_CERT = "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} tiboot3.bin"
>   
>   IMAGE_BOOT_FILES ?= "${IMAGE_BOOT_FILES_LEGACY}"
> +IMAGE_EFI_BOOT_FILES ?= "${IMAGE_BOOT_FILES}"
>   
> -WKS_FILE ?= "sdimage-2part.wks"
> +EFI_PROVIDER ?= "grub-efi"
> +MACHINE_FEATURES += "efi"
> +
> +WKS_FILE ?= "sdimage-2part-efi.wks"
>   do_image_wic[depends] += "virtual/bootloader:do_deploy"
>   do_image_wic[mcdepends] += "mc::k3r5:virtual/bootloader:do_deploy mc::k3r5:ti-sci-fw:do_deploy"
>   do_image_tar[mcdepends] += "mc::k3r5:virtual/bootloader:do_deploy mc::k3r5:ti-sci-fw:do_deploy"
> diff --git a/wic/sdimage-2part-efi.wks b/wic/sdimage-2part-efi.wks
> new file mode 100644
> index 000000000000..ffb8d24bacd1
> --- /dev/null
> +++ b/wic/sdimage-2part-efi.wks
> @@ -0,0 +1,7 @@
> +# short-description: Create SD card image with 2 partitions and EFI support
> +# long-description: Creates a partitioned SD card image for TI platforms that
> +# supports EFI.  Boot files are located in the first vfat partition with extra
> +# reserved space.  We cannot use a GPT here.
> +bootloader --append="rootfstype=ext4 ro"
> +part /boot --source bootimg-efi --sourceparams="loader=grub-efi" --fstype=vfat --label boot --active --align 1024 --use-uuid --fixed-size 128M
> +part / --source rootfs --fstype=ext4 --label root --align 1024 --use-uuid
> 
> 
> 
> 
> 

[-- Attachment #2: grub-efi_2.04-r0_do_configure.log.txt --]
[-- Type: text/plain, Size: 57499 bytes --]

DEBUG: Executing shell function autotools_preconfigure
DEBUG: Shell function autotools_preconfigure finished
DEBUG: Executing python function autotools_aclocals
DEBUG: SITE files ['endian-little', 'bit-64', 'arm-common', 'arm-64', 'common-linux', 'common-glibc', 'aarch64-linux', 'common']
DEBUG: Python function autotools_aclocals finished
DEBUG: Executing shell function do_configure
Importing unicode...
Importing libgcrypt...
WARNING: grub-core/lib/libgcrypt-grub already exists
WARNING: grub-core/lib/libgcrypt-grub/cipher already exists
WARNING: grub-core/lib/libgcrypt-grub/mpi already exists
WARNING: grub-core/lib/libgcrypt-grub/src already exists
Generating Automake input...
Saving timestamps...
automake (GNU automake) 1.16.1
Copyright (C) 2018 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <https://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Tom Tromey <tromey@redhat.com>
       and Alexandre Duret-Lutz <adl@gnu.org>.
AUTOV is 1.16
NOTE: Executing ACLOCAL="aclocal --system-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot/usr/share/aclocal/ --automake-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal-1.16" autoreconf -Wcross --verbose --install --force --exclude=autopoint -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/grub-2.04/m4/ -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal/
autoreconf: Entering directory `.'
autoreconf: running: aclocal --system-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot/usr/share/aclocal/ --automake-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal-1.16 -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/grub-2.04/m4/ -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/autoconf --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/grub-2.04/m4/ --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force
autoreconf: running: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/autoheader --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/grub-2.04/m4/ --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: running: gnu-configize
autoreconf: Leaving directory `.'
NOTE: Running ../grub-2.04/configure  --build=x86_64-linux 		  --host=aarch64-linux 		  --target=aarch64-linux 		  --prefix=/usr 		  --exec_prefix=/usr 		  --bindir=/usr/bin 		  --sbindir=/usr/sbin 		  --libexecdir=/usr/libexec 		  --datadir=/usr/share 		  --sysconfdir=/etc 		  --sharedstatedir=/com 		  --localstatedir=/var 		  --libdir=/usr/lib 		  --includedir=/usr/include 		  --oldincludedir=/usr/include 		  --infodir=/usr/share/info 		  --mandir=/usr/share/man 		  --disable-silent-rules 		  --disable-dependency-tracking 		  --with-libtool-sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot --with-platform=efi                 --disable-grub-mkfont                 --program-prefix=                 --enable-liblzma=no                 --enable-libzfs=no                 --enable-largefile                 --disable-werror  --enable-efiemu=no  --disable-device-mapper --disable-grub-mount --enable-nls 
configure: WARNING: unrecognized options: --with-libtool-sysroot
configure: loading site script /OE/arago-dunfell-next-build/sources/meta-openembedded/meta-networking/site/endian-little
configure: loading site script /OE/arago-dunfell-next-build/sources/meta-openembedded/meta-gnome/site/arm-64
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/endian-little
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/arm-common
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/arm-64
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common-linux
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common-glibc
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common
checking build system type... x86_64-pc-linux-gnu
checking host system type... aarch64-unknown-linux-gnu
checking target system type... aarch64-unknown-linux-gnu
checking for a BSD-compatible install... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/install -c
checking whether build environment is sane... yes
checking for aarch64-linux-strip... aarch64-none-linux-gnu-strip
checking for a thread-safe mkdir -p... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for aarch64-linux-pkg-config... no
checking for pkg-config... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/pkg-config
configure: WARNING: using cross tools not prefixed with host triplet
checking pkg-config is at least version 0.9.0... yes
checking for cmp... cmp
checking for bison... bison
checking for aarch64-linux-ranlib... aarch64-none-linux-gnu-gcc-ranlib
checking for gawk... (cached) gawk
checking whether make supports the include directive... yes (GNU style)
checking for aarch64-linux-gcc... aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot accepts -g... yes
checking for aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot option to accept ISO C89... none needed
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot understands -c and -o together... yes
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot... none
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... none needed
checking whether yytext is a pointer... no
checking for bison... (cached) bison
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for makeinfo... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/bin/makeinfo
checking for aarch64-linux-gcc... (cached) aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot
checking whether we are using the GNU C compiler... (cached) yes
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot accepts -g... (cached) yes
checking for aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot option to accept ISO C89... (cached) none needed
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot understands -c and -o together... (cached) yes
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot... (cached) none
checking how to run the C preprocessor... aarch64-none-linux-gnu-gcc -E --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot 
checking for grep that handles long lines and -e... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/grep
checking for egrep... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for aarch64-linux-ar... aarch64-none-linux-gnu-gcc-ar
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether we are using the GNU C++ compiler... yes
checking whether aarch64-none-linux-gnu-g++  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot accepts -g... yes
checking dependency style of aarch64-none-linux-gnu-g++  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot... none
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot... none
checking whether python3 version is >= 2.6... yes
checking for python3 version... 3.5
checking for python3 platform... linux
checking for python3 script directory... ${libdir}/python3.5/site-packages
checking for python3 extension module directory... ${libdir}/python3.5/site-packages
checking for aarch64-none-linux-gnu-g++... yes
checking for a sed that does not truncate output... (cached) sed
checking whether NLS is requested... yes
checking for msgfmt... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/msgfmt
checking for gmsgfmt... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/msgfmt
checking for xgettext... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/xgettext
checking for msgmerge... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/msgmerge
checking for ld... aarch64-none-linux-gnu-ld --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot 
checking if the linker (aarch64-none-linux-gnu-ld --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot ) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... no
checking for the common suffixes of directories in the library search path... lib,lib
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking whether byte ordering is bigendian... no
checking size of void *... 8
checking size of long... 8
checking size of off_t... 8
configure: WARNING: cannot generate manual pages while cross compiling
checking for posix_memalign... yes
checking for memalign... yes
checking for getextmntent... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/mount.h usability... yes
checking sys/mount.h presence... yes
checking for sys/mount.h... yes
checking sys/mnttab.h usability... no
checking sys/mnttab.h presence... no
checking for sys/mnttab.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for sys/types.h... (cached) yes
checking for features.h... yes
checking for linewrap.h... no
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for sys/socket.h... yes
checking for dirent.h... yes
checking for fnmatch.h... yes
checking for wctype.h... yes
checking for sys/stat.h... (cached) yes
checking for getopt.h... yes
checking for sys/cdefs.h... yes
checking for langinfo.h... yes
checking for limits.h... (cached) yes
checking for xlocale.h... no
checking for wchar.h... yes
checking for sys/mman.h... yes
checking for malloc.h... yes
checking for sys/time.h... yes
checking for stdint.h... (cached) yes
checking for strings.h... (cached) yes
checking for sysexits.h... yes
checking for crtdefs.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/sysmacros.h usability... yes
checking sys/sysmacros.h presence... yes
checking for sys/sysmacros.h... yes
checking for struct statfs.f_fstypename... no
checking for struct statfs.f_mntfromname... no
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking whether -Wtrampolines work... yes
checking for gcc... gcc 
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for inline... inline
checking for C/C++ restrict keyword... __restrict
checking whether clearerr_unlocked is declared... yes
checking whether feof_unlocked is declared... yes
checking whether ferror_unlocked is declared... yes
checking whether fflush_unlocked is declared... yes
checking whether fgets_unlocked is declared... yes
checking whether fputc_unlocked is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether fread_unlocked is declared... yes
checking whether fwrite_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking for flockfile... yes
checking for funlockfile... yes
checking for btowc... yes
checking for _set_invalid_parameter_handler... no
checking for fchdir... yes
checking for fcntl... yes
checking for symlink... yes
checking for mempcpy... yes
checking for fnmatch... yes
checking for isblank... yes
checking for iswctype... yes
checking for mbsrtowcs... yes
checking for wmemchr... yes
checking for wmemcpy... yes
checking for wmempcpy... yes
checking for getdelim... yes
checking for getdtablesize... yes
checking for getprogname... no
checking for getexecname... no
checking for mbsinit... yes
checking for mbrtowc... yes
checking for isascii... yes
checking for mprotect... yes
checking for nl_langinfo... yes
checking for lstat... yes
checking for openat... yes
checking for sleep... yes
checking for strdup... yes
checking for strndup... yes
checking for pipe... yes
checking for vasnprintf... no
checking for snprintf... yes
checking for wcrtomb... yes
checking for iswcntrl... yes
checking for wcwidth... yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking whether <wchar.h> uses 'inline' correctly... yes
checking for nl_langinfo and CODESET... yes
checking for a traditional french locale... (cached) fr_FR
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking whether // is distinct from /... unknown, assuming no
checking for complete errno.h... yes
checking whether fchdir is declared... yes
checking for working fcntl.h... (cached) yes
checking for pid_t... yes
checking for mode_t... yes
checking for mbstate_t... yes
checking whether stat file-mode macros are broken... no
checking for nlink_t... yes
checking whether getcwd (NULL, 0) allocates memory for result... (cached) yes
checking for getcwd with POSIX signature... yes
checking whether getdelim is declared... yes
checking whether getdtablesize is declared... yes
checking whether getline is declared... yes
checking for getopt.h... (cached) yes
checking for getopt_long_only... yes
checking whether getopt is POSIX compatible... guessing yes
checking for working GNU getopt function... guessing no
checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... yes
checking for wchar_t... yes
checking for good max_align_t... yes
checking whether NULL can be used in arbitrary expressions... yes
checking whether imported symbols can be declared weak... guessing yes
checking whether the linker supports --as-needed... yes
checking whether the linker supports --push-state... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for multithread API to use... posix
checking whether malloc, realloc, calloc are POSIX compliant... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for a traditional japanese locale... none
checking for a transitional chinese locale... none
checking for a french Unicode locale... none
checking for mmap... yes
checking for MAP_ANONYMOUS... yes
checking whether memchr works... guessing no
checking whether memrchr is declared... yes
checking for O_CLOEXEC... yes
checking for promoted mode_t type... mode_t
checking whether lstat correctly handles trailing slash... guessing yes
checking whether alarm is declared... yes
checking whether we are using the GNU C Library >= 2.1 or uClibc... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for wint_t... yes
checking whether wint_t is too small... no
checking whether stdint.h conforms to C99... guessing yes
checking whether stdint.h predates C++11... no
checking whether stdint.h has UINTMAX_WIDTH etc.... yes
checking whether strdup is declared... yes
checking whether strerror(0) succeeds... guessing yes
checking whether strndup is declared... yes
checking whether strnlen is declared... yes
checking for struct timespec in <time.h>... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for intmax_t... yes
checking where to find the exponent in a 'double'... (cached) word 1 bit 20
checking whether snprintf returns a byte count as in C99... guessing yes
checking for snprintf... (cached) yes
checking for strnlen... yes
checking for wcslen... yes
checking for wcsnlen... yes
checking for mbrtowc... (cached) yes
checking for wcrtomb... (cached) yes
checking whether _snprintf is declared... no
checking whether vsnprintf is declared... yes
checking for alloca as a compiler built-in... yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether program_invocation_name is defined... yes
checking whether program_invocation_short_name is defined... yes
checking whether btowc(0) is correct... guessing yes
checking whether btowc(EOF) is correct... (cached) yes
checking for __builtin_expect... yes
checking whether this system has an arbitrary file name length limit... yes
checking for dirfd... yes
checking whether dirfd is declared... yes
checking whether dirfd is a macro... no
checking whether // is distinct from /... (cached) unknown, assuming no
checking whether dup2 works... guessing yes
checking for error_at_line... yes
checking whether fcntl handles F_DUPFD correctly... guessing yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking for flexible array member... yes
checking whether conversion from 'int' to 'long double' works... guessing yes
checking for working POSIX fnmatch... guessing no
checking whether isblank is declared... yes
checking for working getdelim function... guessing yes
checking whether getdtablesize works... guessing yes
checking for getline... yes
checking for working getline function... (cached) yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking whether __argv is declared... no
checking whether langinfo.h defines CODESET... yes
checking whether langinfo.h defines T_FMT_AMPM... yes
checking whether langinfo.h defines ALTMON_1... yes
checking whether langinfo.h defines ERA... yes
checking whether langinfo.h defines YESEXPR... yes
checking whether the compiler supports the __inline keyword... yes
checking whether locale.h conforms to POSIX:2001... yes
checking whether struct lconv is properly defined... yes
checking for pthread_rwlock_t... yes
checking whether pthread_rwlock_rdlock prefers a writer to a reader... guessing yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles a NULL pwc argument... guessing yes
checking whether mbrtowc handles a NULL string argument... guessing yes
checking whether mbrtowc has a correct return value... (cached) yes
checking whether mbrtowc returns 0 when parsing a NUL character... (cached) yes
checking whether mbrtowc works on empty input... guessing no
checking whether the C locale is free of encoding errors... guessing no
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbsrtowcs works... guessing yes
checking whether mbswidth is declared in <wchar.h>... no
checking for mbstate_t... (cached) yes
checking bp-sym.h usability... no
checking bp-sym.h presence... no
checking for bp-sym.h... no
checking for mempcpy... (cached) yes
checking for memrchr... yes
checking whether YESEXPR works... guessing yes
checking whether open recognizes a trailing slash... guessing yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking for rawmemchr... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... (cached) yes
checking for working re_compile_pattern... guessing no
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking whether isblank is declared... (cached) yes
checking for stdint.h... (cached) yes
checking for SIZE_MAX... yes
checking whether sleep is declared... yes
checking for working sleep... (cached) yes
checking for ssize_t... yes
checking whether stat handles trailing slashes on files... guessing yes
checking for struct stat.st_atim.tv_nsec... yes
checking whether struct stat.st_atim is of type struct timespec... yes
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
checking for working stdalign.h... yes
checking for good max_align_t... (cached) yes
checking whether NULL can be used in arbitrary expressions... (cached) yes
checking which flavor of printf attribute matches inttypes macros... system
checking for strcasecmp... yes
checking for strncasecmp... yes
checking whether strncasecmp is declared... yes
checking for strchrnul... yes
checking whether strchrnul works... guessing yes
checking for working strerror function... guessing yes
checking for working strndup... guessing yes
checking for working strnlen... yes
checking for nlink_t... (cached) yes
checking for ptrdiff_t... yes
checking for vsnprintf... yes
checking whether snprintf respects a size of 1... guessing yes
checking whether printf supports POSIX/XSI format strings with positions... guessing yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether wcrtomb return value is correct... (cached) yes
checking whether iswcntrl works... guessing yes
checking for towlower... yes
checking for wctype_t... yes
checking for wctrans_t... yes
checking whether wcwidth is declared... yes
checking whether wcwidth works reasonably in UTF-8 locales... guessing yes
checking for stdint.h... (cached) yes
checking which extra warnings work...  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2
checking for aarch64-linux-objcopy... no
checking for objcopy... objcopy
checking for aarch64-linux-strip... no
checking for strip... strip
checking for aarch64-linux-nm... no
checking for nm... nm
checking for aarch64-linux-ranlib... no
checking for ranlib... ranlib
checking which extra warnings work...  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2
checking if compiling with clang... no
checking for options to compile assembly... 
checking whether -freg-struct-return works... yes
checking for options to get soft-float... -mgeneral-regs-only
checking whether -fno-dwarf2-cfi-asm works... yes
checking whether -mno-stack-arg-probe works... no
checking whether -fno-asynchronous-unwind-tables works... yes
checking whether -fno-unwind-tables works... yes
checking whether option -Qn works... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot' has `-fPIE' as default... no
checking whether linker accepts -no-pie... yes
checking whether linker accepts -nopie... no
checking whether linker needs disabling of PIE to work... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot' has `-fPIC' as default... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot' accepts `-fstack-protector'... yes
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot' accepts `-mstack-arg-probe'... no
checking if C symbols get an underscore after compilation... no
checking whether target compiler is working... yes
checking whether objcopy works for absolute addresses... configure: error: objcopy cannot create binary files
NOTE: The following config.log files may provide further information.
NOTE: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/build/config.log
ERROR: configure failed
WARNING: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/temp/run.do_configure.25249:1 exit 1 from 'exit 1'
ERROR: Execution of '/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/temp/run.do_configure.25249' failed with exit code 1:
Importing unicode...
Importing libgcrypt...
WARNING: grub-core/lib/libgcrypt-grub already exists
WARNING: grub-core/lib/libgcrypt-grub/cipher already exists
WARNING: grub-core/lib/libgcrypt-grub/mpi already exists
WARNING: grub-core/lib/libgcrypt-grub/src already exists
Generating Automake input...
Saving timestamps...
automake (GNU automake) 1.16.1
Copyright (C) 2018 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <https://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Tom Tromey <tromey@redhat.com>
       and Alexandre Duret-Lutz <adl@gnu.org>.
AUTOV is 1.16
autoreconf: Entering directory `.'
autoreconf: running: aclocal --system-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot/usr/share/aclocal/ --automake-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal-1.16 -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/grub-2.04/m4/ -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/autoconf --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/grub-2.04/m4/ --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force
autoreconf: running: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/autoheader --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/grub-2.04/m4/ --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: running: gnu-configize
autoreconf: Leaving directory `.'
configure: WARNING: unrecognized options: --with-libtool-sysroot
configure: loading site script /OE/arago-dunfell-next-build/sources/meta-openembedded/meta-networking/site/endian-little
configure: loading site script /OE/arago-dunfell-next-build/sources/meta-openembedded/meta-gnome/site/arm-64
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/endian-little
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/arm-common
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/arm-64
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common-linux
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common-glibc
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common
checking build system type... x86_64-pc-linux-gnu
checking host system type... aarch64-unknown-linux-gnu
checking target system type... aarch64-unknown-linux-gnu
checking for a BSD-compatible install... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/install -c
checking whether build environment is sane... yes
checking for aarch64-linux-strip... aarch64-none-linux-gnu-strip
checking for a thread-safe mkdir -p... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for aarch64-linux-pkg-config... no
checking for pkg-config... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/pkg-config
configure: WARNING: using cross tools not prefixed with host triplet
checking pkg-config is at least version 0.9.0... yes
checking for cmp... cmp
checking for bison... bison
checking for aarch64-linux-ranlib... aarch64-none-linux-gnu-gcc-ranlib
checking for gawk... (cached) gawk
checking whether make supports the include directive... yes (GNU style)
checking for aarch64-linux-gcc... aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot accepts -g... yes
checking for aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot option to accept ISO C89... none needed
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot understands -c and -o together... yes
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot... none
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... none needed
checking whether yytext is a pointer... no
checking for bison... (cached) bison
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for makeinfo... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/bin/makeinfo
checking for aarch64-linux-gcc... (cached) aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot
checking whether we are using the GNU C compiler... (cached) yes
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot accepts -g... (cached) yes
checking for aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot option to accept ISO C89... (cached) none needed
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot understands -c and -o together... (cached) yes
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot... (cached) none
checking how to run the C preprocessor... aarch64-none-linux-gnu-gcc -E --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot 
checking for grep that handles long lines and -e... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/grep
checking for egrep... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for aarch64-linux-ar... aarch64-none-linux-gnu-gcc-ar
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether we are using the GNU C++ compiler... yes
checking whether aarch64-none-linux-gnu-g++  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot accepts -g... yes
checking dependency style of aarch64-none-linux-gnu-g++  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot... none
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot... none
checking whether python3 version is >= 2.6... yes
checking for python3 version... 3.5
checking for python3 platform... linux
checking for python3 script directory... ${libdir}/python3.5/site-packages
checking for python3 extension module directory... ${libdir}/python3.5/site-packages
checking for aarch64-none-linux-gnu-g++... yes
checking for a sed that does not truncate output... (cached) sed
checking whether NLS is requested... yes
checking for msgfmt... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/msgfmt
checking for gmsgfmt... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/msgfmt
checking for xgettext... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/xgettext
checking for msgmerge... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot-native/usr/bin/msgmerge
checking for ld... aarch64-none-linux-gnu-ld --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot 
checking if the linker (aarch64-none-linux-gnu-ld --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot ) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... no
checking for the common suffixes of directories in the library search path... lib,lib
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking whether byte ordering is bigendian... no
checking size of void *... 8
checking size of long... 8
checking size of off_t... 8
configure: WARNING: cannot generate manual pages while cross compiling
checking for posix_memalign... yes
checking for memalign... yes
checking for getextmntent... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/mount.h usability... yes
checking sys/mount.h presence... yes
checking for sys/mount.h... yes
checking sys/mnttab.h usability... no
checking sys/mnttab.h presence... no
checking for sys/mnttab.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for sys/types.h... (cached) yes
checking for features.h... yes
checking for linewrap.h... no
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for sys/socket.h... yes
checking for dirent.h... yes
checking for fnmatch.h... yes
checking for wctype.h... yes
checking for sys/stat.h... (cached) yes
checking for getopt.h... yes
checking for sys/cdefs.h... yes
checking for langinfo.h... yes
checking for limits.h... (cached) yes
checking for xlocale.h... no
checking for wchar.h... yes
checking for sys/mman.h... yes
checking for malloc.h... yes
checking for sys/time.h... yes
checking for stdint.h... (cached) yes
checking for strings.h... (cached) yes
checking for sysexits.h... yes
checking for crtdefs.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/sysmacros.h usability... yes
checking sys/sysmacros.h presence... yes
checking for sys/sysmacros.h... yes
checking for struct statfs.f_fstypename... no
checking for struct statfs.f_mntfromname... no
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking whether -Wtrampolines work... yes
checking for gcc... gcc 
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for inline... inline
checking for C/C++ restrict keyword... __restrict
checking whether clearerr_unlocked is declared... yes
checking whether feof_unlocked is declared... yes
checking whether ferror_unlocked is declared... yes
checking whether fflush_unlocked is declared... yes
checking whether fgets_unlocked is declared... yes
checking whether fputc_unlocked is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether fread_unlocked is declared... yes
checking whether fwrite_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking for flockfile... yes
checking for funlockfile... yes
checking for btowc... yes
checking for _set_invalid_parameter_handler... no
checking for fchdir... yes
checking for fcntl... yes
checking for symlink... yes
checking for mempcpy... yes
checking for fnmatch... yes
checking for isblank... yes
checking for iswctype... yes
checking for mbsrtowcs... yes
checking for wmemchr... yes
checking for wmemcpy... yes
checking for wmempcpy... yes
checking for getdelim... yes
checking for getdtablesize... yes
checking for getprogname... no
checking for getexecname... no
checking for mbsinit... yes
checking for mbrtowc... yes
checking for isascii... yes
checking for mprotect... yes
checking for nl_langinfo... yes
checking for lstat... yes
checking for openat... yes
checking for sleep... yes
checking for strdup... yes
checking for strndup... yes
checking for pipe... yes
checking for vasnprintf... no
checking for snprintf... yes
checking for wcrtomb... yes
checking for iswcntrl... yes
checking for wcwidth... yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking whether <wchar.h> uses 'inline' correctly... yes
checking for nl_langinfo and CODESET... yes
checking for a traditional french locale... (cached) fr_FR
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking whether // is distinct from /... unknown, assuming no
checking for complete errno.h... yes
checking whether fchdir is declared... yes
checking for working fcntl.h... (cached) yes
checking for pid_t... yes
checking for mode_t... yes
checking for mbstate_t... yes
checking whether stat file-mode macros are broken... no
checking for nlink_t... yes
checking whether getcwd (NULL, 0) allocates memory for result... (cached) yes
checking for getcwd with POSIX signature... yes
checking whether getdelim is declared... yes
checking whether getdtablesize is declared... yes
checking whether getline is declared... yes
checking for getopt.h... (cached) yes
checking for getopt_long_only... yes
checking whether getopt is POSIX compatible... guessing yes
checking for working GNU getopt function... guessing no
checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... yes
checking for wchar_t... yes
checking for good max_align_t... yes
checking whether NULL can be used in arbitrary expressions... yes
checking whether imported symbols can be declared weak... guessing yes
checking whether the linker supports --as-needed... yes
checking whether the linker supports --push-state... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for multithread API to use... posix
checking whether malloc, realloc, calloc are POSIX compliant... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for a traditional japanese locale... none
checking for a transitional chinese locale... none
checking for a french Unicode locale... none
checking for mmap... yes
checking for MAP_ANONYMOUS... yes
checking whether memchr works... guessing no
checking whether memrchr is declared... yes
checking for O_CLOEXEC... yes
checking for promoted mode_t type... mode_t
checking whether lstat correctly handles trailing slash... guessing yes
checking whether alarm is declared... yes
checking whether we are using the GNU C Library >= 2.1 or uClibc... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for wint_t... yes
checking whether wint_t is too small... no
checking whether stdint.h conforms to C99... guessing yes
checking whether stdint.h predates C++11... no
checking whether stdint.h has UINTMAX_WIDTH etc.... yes
checking whether strdup is declared... yes
checking whether strerror(0) succeeds... guessing yes
checking whether strndup is declared... yes
checking whether strnlen is declared... yes
checking for struct timespec in <time.h>... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for intmax_t... yes
checking where to find the exponent in a 'double'... (cached) word 1 bit 20
checking whether snprintf returns a byte count as in C99... guessing yes
checking for snprintf... (cached) yes
checking for strnlen... yes
checking for wcslen... yes
checking for wcsnlen... yes
checking for mbrtowc... (cached) yes
checking for wcrtomb... (cached) yes
checking whether _snprintf is declared... no
checking whether vsnprintf is declared... yes
checking for alloca as a compiler built-in... yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether program_invocation_name is defined... yes
checking whether program_invocation_short_name is defined... yes
checking whether btowc(0) is correct... guessing yes
checking whether btowc(EOF) is correct... (cached) yes
checking for __builtin_expect... yes
checking whether this system has an arbitrary file name length limit... yes
checking for dirfd... yes
checking whether dirfd is declared... yes
checking whether dirfd is a macro... no
checking whether // is distinct from /... (cached) unknown, assuming no
checking whether dup2 works... guessing yes
checking for error_at_line... yes
checking whether fcntl handles F_DUPFD correctly... guessing yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking for flexible array member... yes
checking whether conversion from 'int' to 'long double' works... guessing yes
checking for working POSIX fnmatch... guessing no
checking whether isblank is declared... yes
checking for working getdelim function... guessing yes
checking whether getdtablesize works... guessing yes
checking for getline... yes
checking for working getline function... (cached) yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking whether __argv is declared... no
checking whether langinfo.h defines CODESET... yes
checking whether langinfo.h defines T_FMT_AMPM... yes
checking whether langinfo.h defines ALTMON_1... yes
checking whether langinfo.h defines ERA... yes
checking whether langinfo.h defines YESEXPR... yes
checking whether the compiler supports the __inline keyword... yes
checking whether locale.h conforms to POSIX:2001... yes
checking whether struct lconv is properly defined... yes
checking for pthread_rwlock_t... yes
checking whether pthread_rwlock_rdlock prefers a writer to a reader... guessing yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles a NULL pwc argument... guessing yes
checking whether mbrtowc handles a NULL string argument... guessing yes
checking whether mbrtowc has a correct return value... (cached) yes
checking whether mbrtowc returns 0 when parsing a NUL character... (cached) yes
checking whether mbrtowc works on empty input... guessing no
checking whether the C locale is free of encoding errors... guessing no
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbsrtowcs works... guessing yes
checking whether mbswidth is declared in <wchar.h>... no
checking for mbstate_t... (cached) yes
checking bp-sym.h usability... no
checking bp-sym.h presence... no
checking for bp-sym.h... no
checking for mempcpy... (cached) yes
checking for memrchr... yes
checking whether YESEXPR works... guessing yes
checking whether open recognizes a trailing slash... guessing yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking for rawmemchr... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... (cached) yes
checking for working re_compile_pattern... guessing no
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking whether isblank is declared... (cached) yes
checking for stdint.h... (cached) yes
checking for SIZE_MAX... yes
checking whether sleep is declared... yes
checking for working sleep... (cached) yes
checking for ssize_t... yes
checking whether stat handles trailing slashes on files... guessing yes
checking for struct stat.st_atim.tv_nsec... yes
checking whether struct stat.st_atim is of type struct timespec... yes
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
checking for working stdalign.h... yes
checking for good max_align_t... (cached) yes
checking whether NULL can be used in arbitrary expressions... (cached) yes
checking which flavor of printf attribute matches inttypes macros... system
checking for strcasecmp... yes
checking for strncasecmp... yes
checking whether strncasecmp is declared... yes
checking for strchrnul... yes
checking whether strchrnul works... guessing yes
checking for working strerror function... guessing yes
checking for working strndup... guessing yes
checking for working strnlen... yes
checking for nlink_t... (cached) yes
checking for ptrdiff_t... yes
checking for vsnprintf... yes
checking whether snprintf respects a size of 1... guessing yes
checking whether printf supports POSIX/XSI format strings with positions... guessing yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether wcrtomb return value is correct... (cached) yes
checking whether iswcntrl works... guessing yes
checking for towlower... yes
checking for wctype_t... yes
checking for wctrans_t... yes
checking whether wcwidth is declared... yes
checking whether wcwidth works reasonably in UTF-8 locales... guessing yes
checking for stdint.h... (cached) yes
checking which extra warnings work...  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2
checking for aarch64-linux-objcopy... no
checking for objcopy... objcopy
checking for aarch64-linux-strip... no
checking for strip... strip
checking for aarch64-linux-nm... no
checking for nm... nm
checking for aarch64-linux-ranlib... no
checking for ranlib... ranlib
checking which extra warnings work...  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2
checking if compiling with clang... no
checking for options to compile assembly... 
checking whether -freg-struct-return works... yes
checking for options to get soft-float... -mgeneral-regs-only
checking whether -fno-dwarf2-cfi-asm works... yes
checking whether -mno-stack-arg-probe works... no
checking whether -fno-asynchronous-unwind-tables works... yes
checking whether -fno-unwind-tables works... yes
checking whether option -Qn works... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot' has `-fPIE' as default... no
checking whether linker accepts -no-pie... yes
checking whether linker accepts -nopie... no
checking whether linker needs disabling of PIE to work... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot' has `-fPIC' as default... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot' accepts `-fstack-protector'... yes
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/recipe-sysroot' accepts `-mstack-arg-probe'... no
checking if C symbols get an underscore after compilation... no
checking whether target compiler is working... yes
checking whether objcopy works for absolute addresses... configure: error: objcopy cannot create binary files
WARNING: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub-efi/2.04-r0/temp/run.do_configure.25249:1 exit 1 from 'exit 1'


[-- Attachment #3: grub_2.04-r0_do_configure.log.txt --]
[-- Type: text/plain, Size: 57156 bytes --]

DEBUG: Executing shell function autotools_preconfigure
DEBUG: Shell function autotools_preconfigure finished
DEBUG: Executing python function autotools_aclocals
DEBUG: SITE files ['endian-little', 'bit-64', 'arm-common', 'arm-64', 'common-linux', 'common-glibc', 'aarch64-linux', 'common']
DEBUG: Python function autotools_aclocals finished
DEBUG: Executing shell function do_configure
Importing unicode...
Importing libgcrypt...
WARNING: grub-core/lib/libgcrypt-grub already exists
WARNING: grub-core/lib/libgcrypt-grub/cipher already exists
WARNING: grub-core/lib/libgcrypt-grub/mpi already exists
WARNING: grub-core/lib/libgcrypt-grub/src already exists
Generating Automake input...
Saving timestamps...
automake (GNU automake) 1.16.1
Copyright (C) 2018 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <https://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Tom Tromey <tromey@redhat.com>
       and Alexandre Duret-Lutz <adl@gnu.org>.
AUTOV is 1.16
NOTE: Executing ACLOCAL="aclocal --system-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot/usr/share/aclocal/ --automake-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal-1.16" autoreconf -Wcross --verbose --install --force --exclude=autopoint -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/grub-2.04/m4/ -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal/
autoreconf: Entering directory `.'
autoreconf: running: aclocal --system-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot/usr/share/aclocal/ --automake-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal-1.16 -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/grub-2.04/m4/ -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/autoconf --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/grub-2.04/m4/ --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force
autoreconf: running: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/autoheader --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/grub-2.04/m4/ --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: running: gnu-configize
autoreconf: Leaving directory `.'
NOTE: Running ../grub-2.04/configure  --build=x86_64-linux 		  --host=aarch64-linux 		  --target=aarch64-linux 		  --prefix=/usr 		  --exec_prefix=/usr 		  --bindir=/usr/bin 		  --sbindir=/usr/sbin 		  --libexecdir=/usr/libexec 		  --datadir=/usr/share 		  --sysconfdir=/etc 		  --sharedstatedir=/com 		  --localstatedir=/var 		  --libdir=/usr/lib 		  --includedir=/usr/include 		  --oldincludedir=/usr/include 		  --infodir=/usr/share/info 		  --mandir=/usr/share/man 		  --disable-silent-rules 		  --disable-dependency-tracking 		  --with-libtool-sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot --with-platform=efi                 --disable-grub-mkfont                 --program-prefix=                 --enable-liblzma=no                 --enable-libzfs=no                 --enable-largefile                 --disable-werror   --disable-device-mapper --disable-grub-mount --enable-nls 
configure: WARNING: unrecognized options: --with-libtool-sysroot
configure: loading site script /OE/arago-dunfell-next-build/sources/meta-openembedded/meta-networking/site/endian-little
configure: loading site script /OE/arago-dunfell-next-build/sources/meta-openembedded/meta-gnome/site/arm-64
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/endian-little
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/arm-common
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/arm-64
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common-linux
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common-glibc
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common
checking build system type... x86_64-pc-linux-gnu
checking host system type... aarch64-unknown-linux-gnu
checking target system type... aarch64-unknown-linux-gnu
checking for a BSD-compatible install... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/install -c
checking whether build environment is sane... yes
checking for aarch64-linux-strip... aarch64-none-linux-gnu-strip
checking for a thread-safe mkdir -p... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for aarch64-linux-pkg-config... no
checking for pkg-config... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/pkg-config
configure: WARNING: using cross tools not prefixed with host triplet
checking pkg-config is at least version 0.9.0... yes
checking for cmp... cmp
checking for bison... bison
checking for aarch64-linux-ranlib... aarch64-none-linux-gnu-gcc-ranlib
checking for gawk... (cached) gawk
checking whether make supports the include directive... yes (GNU style)
checking for aarch64-linux-gcc... aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot accepts -g... yes
checking for aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot option to accept ISO C89... none needed
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot understands -c and -o together... yes
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot... none
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... none needed
checking whether yytext is a pointer... no
checking for bison... (cached) bison
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for makeinfo... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/bin/makeinfo
checking for aarch64-linux-gcc... (cached) aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot
checking whether we are using the GNU C compiler... (cached) yes
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot accepts -g... (cached) yes
checking for aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot option to accept ISO C89... (cached) none needed
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot understands -c and -o together... (cached) yes
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot... (cached) none
checking how to run the C preprocessor... aarch64-none-linux-gnu-gcc -E --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot 
checking for grep that handles long lines and -e... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/grep
checking for egrep... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for aarch64-linux-ar... aarch64-none-linux-gnu-gcc-ar
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether we are using the GNU C++ compiler... yes
checking whether aarch64-none-linux-gnu-g++  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot accepts -g... yes
checking dependency style of aarch64-none-linux-gnu-g++  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot... none
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot... none
checking whether python3 version is >= 2.6... yes
checking for python3 version... 3.5
checking for python3 platform... linux
checking for python3 script directory... ${libdir}/python3.5/site-packages
checking for python3 extension module directory... ${libdir}/python3.5/site-packages
checking for aarch64-none-linux-gnu-g++... yes
checking for a sed that does not truncate output... (cached) sed
checking whether NLS is requested... yes
checking for msgfmt... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/msgfmt
checking for gmsgfmt... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/msgfmt
checking for xgettext... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/xgettext
checking for msgmerge... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/msgmerge
checking for ld... aarch64-none-linux-gnu-ld --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot 
checking if the linker (aarch64-none-linux-gnu-ld --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot ) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... no
checking for the common suffixes of directories in the library search path... lib,lib
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking whether byte ordering is bigendian... no
checking size of void *... 8
checking size of long... 8
checking size of off_t... 8
configure: WARNING: cannot generate manual pages while cross compiling
checking for posix_memalign... yes
checking for memalign... yes
checking for getextmntent... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/mount.h usability... yes
checking sys/mount.h presence... yes
checking for sys/mount.h... yes
checking sys/mnttab.h usability... no
checking sys/mnttab.h presence... no
checking for sys/mnttab.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for sys/types.h... (cached) yes
checking for features.h... yes
checking for linewrap.h... no
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for sys/socket.h... yes
checking for dirent.h... yes
checking for fnmatch.h... yes
checking for wctype.h... yes
checking for sys/stat.h... (cached) yes
checking for getopt.h... yes
checking for sys/cdefs.h... yes
checking for langinfo.h... yes
checking for limits.h... (cached) yes
checking for xlocale.h... no
checking for wchar.h... yes
checking for sys/mman.h... yes
checking for malloc.h... yes
checking for sys/time.h... yes
checking for stdint.h... (cached) yes
checking for strings.h... (cached) yes
checking for sysexits.h... yes
checking for crtdefs.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/sysmacros.h usability... yes
checking sys/sysmacros.h presence... yes
checking for sys/sysmacros.h... yes
checking for struct statfs.f_fstypename... no
checking for struct statfs.f_mntfromname... no
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking whether -Wtrampolines work... yes
checking for gcc... gcc 
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for inline... inline
checking for C/C++ restrict keyword... __restrict
checking whether clearerr_unlocked is declared... yes
checking whether feof_unlocked is declared... yes
checking whether ferror_unlocked is declared... yes
checking whether fflush_unlocked is declared... yes
checking whether fgets_unlocked is declared... yes
checking whether fputc_unlocked is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether fread_unlocked is declared... yes
checking whether fwrite_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking for flockfile... yes
checking for funlockfile... yes
checking for btowc... yes
checking for _set_invalid_parameter_handler... no
checking for fchdir... yes
checking for fcntl... yes
checking for symlink... yes
checking for mempcpy... yes
checking for fnmatch... yes
checking for isblank... yes
checking for iswctype... yes
checking for mbsrtowcs... yes
checking for wmemchr... yes
checking for wmemcpy... yes
checking for wmempcpy... yes
checking for getdelim... yes
checking for getdtablesize... yes
checking for getprogname... no
checking for getexecname... no
checking for mbsinit... yes
checking for mbrtowc... yes
checking for isascii... yes
checking for mprotect... yes
checking for nl_langinfo... yes
checking for lstat... yes
checking for openat... yes
checking for sleep... yes
checking for strdup... yes
checking for strndup... yes
checking for pipe... yes
checking for vasnprintf... no
checking for snprintf... yes
checking for wcrtomb... yes
checking for iswcntrl... yes
checking for wcwidth... yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking whether <wchar.h> uses 'inline' correctly... yes
checking for nl_langinfo and CODESET... yes
checking for a traditional french locale... (cached) fr_FR
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking whether // is distinct from /... unknown, assuming no
checking for complete errno.h... yes
checking whether fchdir is declared... yes
checking for working fcntl.h... (cached) yes
checking for pid_t... yes
checking for mode_t... yes
checking for mbstate_t... yes
checking whether stat file-mode macros are broken... no
checking for nlink_t... yes
checking whether getcwd (NULL, 0) allocates memory for result... (cached) yes
checking for getcwd with POSIX signature... yes
checking whether getdelim is declared... yes
checking whether getdtablesize is declared... yes
checking whether getline is declared... yes
checking for getopt.h... (cached) yes
checking for getopt_long_only... yes
checking whether getopt is POSIX compatible... guessing yes
checking for working GNU getopt function... guessing no
checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... yes
checking for wchar_t... yes
checking for good max_align_t... yes
checking whether NULL can be used in arbitrary expressions... yes
checking whether imported symbols can be declared weak... guessing yes
checking whether the linker supports --as-needed... yes
checking whether the linker supports --push-state... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for multithread API to use... posix
checking whether malloc, realloc, calloc are POSIX compliant... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for a traditional japanese locale... none
checking for a transitional chinese locale... none
checking for a french Unicode locale... none
checking for mmap... yes
checking for MAP_ANONYMOUS... yes
checking whether memchr works... guessing no
checking whether memrchr is declared... yes
checking for O_CLOEXEC... yes
checking for promoted mode_t type... mode_t
checking whether lstat correctly handles trailing slash... guessing yes
checking whether alarm is declared... yes
checking whether we are using the GNU C Library >= 2.1 or uClibc... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for wint_t... yes
checking whether wint_t is too small... no
checking whether stdint.h conforms to C99... guessing yes
checking whether stdint.h predates C++11... no
checking whether stdint.h has UINTMAX_WIDTH etc.... yes
checking whether strdup is declared... yes
checking whether strerror(0) succeeds... guessing yes
checking whether strndup is declared... yes
checking whether strnlen is declared... yes
checking for struct timespec in <time.h>... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for intmax_t... yes
checking where to find the exponent in a 'double'... (cached) word 1 bit 20
checking whether snprintf returns a byte count as in C99... guessing yes
checking for snprintf... (cached) yes
checking for strnlen... yes
checking for wcslen... yes
checking for wcsnlen... yes
checking for mbrtowc... (cached) yes
checking for wcrtomb... (cached) yes
checking whether _snprintf is declared... no
checking whether vsnprintf is declared... yes
checking for alloca as a compiler built-in... yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether program_invocation_name is defined... yes
checking whether program_invocation_short_name is defined... yes
checking whether btowc(0) is correct... guessing yes
checking whether btowc(EOF) is correct... (cached) yes
checking for __builtin_expect... yes
checking whether this system has an arbitrary file name length limit... yes
checking for dirfd... yes
checking whether dirfd is declared... yes
checking whether dirfd is a macro... no
checking whether // is distinct from /... (cached) unknown, assuming no
checking whether dup2 works... guessing yes
checking for error_at_line... yes
checking whether fcntl handles F_DUPFD correctly... guessing yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking for flexible array member... yes
checking whether conversion from 'int' to 'long double' works... guessing yes
checking for working POSIX fnmatch... guessing no
checking whether isblank is declared... yes
checking for working getdelim function... guessing yes
checking whether getdtablesize works... guessing yes
checking for getline... yes
checking for working getline function... (cached) yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking whether __argv is declared... no
checking whether langinfo.h defines CODESET... yes
checking whether langinfo.h defines T_FMT_AMPM... yes
checking whether langinfo.h defines ALTMON_1... yes
checking whether langinfo.h defines ERA... yes
checking whether langinfo.h defines YESEXPR... yes
checking whether the compiler supports the __inline keyword... yes
checking whether locale.h conforms to POSIX:2001... yes
checking whether struct lconv is properly defined... yes
checking for pthread_rwlock_t... yes
checking whether pthread_rwlock_rdlock prefers a writer to a reader... guessing yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles a NULL pwc argument... guessing yes
checking whether mbrtowc handles a NULL string argument... guessing yes
checking whether mbrtowc has a correct return value... (cached) yes
checking whether mbrtowc returns 0 when parsing a NUL character... (cached) yes
checking whether mbrtowc works on empty input... guessing no
checking whether the C locale is free of encoding errors... guessing no
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbsrtowcs works... guessing yes
checking whether mbswidth is declared in <wchar.h>... no
checking for mbstate_t... (cached) yes
checking bp-sym.h usability... no
checking bp-sym.h presence... no
checking for bp-sym.h... no
checking for mempcpy... (cached) yes
checking for memrchr... yes
checking whether YESEXPR works... guessing yes
checking whether open recognizes a trailing slash... guessing yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking for rawmemchr... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... (cached) yes
checking for working re_compile_pattern... guessing no
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking whether isblank is declared... (cached) yes
checking for stdint.h... (cached) yes
checking for SIZE_MAX... yes
checking whether sleep is declared... yes
checking for working sleep... (cached) yes
checking for ssize_t... yes
checking whether stat handles trailing slashes on files... guessing yes
checking for struct stat.st_atim.tv_nsec... yes
checking whether struct stat.st_atim is of type struct timespec... yes
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
checking for working stdalign.h... yes
checking for good max_align_t... (cached) yes
checking whether NULL can be used in arbitrary expressions... (cached) yes
checking which flavor of printf attribute matches inttypes macros... system
checking for strcasecmp... yes
checking for strncasecmp... yes
checking whether strncasecmp is declared... yes
checking for strchrnul... yes
checking whether strchrnul works... guessing yes
checking for working strerror function... guessing yes
checking for working strndup... guessing yes
checking for working strnlen... yes
checking for nlink_t... (cached) yes
checking for ptrdiff_t... yes
checking for vsnprintf... yes
checking whether snprintf respects a size of 1... guessing yes
checking whether printf supports POSIX/XSI format strings with positions... guessing yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether wcrtomb return value is correct... (cached) yes
checking whether iswcntrl works... guessing yes
checking for towlower... yes
checking for wctype_t... yes
checking for wctrans_t... yes
checking whether wcwidth is declared... yes
checking whether wcwidth works reasonably in UTF-8 locales... guessing yes
checking for stdint.h... (cached) yes
checking which extra warnings work...  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2
checking for aarch64-linux-objcopy... no
checking for objcopy... objcopy
checking for aarch64-linux-strip... no
checking for strip... strip
checking for aarch64-linux-nm... no
checking for nm... nm
checking for aarch64-linux-ranlib... no
checking for ranlib... ranlib
checking which extra warnings work...  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2
checking if compiling with clang... no
checking for options to compile assembly... 
checking whether -freg-struct-return works... yes
checking for options to get soft-float... -mgeneral-regs-only
checking whether -fno-dwarf2-cfi-asm works... yes
checking whether -mno-stack-arg-probe works... no
checking whether -fno-asynchronous-unwind-tables works... yes
checking whether -fno-unwind-tables works... yes
checking whether option -Qn works... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot' has `-fPIE' as default... no
checking whether linker accepts -no-pie... yes
checking whether linker accepts -nopie... no
checking whether linker needs disabling of PIE to work... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot' has `-fPIC' as default... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot' accepts `-fstack-protector'... yes
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot' accepts `-mstack-arg-probe'... no
checking if C symbols get an underscore after compilation... no
checking whether target compiler is working... yes
checking whether objcopy works for absolute addresses... configure: error: objcopy cannot create binary files
NOTE: The following config.log files may provide further information.
NOTE: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/build/config.log
ERROR: configure failed
WARNING: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/temp/run.do_configure.25268:1 exit 1 from 'exit 1'
ERROR: Execution of '/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/temp/run.do_configure.25268' failed with exit code 1:
Importing unicode...
Importing libgcrypt...
WARNING: grub-core/lib/libgcrypt-grub already exists
WARNING: grub-core/lib/libgcrypt-grub/cipher already exists
WARNING: grub-core/lib/libgcrypt-grub/mpi already exists
WARNING: grub-core/lib/libgcrypt-grub/src already exists
Generating Automake input...
Saving timestamps...
automake (GNU automake) 1.16.1
Copyright (C) 2018 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <https://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Tom Tromey <tromey@redhat.com>
       and Alexandre Duret-Lutz <adl@gnu.org>.
AUTOV is 1.16
autoreconf: Entering directory `.'
autoreconf: running: aclocal --system-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot/usr/share/aclocal/ --automake-acdir=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal-1.16 -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/grub-2.04/m4/ -I /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/autoconf --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/grub-2.04/m4/ --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force
autoreconf: running: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/autoheader --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/grub-2.04/m4/ --include=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/share/aclocal/ --force
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: running: gnu-configize
autoreconf: Leaving directory `.'
configure: WARNING: unrecognized options: --with-libtool-sysroot
configure: loading site script /OE/arago-dunfell-next-build/sources/meta-openembedded/meta-networking/site/endian-little
configure: loading site script /OE/arago-dunfell-next-build/sources/meta-openembedded/meta-gnome/site/arm-64
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/endian-little
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/arm-common
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/arm-64
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common-linux
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common-glibc
configure: loading site script /OE/arago-dunfell-next-build/sources/oe-core/meta/site/common
checking build system type... x86_64-pc-linux-gnu
checking host system type... aarch64-unknown-linux-gnu
checking target system type... aarch64-unknown-linux-gnu
checking for a BSD-compatible install... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/install -c
checking whether build environment is sane... yes
checking for aarch64-linux-strip... aarch64-none-linux-gnu-strip
checking for a thread-safe mkdir -p... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for aarch64-linux-pkg-config... no
checking for pkg-config... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/pkg-config
configure: WARNING: using cross tools not prefixed with host triplet
checking pkg-config is at least version 0.9.0... yes
checking for cmp... cmp
checking for bison... bison
checking for aarch64-linux-ranlib... aarch64-none-linux-gnu-gcc-ranlib
checking for gawk... (cached) gawk
checking whether make supports the include directive... yes (GNU style)
checking for aarch64-linux-gcc... aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot accepts -g... yes
checking for aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot option to accept ISO C89... none needed
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot understands -c and -o together... yes
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot... none
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... none needed
checking whether yytext is a pointer... no
checking for bison... (cached) bison
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for makeinfo... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/bin/makeinfo
checking for aarch64-linux-gcc... (cached) aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot
checking whether we are using the GNU C compiler... (cached) yes
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot accepts -g... (cached) yes
checking for aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot option to accept ISO C89... (cached) none needed
checking whether aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot understands -c and -o together... (cached) yes
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot... (cached) none
checking how to run the C preprocessor... aarch64-none-linux-gnu-gcc -E --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot 
checking for grep that handles long lines and -e... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/grep
checking for egrep... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/hosttools/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for aarch64-linux-ar... aarch64-none-linux-gnu-gcc-ar
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether we are using the GNU C++ compiler... yes
checking whether aarch64-none-linux-gnu-g++  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot accepts -g... yes
checking dependency style of aarch64-none-linux-gnu-g++  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot... none
checking dependency style of aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot... none
checking whether python3 version is >= 2.6... yes
checking for python3 version... 3.5
checking for python3 platform... linux
checking for python3 script directory... ${libdir}/python3.5/site-packages
checking for python3 extension module directory... ${libdir}/python3.5/site-packages
checking for aarch64-none-linux-gnu-g++... yes
checking for a sed that does not truncate output... (cached) sed
checking whether NLS is requested... yes
checking for msgfmt... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/msgfmt
checking for gmsgfmt... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/msgfmt
checking for xgettext... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/xgettext
checking for msgmerge... /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot-native/usr/bin/msgmerge
checking for ld... aarch64-none-linux-gnu-ld --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot 
checking if the linker (aarch64-none-linux-gnu-ld --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot ) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... no
checking for the common suffixes of directories in the library search path... lib,lib
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for special C compiler options needed for large files... (cached) no
checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
checking whether byte ordering is bigendian... no
checking size of void *... 8
checking size of long... 8
checking size of off_t... 8
configure: WARNING: cannot generate manual pages while cross compiling
checking for posix_memalign... yes
checking for memalign... yes
checking for getextmntent... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/mount.h usability... yes
checking sys/mount.h presence... yes
checking for sys/mount.h... yes
checking sys/mnttab.h usability... no
checking sys/mnttab.h presence... no
checking for sys/mnttab.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for sys/types.h... (cached) yes
checking for features.h... yes
checking for linewrap.h... no
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for sys/socket.h... yes
checking for dirent.h... yes
checking for fnmatch.h... yes
checking for wctype.h... yes
checking for sys/stat.h... (cached) yes
checking for getopt.h... yes
checking for sys/cdefs.h... yes
checking for langinfo.h... yes
checking for limits.h... (cached) yes
checking for xlocale.h... no
checking for wchar.h... yes
checking for sys/mman.h... yes
checking for malloc.h... yes
checking for sys/time.h... yes
checking for stdint.h... (cached) yes
checking for strings.h... (cached) yes
checking for sysexits.h... yes
checking for crtdefs.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/sysmacros.h usability... yes
checking sys/sysmacros.h presence... yes
checking for sys/sysmacros.h... yes
checking for struct statfs.f_fstypename... no
checking for struct statfs.f_mntfromname... no
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking whether -Wtrampolines work... yes
checking for gcc... gcc 
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for inline... inline
checking for C/C++ restrict keyword... __restrict
checking whether clearerr_unlocked is declared... yes
checking whether feof_unlocked is declared... yes
checking whether ferror_unlocked is declared... yes
checking whether fflush_unlocked is declared... yes
checking whether fgets_unlocked is declared... yes
checking whether fputc_unlocked is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether fread_unlocked is declared... yes
checking whether fwrite_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking for flockfile... yes
checking for funlockfile... yes
checking for btowc... yes
checking for _set_invalid_parameter_handler... no
checking for fchdir... yes
checking for fcntl... yes
checking for symlink... yes
checking for mempcpy... yes
checking for fnmatch... yes
checking for isblank... yes
checking for iswctype... yes
checking for mbsrtowcs... yes
checking for wmemchr... yes
checking for wmemcpy... yes
checking for wmempcpy... yes
checking for getdelim... yes
checking for getdtablesize... yes
checking for getprogname... no
checking for getexecname... no
checking for mbsinit... yes
checking for mbrtowc... yes
checking for isascii... yes
checking for mprotect... yes
checking for nl_langinfo... yes
checking for lstat... yes
checking for openat... yes
checking for sleep... yes
checking for strdup... yes
checking for strndup... yes
checking for pipe... yes
checking for vasnprintf... no
checking for snprintf... yes
checking for wcrtomb... yes
checking for iswcntrl... yes
checking for wcwidth... yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking whether <wchar.h> uses 'inline' correctly... yes
checking for nl_langinfo and CODESET... yes
checking for a traditional french locale... (cached) fr_FR
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking whether // is distinct from /... unknown, assuming no
checking for complete errno.h... yes
checking whether fchdir is declared... yes
checking for working fcntl.h... (cached) yes
checking for pid_t... yes
checking for mode_t... yes
checking for mbstate_t... yes
checking whether stat file-mode macros are broken... no
checking for nlink_t... yes
checking whether getcwd (NULL, 0) allocates memory for result... (cached) yes
checking for getcwd with POSIX signature... yes
checking whether getdelim is declared... yes
checking whether getdtablesize is declared... yes
checking whether getline is declared... yes
checking for getopt.h... (cached) yes
checking for getopt_long_only... yes
checking whether getopt is POSIX compatible... guessing yes
checking for working GNU getopt function... guessing no
checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... yes
checking for wchar_t... yes
checking for good max_align_t... yes
checking whether NULL can be used in arbitrary expressions... yes
checking whether imported symbols can be declared weak... guessing yes
checking whether the linker supports --as-needed... yes
checking whether the linker supports --push-state... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for multithread API to use... posix
checking whether malloc, realloc, calloc are POSIX compliant... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for a traditional japanese locale... none
checking for a transitional chinese locale... none
checking for a french Unicode locale... none
checking for mmap... yes
checking for MAP_ANONYMOUS... yes
checking whether memchr works... guessing no
checking whether memrchr is declared... yes
checking for O_CLOEXEC... yes
checking for promoted mode_t type... mode_t
checking whether lstat correctly handles trailing slash... guessing yes
checking whether alarm is declared... yes
checking whether we are using the GNU C Library >= 2.1 or uClibc... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for wint_t... yes
checking whether wint_t is too small... no
checking whether stdint.h conforms to C99... guessing yes
checking whether stdint.h predates C++11... no
checking whether stdint.h has UINTMAX_WIDTH etc.... yes
checking whether strdup is declared... yes
checking whether strerror(0) succeeds... guessing yes
checking whether strndup is declared... yes
checking whether strnlen is declared... yes
checking for struct timespec in <time.h>... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for intmax_t... yes
checking where to find the exponent in a 'double'... (cached) word 1 bit 20
checking whether snprintf returns a byte count as in C99... guessing yes
checking for snprintf... (cached) yes
checking for strnlen... yes
checking for wcslen... yes
checking for wcsnlen... yes
checking for mbrtowc... (cached) yes
checking for wcrtomb... (cached) yes
checking whether _snprintf is declared... no
checking whether vsnprintf is declared... yes
checking for alloca as a compiler built-in... yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether program_invocation_name is defined... yes
checking whether program_invocation_short_name is defined... yes
checking whether btowc(0) is correct... guessing yes
checking whether btowc(EOF) is correct... (cached) yes
checking for __builtin_expect... yes
checking whether this system has an arbitrary file name length limit... yes
checking for dirfd... yes
checking whether dirfd is declared... yes
checking whether dirfd is a macro... no
checking whether // is distinct from /... (cached) unknown, assuming no
checking whether dup2 works... guessing yes
checking for error_at_line... yes
checking whether fcntl handles F_DUPFD correctly... guessing yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking for flexible array member... yes
checking whether conversion from 'int' to 'long double' works... guessing yes
checking for working POSIX fnmatch... guessing no
checking whether isblank is declared... yes
checking for working getdelim function... guessing yes
checking whether getdtablesize works... guessing yes
checking for getline... yes
checking for working getline function... (cached) yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking whether __argv is declared... no
checking whether langinfo.h defines CODESET... yes
checking whether langinfo.h defines T_FMT_AMPM... yes
checking whether langinfo.h defines ALTMON_1... yes
checking whether langinfo.h defines ERA... yes
checking whether langinfo.h defines YESEXPR... yes
checking whether the compiler supports the __inline keyword... yes
checking whether locale.h conforms to POSIX:2001... yes
checking whether struct lconv is properly defined... yes
checking for pthread_rwlock_t... yes
checking whether pthread_rwlock_rdlock prefers a writer to a reader... guessing yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles a NULL pwc argument... guessing yes
checking whether mbrtowc handles a NULL string argument... guessing yes
checking whether mbrtowc has a correct return value... (cached) yes
checking whether mbrtowc returns 0 when parsing a NUL character... (cached) yes
checking whether mbrtowc works on empty input... guessing no
checking whether the C locale is free of encoding errors... guessing no
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbsrtowcs works... guessing yes
checking whether mbswidth is declared in <wchar.h>... no
checking for mbstate_t... (cached) yes
checking bp-sym.h usability... no
checking bp-sym.h presence... no
checking for bp-sym.h... no
checking for mempcpy... (cached) yes
checking for memrchr... yes
checking whether YESEXPR works... guessing yes
checking whether open recognizes a trailing slash... guessing yes
checking whether program_invocation_name is declared... (cached) yes
checking whether program_invocation_short_name is declared... (cached) yes
checking for rawmemchr... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... (cached) yes
checking for working re_compile_pattern... guessing no
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking whether isblank is declared... (cached) yes
checking for stdint.h... (cached) yes
checking for SIZE_MAX... yes
checking whether sleep is declared... yes
checking for working sleep... (cached) yes
checking for ssize_t... yes
checking whether stat handles trailing slashes on files... guessing yes
checking for struct stat.st_atim.tv_nsec... yes
checking whether struct stat.st_atim is of type struct timespec... yes
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
checking for working stdalign.h... yes
checking for good max_align_t... (cached) yes
checking whether NULL can be used in arbitrary expressions... (cached) yes
checking which flavor of printf attribute matches inttypes macros... system
checking for strcasecmp... yes
checking for strncasecmp... yes
checking whether strncasecmp is declared... yes
checking for strchrnul... yes
checking whether strchrnul works... guessing yes
checking for working strerror function... guessing yes
checking for working strndup... guessing yes
checking for working strnlen... yes
checking for nlink_t... (cached) yes
checking for ptrdiff_t... yes
checking for vsnprintf... yes
checking whether snprintf respects a size of 1... guessing yes
checking whether printf supports POSIX/XSI format strings with positions... guessing yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether wcrtomb return value is correct... (cached) yes
checking whether iswcntrl works... guessing yes
checking for towlower... yes
checking for wctype_t... yes
checking for wctrans_t... yes
checking whether wcwidth is declared... yes
checking whether wcwidth works reasonably in UTF-8 locales... guessing yes
checking for stdint.h... (cached) yes
checking which extra warnings work...  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2
checking for aarch64-linux-objcopy... no
checking for objcopy... objcopy
checking for aarch64-linux-strip... no
checking for strip... strip
checking for aarch64-linux-nm... no
checking for nm... nm
checking for aarch64-linux-ranlib... no
checking for ranlib... ranlib
checking which extra warnings work...  -Wextra -Wattributes -Wendif-labels -Winit-self -Wint-to-pointer-cast -Winvalid-pch -Wmissing-field-initializers -Wnonnull -Woverflow -Wvla -Wpointer-to-int-cast -Wstrict-aliasing -Wvariadic-macros -Wvolatile-register-var -Wpointer-sign -Wmissing-include-dirs -Wmissing-prototypes -Wmissing-declarations -Wformat=2
checking if compiling with clang... no
checking for options to compile assembly... 
checking whether -freg-struct-return works... yes
checking for options to get soft-float... -mgeneral-regs-only
checking whether -fno-dwarf2-cfi-asm works... yes
checking whether -mno-stack-arg-probe works... no
checking whether -fno-asynchronous-unwind-tables works... yes
checking whether -fno-unwind-tables works... yes
checking whether option -Qn works... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot' has `-fPIE' as default... no
checking whether linker accepts -no-pie... yes
checking whether linker accepts -nopie... no
checking whether linker needs disabling of PIE to work... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot' has `-fPIC' as default... no
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot' accepts `-fstack-protector'... yes
checking whether `aarch64-none-linux-gnu-gcc  --sysroot=/OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/recipe-sysroot' accepts `-mstack-arg-probe'... no
checking if C symbols get an underscore after compilation... no
checking whether target compiler is working... yes
checking whether objcopy works for absolute addresses... configure: error: objcopy cannot create binary files
WARNING: /OE/arago-dunfell-next-build/build-AARCH64_1/arago-tmp-external-arm-glibc/work/aarch64-linux/grub/2.04-r0/temp/run.do_configure.25268:1 exit 1 from 'exit 1'


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [EXTERNAL] [meta-ti] [PATCHv2] conf/machine: k3: Enable grub-efi by default in wic images
  2021-08-10 16:48 ` [EXTERNAL] " Yogesh Siraswar
@ 2021-08-10 18:16   ` Tom Rini
  2021-08-11  4:49     ` Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2021-08-10 18:16 UTC (permalink / raw)
  To: Siraswar, Yogesh; +Cc: meta-ti

On Tue, Aug 10, 2021 at 11:48:34AM -0500, Siraswar, Yogesh wrote:

> Tom,
> I am running into build issue after integrating this to dunfell-next.(See
> attachment)
> Let me know if I am missing anything.

OK, I can reproduce this with just oe-core, meta-arm and
meta-arm-toolchain, using an external toolchain.  This is a failure of
the external toolchain.  I suggest you raise this problem with the
meta-arm folks as building grub-efi for aarch64 is kinda an important
use case for Arm (the company).

-- 
Tom

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [EXTERNAL] [meta-ti] [PATCHv2] conf/machine: k3: Enable grub-efi by default in wic images
  2021-08-10 18:16   ` Tom Rini
@ 2021-08-11  4:49     ` Denys Dmytriyenko
  0 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2021-08-11  4:49 UTC (permalink / raw)
  To: Tom Rini; +Cc: Siraswar, Yogesh, meta-ti

[-- Attachment #1: Type: text/html, Size: 1095 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-08-11  4:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-28 18:06 [PATCHv2] conf/machine: k3: Enable grub-efi by default in wic images Tom Rini
2021-06-28 20:11 ` [meta-ti] " Denys Dmytriyenko
2021-08-10 16:48 ` [EXTERNAL] " Yogesh Siraswar
2021-08-10 18:16   ` Tom Rini
2021-08-11  4:49     ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.