Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc
@ 2016-04-25 20:44 Tristan Van Berkom
  2016-04-25 20:44 ` [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch Tristan Van Berkom
  2016-04-26  8:41 ` [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc Richard Purdie
  0 siblings, 2 replies; 9+ messages in thread
From: Tristan Van Berkom @ 2016-04-25 20:44 UTC (permalink / raw)
  To: openembedded-core

Serializing this fixes build on aarch64
---
 meta/recipes-devtools/gcc/gcc-cross-initial.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc b/meta/recipes-devtools/gcc/gcc-cross-initial.inc
index c0fa139..98aae45 100644
--- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc
+++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc
@@ -43,7 +43,8 @@ do_configure_prepend () {
 }
 
 do_compile () {
-    oe_runmake all-gcc configure-target-libgcc
+    oe_runmake all-gcc
+    oe_runmake configure-target-libgcc
 }
 do_install () {
 	( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}' install-unwind_h )
-- 
2.8.0.rc3



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

* [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch
  2016-04-25 20:44 [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc Tristan Van Berkom
@ 2016-04-25 20:44 ` Tristan Van Berkom
  2016-04-25 20:55   ` Khem Raj
  2016-04-26  8:41 ` [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc Richard Purdie
  1 sibling, 1 reply; 9+ messages in thread
From: Tristan Van Berkom @ 2016-04-25 20:44 UTC (permalink / raw)
  To: openembedded-core

We fail to build webkit on aarch64 due to this binutils bug:

   https://sourceware.org/bugzilla/show_bug.cgi?id=19353

Applying patch which fixes this, stripped out changelog entry
from patch to make it apply without error.
---
 meta/recipes-devtools/binutils/binutils-2.25.1.inc |   1 +
 ...plying-TLSDESC-relocs-without-TLS-segment.patch | 166 +++++++++++++++++++++
 2 files changed, 167 insertions(+)
 create mode 100644 meta/recipes-devtools/binutils/binutils/fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch

diff --git a/meta/recipes-devtools/binutils/binutils-2.25.1.inc b/meta/recipes-devtools/binutils/binutils-2.25.1.inc
index f3817fa..c7db9e0 100644
--- a/meta/recipes-devtools/binutils/binutils-2.25.1.inc
+++ b/meta/recipes-devtools/binutils/binutils-2.25.1.inc
@@ -35,6 +35,7 @@ SRC_URI = "\
      file://0015-Fix-dynamic-list-so-that-symbols-not-in-the-list-are.patch \
      file://binutils-octeon3.patch \
      file://add-thunderx-support-for-gas.patch \
+     file://fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch \
      "
 S  = "${WORKDIR}/git"
 
diff --git a/meta/recipes-devtools/binutils/binutils/fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch b/meta/recipes-devtools/binutils/binutils/fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch
new file mode 100644
index 0000000..df9d54c
--- /dev/null
+++ b/meta/recipes-devtools/binutils/binutils/fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch
@@ -0,0 +1,166 @@
+From d21f123b0ead1806416cf0dafae12bec4cca8920 Mon Sep 17 00:00:00 2001
+From: Cary Coutant <ccoutant@gmail.com>
+Date: Mon, 11 Jan 2016 23:57:44 -0800
+Subject: [PATCH] Fix internal error when applying TLSDESC relocations with no TLS segment.
+
+gold/
+	PR gold/19353
+	* aarch64.cc (Target_aarch64::relocate_tls): Don't insist that
+	we have a TLS segment for GD-to-IE optimization.
+	* i386.cc (Target_i386::tls_gd_to_ie): Remove tls_segment parameter.
+	Adjust all calls.
+	(Target_i386::tls_desc_gd_to_ie): Likewise.
+	(Target_i386::relocate_tls): Don't insist that we have a TLS segment
+	for TLSDESC GD-to-IE optimizations.
+	* x86_64.cc (Target_x86_64::tls_gd_to_ie): Remove tls_segment parameter.
+	Adjust all calls.
+	(Target_x86_64::tls_desc_gd_to_ie): Likewise.
+	(Target_x86_64::relocate_tls): Don't insist that we have a TLS segment
+	for TLSDESC GD-to-IE optimizations.
+---
+ gold/aarch64.cc |    6 ------
+ gold/i386.cc    |   14 ++------------
+ gold/x86_64.cc  |   14 ++------------
+ 4 files changed, 20 insertions(+), 30 deletions(-)
+
+diff --git a/gold/aarch64.cc b/gold/aarch64.cc
+index 20f2f4f..5ad061b 100644
+--- a/gold/aarch64.cc
++++ b/gold/aarch64.cc
+@@ -7422,12 +7422,6 @@ Target_aarch64<size, big_endian>::Relocate::relocate_tls(
+ 	      }
+ 	    if (tlsopt == tls::TLSOPT_TO_IE)
+ 	      {
+-		if (tls_segment == NULL)
+-		  {
+-		    gold_assert(parameters->errors()->error_count() > 0
+-				|| issue_undefined_symbol_error(gsym));
+-		    return aarch64_reloc_funcs::STATUS_BAD_RELOC;
+-		  }
+ 		return tls_desc_gd_to_ie(relinfo, target, rela, r_type,
+ 					 view, psymval, got_entry_address,
+ 					 address);
+diff --git a/gold/i386.cc b/gold/i386.cc
+index 82886d4..a7168a8 100644
+--- a/gold/i386.cc
++++ b/gold/i386.cc
+@@ -668,7 +668,6 @@ class Target_i386 : public Sized_target<32, false>
+     // Do a TLS General-Dynamic to Initial-Exec transition.
+     inline void
+     tls_gd_to_ie(const Relocate_info<32, false>*, size_t relnum,
+-		 Output_segment* tls_segment,
+ 		 const elfcpp::Rel<32, false>&, unsigned int r_type,
+ 		 elfcpp::Elf_types<32>::Elf_Addr value,
+ 		 unsigned char* view,
+@@ -687,7 +686,6 @@ class Target_i386 : public Sized_target<32, false>
+     // transition.
+     inline void
+     tls_desc_gd_to_ie(const Relocate_info<32, false>*, size_t relnum,
+-		      Output_segment* tls_segment,
+ 		      const elfcpp::Rel<32, false>&, unsigned int r_type,
+ 		      elfcpp::Elf_types<32>::Elf_Addr value,
+ 		      unsigned char* view,
+@@ -3054,7 +3052,7 @@ Target_i386::Relocate::relocate_tls(const Relocate_info<32, false>* relinfo,
+ 	    }
+ 	  if (optimized_type == tls::TLSOPT_TO_IE)
+ 	    {
+-	      this->tls_gd_to_ie(relinfo, relnum, tls_segment, rel, r_type,
++	      this->tls_gd_to_ie(relinfo, relnum, rel, r_type,
+ 				 got_offset, view, view_size);
+ 	      break;
+ 	    }
+@@ -3116,13 +3114,7 @@ Target_i386::Relocate::relocate_tls(const Relocate_info<32, false>* relinfo,
+ 	    }
+ 	  if (optimized_type == tls::TLSOPT_TO_IE)
+ 	    {
+-	      if (tls_segment == NULL)
+-		{
+-		  gold_assert(parameters->errors()->error_count() > 0
+-			      || issue_undefined_symbol_error(gsym));
+-		  return;
+-		}
+-	      this->tls_desc_gd_to_ie(relinfo, relnum, tls_segment, rel, r_type,
++	      this->tls_desc_gd_to_ie(relinfo, relnum, rel, r_type,
+ 				      got_offset, view, view_size);
+ 	      break;
+ 	    }
+@@ -3354,7 +3346,6 @@ Target_i386::Relocate::tls_gd_to_le(const Relocate_info<32, false>* relinfo,
+ inline void
+ Target_i386::Relocate::tls_gd_to_ie(const Relocate_info<32, false>* relinfo,
+ 				    size_t relnum,
+-				    Output_segment*,
+ 				    const elfcpp::Rel<32, false>& rel,
+ 				    unsigned int,
+ 				    elfcpp::Elf_types<32>::Elf_Addr value,
+@@ -3449,7 +3440,6 @@ inline void
+ Target_i386::Relocate::tls_desc_gd_to_ie(
+     const Relocate_info<32, false>* relinfo,
+     size_t relnum,
+-    Output_segment*,
+     const elfcpp::Rel<32, false>& rel,
+     unsigned int r_type,
+     elfcpp::Elf_types<32>::Elf_Addr value,
+diff --git a/gold/x86_64.cc b/gold/x86_64.cc
+index 3cfc064..4ad5afc 100644
+--- a/gold/x86_64.cc
++++ b/gold/x86_64.cc
+@@ -816,7 +816,6 @@ class Target_x86_64 : public Sized_target<size, false>
+     // Do a TLS General-Dynamic to Initial-Exec transition.
+     inline void
+     tls_gd_to_ie(const Relocate_info<size, false>*, size_t relnum,
+-		 Output_segment* tls_segment,
+ 		 const elfcpp::Rela<size, false>&, unsigned int r_type,
+ 		 typename elfcpp::Elf_types<size>::Elf_Addr value,
+ 		 unsigned char* view,
+@@ -835,7 +834,6 @@ class Target_x86_64 : public Sized_target<size, false>
+     // Do a TLSDESC-style General-Dynamic to Initial-Exec transition.
+     inline void
+     tls_desc_gd_to_ie(const Relocate_info<size, false>*, size_t relnum,
+-		      Output_segment* tls_segment,
+ 		      const elfcpp::Rela<size, false>&, unsigned int r_type,
+ 		      typename elfcpp::Elf_types<size>::Elf_Addr value,
+ 		      unsigned char* view,
+@@ -3733,7 +3731,7 @@ Target_x86_64<size>::Relocate::relocate_tls(
+ 	  if (optimized_type == tls::TLSOPT_TO_IE)
+ 	    {
+ 	      value = target->got_plt_section()->address() + got_offset;
+-	      this->tls_gd_to_ie(relinfo, relnum, tls_segment, rela, r_type,
++	      this->tls_gd_to_ie(relinfo, relnum, rela, r_type,
+ 				 value, view, address, view_size);
+ 	      break;
+ 	    }
+@@ -3800,14 +3798,8 @@ Target_x86_64<size>::Relocate::relocate_tls(
+ 	    }
+ 	  if (optimized_type == tls::TLSOPT_TO_IE)
+ 	    {
+-	      if (tls_segment == NULL)
+-		{
+-		  gold_assert(parameters->errors()->error_count() > 0
+-			      || issue_undefined_symbol_error(gsym));
+-		  return;
+-		}
+ 	      value = target->got_plt_section()->address() + got_offset;
+-	      this->tls_desc_gd_to_ie(relinfo, relnum, tls_segment,
++	      this->tls_desc_gd_to_ie(relinfo, relnum,
+ 				      rela, r_type, value, view, address,
+ 				      view_size);
+ 	      break;
+@@ -3973,7 +3965,6 @@ inline void
+ Target_x86_64<size>::Relocate::tls_gd_to_ie(
+     const Relocate_info<size, false>* relinfo,
+     size_t relnum,
+-    Output_segment*,
+     const elfcpp::Rela<size, false>& rela,
+     unsigned int,
+     typename elfcpp::Elf_types<size>::Elf_Addr value,
+@@ -4085,7 +4076,6 @@ inline void
+ Target_x86_64<size>::Relocate::tls_desc_gd_to_ie(
+     const Relocate_info<size, false>* relinfo,
+     size_t relnum,
+-    Output_segment*,
+     const elfcpp::Rela<size, false>& rela,
+     unsigned int r_type,
+     typename elfcpp::Elf_types<size>::Elf_Addr value,
+-- 
+1.7.1
+
-- 
2.8.0.rc3



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

* Re: [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch
  2016-04-25 20:44 ` [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch Tristan Van Berkom
@ 2016-04-25 20:55   ` Khem Raj
  2016-04-26 16:31     ` Tristan Van Berkom
  0 siblings, 1 reply; 9+ messages in thread
From: Khem Raj @ 2016-04-25 20:55 UTC (permalink / raw)
  To: Tristan Van Berkom; +Cc: openembedded-core

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


> On Apr 25, 2016, at 1:44 PM, Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> wrote:
> 
> We fail to build webkit on aarch64 due to this binutils bug:
> 
>   https://sourceware.org/bugzilla/show_bug.cgi?id=19353
> 
> Applying patch which fixes this, stripped out changelog entry
> from patch to make it apply without error.


which branch are you proposing this for?
we use 2.26 on master

> ---
> meta/recipes-devtools/binutils/binutils-2.25.1.inc |   1 +
> ...plying-TLSDESC-relocs-without-TLS-segment.patch | 166 +++++++++++++++++++++
> 2 files changed, 167 insertions(+)
> create mode 100644 meta/recipes-devtools/binutils/binutils/fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch
> 
> diff --git a/meta/recipes-devtools/binutils/binutils-2.25.1.inc b/meta/recipes-devtools/binutils/binutils-2.25.1.inc
> index f3817fa..c7db9e0 100644
> --- a/meta/recipes-devtools/binutils/binutils-2.25.1.inc
> +++ b/meta/recipes-devtools/binutils/binutils-2.25.1.inc
> @@ -35,6 +35,7 @@ SRC_URI = "\
>      file://0015-Fix-dynamic-list-so-that-symbols-not-in-the-list-are.patch \
>      file://binutils-octeon3.patch \
>      file://add-thunderx-support-for-gas.patch \
> +     file://fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch \
>      "
> S  = "${WORKDIR}/git"
> 
> diff --git a/meta/recipes-devtools/binutils/binutils/fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch b/meta/recipes-devtools/binutils/binutils/fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch
> new file mode 100644
> index 0000000..df9d54c
> --- /dev/null
> +++ b/meta/recipes-devtools/binutils/binutils/fix-internal-error-when-applying-TLSDESC-relocs-without-TLS-segment.patch
> @@ -0,0 +1,166 @@
> +From d21f123b0ead1806416cf0dafae12bec4cca8920 Mon Sep 17 00:00:00 2001
> +From: Cary Coutant <ccoutant@gmail.com>
> +Date: Mon, 11 Jan 2016 23:57:44 -0800
> +Subject: [PATCH] Fix internal error when applying TLSDESC relocations with no TLS segment.
> +
> +gold/
> +	PR gold/19353
> +	* aarch64.cc (Target_aarch64::relocate_tls): Don't insist that
> +	we have a TLS segment for GD-to-IE optimization.
> +	* i386.cc (Target_i386::tls_gd_to_ie): Remove tls_segment parameter.
> +	Adjust all calls.
> +	(Target_i386::tls_desc_gd_to_ie): Likewise.
> +	(Target_i386::relocate_tls): Don't insist that we have a TLS segment
> +	for TLSDESC GD-to-IE optimizations.
> +	* x86_64.cc (Target_x86_64::tls_gd_to_ie): Remove tls_segment parameter.
> +	Adjust all calls.
> +	(Target_x86_64::tls_desc_gd_to_ie): Likewise.
> +	(Target_x86_64::relocate_tls): Don't insist that we have a TLS segment
> +	for TLSDESC GD-to-IE optimizations.
> +---
> + gold/aarch64.cc |    6 ------
> + gold/i386.cc    |   14 ++------------
> + gold/x86_64.cc  |   14 ++------------
> + 4 files changed, 20 insertions(+), 30 deletions(-)
> +
> +diff --git a/gold/aarch64.cc b/gold/aarch64.cc
> +index 20f2f4f..5ad061b 100644
> +--- a/gold/aarch64.cc
> ++++ b/gold/aarch64.cc
> +@@ -7422,12 +7422,6 @@ Target_aarch64<size, big_endian>::Relocate::relocate_tls(
> + 	      }
> + 	    if (tlsopt == tls::TLSOPT_TO_IE)
> + 	      {
> +-		if (tls_segment == NULL)
> +-		  {
> +-		    gold_assert(parameters->errors()->error_count() > 0
> +-				|| issue_undefined_symbol_error(gsym));
> +-		    return aarch64_reloc_funcs::STATUS_BAD_RELOC;
> +-		  }
> + 		return tls_desc_gd_to_ie(relinfo, target, rela, r_type,
> + 					 view, psymval, got_entry_address,
> + 					 address);
> +diff --git a/gold/i386.cc b/gold/i386.cc
> +index 82886d4..a7168a8 100644
> +--- a/gold/i386.cc
> ++++ b/gold/i386.cc
> +@@ -668,7 +668,6 @@ class Target_i386 : public Sized_target<32, false>
> +     // Do a TLS General-Dynamic to Initial-Exec transition.
> +     inline void
> +     tls_gd_to_ie(const Relocate_info<32, false>*, size_t relnum,
> +-		 Output_segment* tls_segment,
> + 		 const elfcpp::Rel<32, false>&, unsigned int r_type,
> + 		 elfcpp::Elf_types<32>::Elf_Addr value,
> + 		 unsigned char* view,
> +@@ -687,7 +686,6 @@ class Target_i386 : public Sized_target<32, false>
> +     // transition.
> +     inline void
> +     tls_desc_gd_to_ie(const Relocate_info<32, false>*, size_t relnum,
> +-		      Output_segment* tls_segment,
> + 		      const elfcpp::Rel<32, false>&, unsigned int r_type,
> + 		      elfcpp::Elf_types<32>::Elf_Addr value,
> + 		      unsigned char* view,
> +@@ -3054,7 +3052,7 @@ Target_i386::Relocate::relocate_tls(const Relocate_info<32, false>* relinfo,
> + 	    }
> + 	  if (optimized_type == tls::TLSOPT_TO_IE)
> + 	    {
> +-	      this->tls_gd_to_ie(relinfo, relnum, tls_segment, rel, r_type,
> ++	      this->tls_gd_to_ie(relinfo, relnum, rel, r_type,
> + 				 got_offset, view, view_size);
> + 	      break;
> + 	    }
> +@@ -3116,13 +3114,7 @@ Target_i386::Relocate::relocate_tls(const Relocate_info<32, false>* relinfo,
> + 	    }
> + 	  if (optimized_type == tls::TLSOPT_TO_IE)
> + 	    {
> +-	      if (tls_segment == NULL)
> +-		{
> +-		  gold_assert(parameters->errors()->error_count() > 0
> +-			      || issue_undefined_symbol_error(gsym));
> +-		  return;
> +-		}
> +-	      this->tls_desc_gd_to_ie(relinfo, relnum, tls_segment, rel, r_type,
> ++	      this->tls_desc_gd_to_ie(relinfo, relnum, rel, r_type,
> + 				      got_offset, view, view_size);
> + 	      break;
> + 	    }
> +@@ -3354,7 +3346,6 @@ Target_i386::Relocate::tls_gd_to_le(const Relocate_info<32, false>* relinfo,
> + inline void
> + Target_i386::Relocate::tls_gd_to_ie(const Relocate_info<32, false>* relinfo,
> + 				    size_t relnum,
> +-				    Output_segment*,
> + 				    const elfcpp::Rel<32, false>& rel,
> + 				    unsigned int,
> + 				    elfcpp::Elf_types<32>::Elf_Addr value,
> +@@ -3449,7 +3440,6 @@ inline void
> + Target_i386::Relocate::tls_desc_gd_to_ie(
> +     const Relocate_info<32, false>* relinfo,
> +     size_t relnum,
> +-    Output_segment*,
> +     const elfcpp::Rel<32, false>& rel,
> +     unsigned int r_type,
> +     elfcpp::Elf_types<32>::Elf_Addr value,
> +diff --git a/gold/x86_64.cc b/gold/x86_64.cc
> +index 3cfc064..4ad5afc 100644
> +--- a/gold/x86_64.cc
> ++++ b/gold/x86_64.cc
> +@@ -816,7 +816,6 @@ class Target_x86_64 : public Sized_target<size, false>
> +     // Do a TLS General-Dynamic to Initial-Exec transition.
> +     inline void
> +     tls_gd_to_ie(const Relocate_info<size, false>*, size_t relnum,
> +-		 Output_segment* tls_segment,
> + 		 const elfcpp::Rela<size, false>&, unsigned int r_type,
> + 		 typename elfcpp::Elf_types<size>::Elf_Addr value,
> + 		 unsigned char* view,
> +@@ -835,7 +834,6 @@ class Target_x86_64 : public Sized_target<size, false>
> +     // Do a TLSDESC-style General-Dynamic to Initial-Exec transition.
> +     inline void
> +     tls_desc_gd_to_ie(const Relocate_info<size, false>*, size_t relnum,
> +-		      Output_segment* tls_segment,
> + 		      const elfcpp::Rela<size, false>&, unsigned int r_type,
> + 		      typename elfcpp::Elf_types<size>::Elf_Addr value,
> + 		      unsigned char* view,
> +@@ -3733,7 +3731,7 @@ Target_x86_64<size>::Relocate::relocate_tls(
> + 	  if (optimized_type == tls::TLSOPT_TO_IE)
> + 	    {
> + 	      value = target->got_plt_section()->address() + got_offset;
> +-	      this->tls_gd_to_ie(relinfo, relnum, tls_segment, rela, r_type,
> ++	      this->tls_gd_to_ie(relinfo, relnum, rela, r_type,
> + 				 value, view, address, view_size);
> + 	      break;
> + 	    }
> +@@ -3800,14 +3798,8 @@ Target_x86_64<size>::Relocate::relocate_tls(
> + 	    }
> + 	  if (optimized_type == tls::TLSOPT_TO_IE)
> + 	    {
> +-	      if (tls_segment == NULL)
> +-		{
> +-		  gold_assert(parameters->errors()->error_count() > 0
> +-			      || issue_undefined_symbol_error(gsym));
> +-		  return;
> +-		}
> + 	      value = target->got_plt_section()->address() + got_offset;
> +-	      this->tls_desc_gd_to_ie(relinfo, relnum, tls_segment,
> ++	      this->tls_desc_gd_to_ie(relinfo, relnum,
> + 				      rela, r_type, value, view, address,
> + 				      view_size);
> + 	      break;
> +@@ -3973,7 +3965,6 @@ inline void
> + Target_x86_64<size>::Relocate::tls_gd_to_ie(
> +     const Relocate_info<size, false>* relinfo,
> +     size_t relnum,
> +-    Output_segment*,
> +     const elfcpp::Rela<size, false>& rela,
> +     unsigned int,
> +     typename elfcpp::Elf_types<size>::Elf_Addr value,
> +@@ -4085,7 +4076,6 @@ inline void
> + Target_x86_64<size>::Relocate::tls_desc_gd_to_ie(
> +     const Relocate_info<size, false>* relinfo,
> +     size_t relnum,
> +-    Output_segment*,
> +     const elfcpp::Rela<size, false>& rela,
> +     unsigned int r_type,
> +     typename elfcpp::Elf_types<size>::Elf_Addr value,
> +--
> +1.7.1
> +
> --
> 2.8.0.rc3
> 
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

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

* Re: [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc
  2016-04-25 20:44 [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc Tristan Van Berkom
  2016-04-25 20:44 ` [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch Tristan Van Berkom
@ 2016-04-26  8:41 ` Richard Purdie
  2016-04-26 16:52   ` Khem Raj
  2016-04-26 21:19   ` Tristan Van Berkom
  1 sibling, 2 replies; 9+ messages in thread
From: Richard Purdie @ 2016-04-26  8:41 UTC (permalink / raw)
  To: Tristan Van Berkom, openembedded-core

On Mon, 2016-04-25 at 16:44 -0400, Tristan Van Berkom wrote:
> Serializing this fixes build on aarch64
> ---
>  meta/recipes-devtools/gcc/gcc-cross-initial.inc | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc
> b/meta/recipes-devtools/gcc/gcc-cross-initial.inc
> index c0fa139..98aae45 100644
> --- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc
> +++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc
> @@ -43,7 +43,8 @@ do_configure_prepend () {
>  }
>  
>  do_compile () {
> -    oe_runmake all-gcc configure-target-libgcc
> +    oe_runmake all-gcc
> +    oe_runmake configure-target-libgcc
>  }
>  do_install () {
>  	( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}'
> install-unwind_h )

I'd note we have been doing aarch64 builds for a while and not run into
this. What was the actual failure?

Can we fix the underlying aarch64 problem, rather than breaking
parallelism for everyone else this appears to be working for?

Cheers,

Richard




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

* Re: [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch
  2016-04-25 20:55   ` Khem Raj
@ 2016-04-26 16:31     ` Tristan Van Berkom
  2016-04-26 16:34       ` Khem Raj
  0 siblings, 1 reply; 9+ messages in thread
From: Tristan Van Berkom @ 2016-04-26 16:31 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On Mon, 2016-04-25 at 13:55 -0700, Khem Raj wrote:
> > On Apr 25, 2016, at 1:44 PM, Tristan Van Berkom <tristan.vanberkom@
> > codethink.co.uk> wrote:
> > 
> > We fail to build webkit on aarch64 due to this binutils bug:
> > 
> >   https://sourceware.org/bugzilla/show_bug.cgi?id=19353
> > 
> > Applying patch which fixes this, stripped out changelog entry
> > from patch to make it apply without error.
> 
> 
> which branch are you proposing this for?
> we use 2.26 on master

We are using the jethro branch, sorry for leaving out that detail.

Cheers,
    -Tristan

> 
> > ---
> > meta/recipes-devtools/binutils/binutils-2.25.1.inc |   1 +
> > ...plying-TLSDESC-relocs-without-TLS-segment.patch | 166
> > +++++++++++++++++++++
> > 2 files changed, 167 insertions(+)
> > create mode 100644 meta/recipes-devtools/binutils/binutils/fix-
> > internal-error-when-applying-TLSDESC-relocs-without-TLS-
> > segment.patch
> > 
> > diff --git a/meta/recipes-devtools/binutils/binutils-2.25.1.inc
> > b/meta/recipes-devtools/binutils/binutils-2.25.1.inc
> > index f3817fa..c7db9e0 100644
> > --- a/meta/recipes-devtools/binutils/binutils-2.25.1.inc
> > +++ b/meta/recipes-devtools/binutils/binutils-2.25.1.inc
> > @@ -35,6 +35,7 @@ SRC_URI = "\
> >      file://0015-Fix-dynamic-list-so-that-symbols-not-in-the-list-
> > are.patch \
> >      file://binutils-octeon3.patch \
> >      file://add-thunderx-support-for-gas.patch \
> > +     file://fix-internal-error-when-applying-TLSDESC-relocs-
> > without-TLS-segment.patch \
> >      "
> > S  = "${WORKDIR}/git"
> > 
> > diff --git a/meta/recipes-devtools/binutils/binutils/fix-internal-
> > error-when-applying-TLSDESC-relocs-without-TLS-segment.patch
> > b/meta/recipes-devtools/binutils/binutils/fix-internal-error-when-
> > applying-TLSDESC-relocs-without-TLS-segment.patch
> > new file mode 100644
> > index 0000000..df9d54c
> > --- /dev/null
> > +++ b/meta/recipes-devtools/binutils/binutils/fix-internal-error-
> > when-applying-TLSDESC-relocs-without-TLS-segment.patch
> > @@ -0,0 +1,166 @@
> > +From d21f123b0ead1806416cf0dafae12bec4cca8920 Mon Sep 17 00:00:00
> > 2001
> > +From: Cary Coutant <ccoutant@gmail.com>
> > +Date: Mon, 11 Jan 2016 23:57:44 -0800
> > +Subject: [PATCH] Fix internal error when applying TLSDESC
> > relocations with no TLS segment.
> > +
> > +gold/
> > +	PR gold/19353
> > +	* aarch64.cc (Target_aarch64::relocate_tls): Don't insist
> > that
> > +	we have a TLS segment for GD-to-IE optimization.
> > +	* i386.cc (Target_i386::tls_gd_to_ie): Remove tls_segment
> > parameter.
> > +	Adjust all calls.
> > +	(Target_i386::tls_desc_gd_to_ie): Likewise.
> > +	(Target_i386::relocate_tls): Don't insist that we have a
> > TLS segment
> > +	for TLSDESC GD-to-IE optimizations.
> > +	* x86_64.cc (Target_x86_64::tls_gd_to_ie): Remove
> > tls_segment parameter.
> > +	Adjust all calls.
> > +	(Target_x86_64::tls_desc_gd_to_ie): Likewise.
> > +	(Target_x86_64::relocate_tls): Don't insist that we have a
> > TLS segment
> > +	for TLSDESC GD-to-IE optimizations.
> > +---
> > + gold/aarch64.cc |    6 ------
> > + gold/i386.cc    |   14 ++------------
> > + gold/x86_64.cc  |   14 ++------------
> > + 4 files changed, 20 insertions(+), 30 deletions(-)
> > +
> > +diff --git a/gold/aarch64.cc b/gold/aarch64.cc
> > +index 20f2f4f..5ad061b 100644
> > +--- a/gold/aarch64.cc
> > ++++ b/gold/aarch64.cc
> > +@@ -7422,12 +7422,6 @@ Target_aarch64<size,
> > big_endian>::Relocate::relocate_tls(
> > + 	      }
> > + 	    if (tlsopt == tls::TLSOPT_TO_IE)
> > + 	      {
> > +-		if (tls_segment == NULL)
> > +-		  {
> > +-		    gold_assert(parameters->errors()-
> > >error_count() > 0
> > +-				||
> > issue_undefined_symbol_error(gsym));
> > +-		    return aarch64_reloc_funcs::STATUS_BAD_RELOC;
> > +-		  }
> > + 		return tls_desc_gd_to_ie(relinfo, target, rela,
> > r_type,
> > + 					 view, psymval,
> > got_entry_address,
> > + 					 address);
> > +diff --git a/gold/i386.cc b/gold/i386.cc
> > +index 82886d4..a7168a8 100644
> > +--- a/gold/i386.cc
> > ++++ b/gold/i386.cc
> > +@@ -668,7 +668,6 @@ class Target_i386 : public Sized_target<32,
> > false>
> > +     // Do a TLS General-Dynamic to Initial-Exec transition.
> > +     inline void
> > +     tls_gd_to_ie(const Relocate_info<32, false>*, size_t relnum,
> > +-		 Output_segment* tls_segment,
> > + 		 const elfcpp::Rel<32, false>&, unsigned int
> > r_type,
> > + 		 elfcpp::Elf_types<32>::Elf_Addr value,
> > + 		 unsigned char* view,
> > +@@ -687,7 +686,6 @@ class Target_i386 : public Sized_target<32,
> > false>
> > +     // transition.
> > +     inline void
> > +     tls_desc_gd_to_ie(const Relocate_info<32, false>*, size_t
> > relnum,
> > +-		      Output_segment* tls_segment,
> > + 		      const elfcpp::Rel<32, false>&, unsigned int
> > r_type,
> > + 		      elfcpp::Elf_types<32>::Elf_Addr value,
> > + 		      unsigned char* view,
> > +@@ -3054,7 +3052,7 @@ Target_i386::Relocate::relocate_tls(const
> > Relocate_info<32, false>* relinfo,
> > + 	    }
> > + 	  if (optimized_type == tls::TLSOPT_TO_IE)
> > + 	    {
> > +-	      this->tls_gd_to_ie(relinfo, relnum, tls_segment,
> > rel, r_type,
> > ++	      this->tls_gd_to_ie(relinfo, relnum, rel, r_type,
> > + 				 got_offset, view, view_size);
> > + 	      break;
> > + 	    }
> > +@@ -3116,13 +3114,7 @@ Target_i386::Relocate::relocate_tls(const
> > Relocate_info<32, false>* relinfo,
> > + 	    }
> > + 	  if (optimized_type == tls::TLSOPT_TO_IE)
> > + 	    {
> > +-	      if (tls_segment == NULL)
> > +-		{
> > +-		  gold_assert(parameters->errors()->error_count() 
> > > 0
> > +-			      ||
> > issue_undefined_symbol_error(gsym));
> > +-		  return;
> > +-		}
> > +-	      this->tls_desc_gd_to_ie(relinfo, relnum,
> > tls_segment, rel, r_type,
> > ++	      this->tls_desc_gd_to_ie(relinfo, relnum, rel,
> > r_type,
> > + 				      got_offset, view,
> > view_size);
> > + 	      break;
> > + 	    }
> > +@@ -3354,7 +3346,6 @@ Target_i386::Relocate::tls_gd_to_le(const
> > Relocate_info<32, false>* relinfo,
> > + inline void
> > + Target_i386::Relocate::tls_gd_to_ie(const Relocate_info<32,
> > false>* relinfo,
> > + 				    size_t relnum,
> > +-				    Output_segment*,
> > + 				    const elfcpp::Rel<32, false>&
> > rel,
> > + 				    unsigned int,
> > + 				    elfcpp::Elf_types<32>::Elf_Ad
> > dr value,
> > +@@ -3449,7 +3440,6 @@ inline void
> > + Target_i386::Relocate::tls_desc_gd_to_ie(
> > +     const Relocate_info<32, false>* relinfo,
> > +     size_t relnum,
> > +-    Output_segment*,
> > +     const elfcpp::Rel<32, false>& rel,
> > +     unsigned int r_type,
> > +     elfcpp::Elf_types<32>::Elf_Addr value,
> > +diff --git a/gold/x86_64.cc b/gold/x86_64.cc
> > +index 3cfc064..4ad5afc 100644
> > +--- a/gold/x86_64.cc
> > ++++ b/gold/x86_64.cc
> > +@@ -816,7 +816,6 @@ class Target_x86_64 : public
> > Sized_target<size, false>
> > +     // Do a TLS General-Dynamic to Initial-Exec transition.
> > +     inline void
> > +     tls_gd_to_ie(const Relocate_info<size, false>*, size_t
> > relnum,
> > +-		 Output_segment* tls_segment,
> > + 		 const elfcpp::Rela<size, false>&, unsigned int
> > r_type,
> > + 		 typename elfcpp::Elf_types<size>::Elf_Addr
> > value,
> > + 		 unsigned char* view,
> > +@@ -835,7 +834,6 @@ class Target_x86_64 : public
> > Sized_target<size, false>
> > +     // Do a TLSDESC-style General-Dynamic to Initial-Exec
> > transition.
> > +     inline void
> > +     tls_desc_gd_to_ie(const Relocate_info<size, false>*, size_t
> > relnum,
> > +-		      Output_segment* tls_segment,
> > + 		      const elfcpp::Rela<size, false>&, unsigned
> > int r_type,
> > + 		      typename elfcpp::Elf_types<size>::Elf_Addr
> > value,
> > + 		      unsigned char* view,
> > +@@ -3733,7 +3731,7 @@ Target_x86_64<size>::Relocate::relocate_tls(
> > + 	  if (optimized_type == tls::TLSOPT_TO_IE)
> > + 	    {
> > + 	      value = target->got_plt_section()->address() +
> > got_offset;
> > +-	      this->tls_gd_to_ie(relinfo, relnum, tls_segment,
> > rela, r_type,
> > ++	      this->tls_gd_to_ie(relinfo, relnum, rela, r_type,
> > + 				 value, view, address,
> > view_size);
> > + 	      break;
> > + 	    }
> > +@@ -3800,14 +3798,8 @@
> > Target_x86_64<size>::Relocate::relocate_tls(
> > + 	    }
> > + 	  if (optimized_type == tls::TLSOPT_TO_IE)
> > + 	    {
> > +-	      if (tls_segment == NULL)
> > +-		{
> > +-		  gold_assert(parameters->errors()->error_count() 
> > > 0
> > +-			      ||
> > issue_undefined_symbol_error(gsym));
> > +-		  return;
> > +-		}
> > + 	      value = target->got_plt_section()->address() +
> > got_offset;
> > +-	      this->tls_desc_gd_to_ie(relinfo, relnum,
> > tls_segment,
> > ++	      this->tls_desc_gd_to_ie(relinfo, relnum,
> > + 				      rela, r_type, value, view,
> > address,
> > + 				      view_size);
> > + 	      break;
> > +@@ -3973,7 +3965,6 @@ inline void
> > + Target_x86_64<size>::Relocate::tls_gd_to_ie(
> > +     const Relocate_info<size, false>* relinfo,
> > +     size_t relnum,
> > +-    Output_segment*,
> > +     const elfcpp::Rela<size, false>& rela,
> > +     unsigned int,
> > +     typename elfcpp::Elf_types<size>::Elf_Addr value,
> > +@@ -4085,7 +4076,6 @@ inline void
> > + Target_x86_64<size>::Relocate::tls_desc_gd_to_ie(
> > +     const Relocate_info<size, false>* relinfo,
> > +     size_t relnum,
> > +-    Output_segment*,
> > +     const elfcpp::Rela<size, false>& rela,
> > +     unsigned int r_type,
> > +     typename elfcpp::Elf_types<size>::Elf_Addr value,
> > +--
> > +1.7.1
> > +
> > --
> > 2.8.0.rc3
> > 
> > --
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> 



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

* Re: [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch
  2016-04-26 16:31     ` Tristan Van Berkom
@ 2016-04-26 16:34       ` Khem Raj
  2016-04-27 21:49         ` Tristan Van Berkom
  0 siblings, 1 reply; 9+ messages in thread
From: Khem Raj @ 2016-04-26 16:34 UTC (permalink / raw)
  To: Tristan Van Berkom; +Cc: openembedded-core

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


> On Apr 26, 2016, at 9:31 AM, Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> wrote:
> 
> On Mon, 2016-04-25 at 13:55 -0700, Khem Raj wrote:
>>> On Apr 25, 2016, at 1:44 PM, Tristan Van Berkom <tristan.vanberkom@
>>> codethink.co.uk> wrote:
>>> 
>>> We fail to build webkit on aarch64 due to this binutils bug:
>>> 
>>>   https://sourceware.org/bugzilla/show_bug.cgi?id=19353
>>> 
>>> Applying patch which fixes this, stripped out changelog entry
>>> from patch to make it apply without error.
>> 
>> 
>> which branch are you proposing this for?
>> we use 2.26 on master
> 
> We are using the jethro branch, sorry for leaving out that detail.
> 

OK, add [jethro] to patch subject line then, so it gets attention of
release maintainers.

> Cheers,
>     -Tristan
> 
>> 
>>> ---
>>> meta/recipes-devtools/binutils/binutils-2.25.1.inc |   1 +
>>> ...plying-TLSDESC-relocs-without-TLS-segment.patch | 166
>>> +++++++++++++++++++++
>>> 2 files changed, 167 insertions(+)
>>> create mode 100644 meta/recipes-devtools/binutils/binutils/fix-
>>> internal-error-when-applying-TLSDESC-relocs-without-TLS-
>>> segment.patch
>>> 
>>> diff --git a/meta/recipes-devtools/binutils/binutils-2.25.1.inc
>>> b/meta/recipes-devtools/binutils/binutils-2.25.1.inc
>>> index f3817fa..c7db9e0 100644
>>> --- a/meta/recipes-devtools/binutils/binutils-2.25.1.inc
>>> +++ b/meta/recipes-devtools/binutils/binutils-2.25.1.inc
>>> @@ -35,6 +35,7 @@ SRC_URI = "\
>>>      file://0015-Fix-dynamic-list-so-that-symbols-not-in-the-list-
>>> are.patch \
>>>      file://binutils-octeon3.patch \
>>>      file://add-thunderx-support-for-gas.patch \
>>> +     file://fix-internal-error-when-applying-TLSDESC-relocs-
>>> without-TLS-segment.patch \
>>>      "
>>> S  = "${WORKDIR}/git"
>>> 
>>> diff --git a/meta/recipes-devtools/binutils/binutils/fix-internal-
>>> error-when-applying-TLSDESC-relocs-without-TLS-segment.patch
>>> b/meta/recipes-devtools/binutils/binutils/fix-internal-error-when-
>>> applying-TLSDESC-relocs-without-TLS-segment.patch
>>> new file mode 100644
>>> index 0000000..df9d54c
>>> --- /dev/null
>>> +++ b/meta/recipes-devtools/binutils/binutils/fix-internal-error-
>>> when-applying-TLSDESC-relocs-without-TLS-segment.patch
>>> @@ -0,0 +1,166 @@
>>> +From d21f123b0ead1806416cf0dafae12bec4cca8920 Mon Sep 17 00:00:00
>>> 2001
>>> +From: Cary Coutant <ccoutant@gmail.com>
>>> +Date: Mon, 11 Jan 2016 23:57:44 -0800
>>> +Subject: [PATCH] Fix internal error when applying TLSDESC
>>> relocations with no TLS segment.
>>> +
>>> +gold/
>>> +	PR gold/19353
>>> +	* aarch64.cc (Target_aarch64::relocate_tls): Don't insist
>>> that
>>> +	we have a TLS segment for GD-to-IE optimization.
>>> +	* i386.cc (Target_i386::tls_gd_to_ie): Remove tls_segment
>>> parameter.
>>> +	Adjust all calls.
>>> +	(Target_i386::tls_desc_gd_to_ie): Likewise.
>>> +	(Target_i386::relocate_tls): Don't insist that we have a
>>> TLS segment
>>> +	for TLSDESC GD-to-IE optimizations.
>>> +	* x86_64.cc (Target_x86_64::tls_gd_to_ie): Remove
>>> tls_segment parameter.
>>> +	Adjust all calls.
>>> +	(Target_x86_64::tls_desc_gd_to_ie): Likewise.
>>> +	(Target_x86_64::relocate_tls): Don't insist that we have a
>>> TLS segment
>>> +	for TLSDESC GD-to-IE optimizations.
>>> +---
>>> + gold/aarch64.cc |    6 ------
>>> + gold/i386.cc    |   14 ++------------
>>> + gold/x86_64.cc  |   14 ++------------
>>> + 4 files changed, 20 insertions(+), 30 deletions(-)
>>> +
>>> +diff --git a/gold/aarch64.cc b/gold/aarch64.cc
>>> +index 20f2f4f..5ad061b 100644
>>> +--- a/gold/aarch64.cc
>>> ++++ b/gold/aarch64.cc
>>> +@@ -7422,12 +7422,6 @@ Target_aarch64<size,
>>> big_endian>::Relocate::relocate_tls(
>>> + 	      }
>>> + 	    if (tlsopt == tls::TLSOPT_TO_IE)
>>> + 	      {
>>> +-		if (tls_segment == NULL)
>>> +-		  {
>>> +-		    gold_assert(parameters->errors()-
>>>> error_count() > 0
>>> +-				||
>>> issue_undefined_symbol_error(gsym));
>>> +-		    return aarch64_reloc_funcs::STATUS_BAD_RELOC;
>>> +-		  }
>>> + 		return tls_desc_gd_to_ie(relinfo, target, rela,
>>> r_type,
>>> + 					 view, psymval,
>>> got_entry_address,
>>> + 					 address);
>>> +diff --git a/gold/i386.cc b/gold/i386.cc
>>> +index 82886d4..a7168a8 100644
>>> +--- a/gold/i386.cc
>>> ++++ b/gold/i386.cc
>>> +@@ -668,7 +668,6 @@ class Target_i386 : public Sized_target<32,
>>> false>
>>> +     // Do a TLS General-Dynamic to Initial-Exec transition.
>>> +     inline void
>>> +     tls_gd_to_ie(const Relocate_info<32, false>*, size_t relnum,
>>> +-		 Output_segment* tls_segment,
>>> + 		 const elfcpp::Rel<32, false>&, unsigned int
>>> r_type,
>>> + 		 elfcpp::Elf_types<32>::Elf_Addr value,
>>> + 		 unsigned char* view,
>>> +@@ -687,7 +686,6 @@ class Target_i386 : public Sized_target<32,
>>> false>
>>> +     // transition.
>>> +     inline void
>>> +     tls_desc_gd_to_ie(const Relocate_info<32, false>*, size_t
>>> relnum,
>>> +-		      Output_segment* tls_segment,
>>> + 		      const elfcpp::Rel<32, false>&, unsigned int
>>> r_type,
>>> + 		      elfcpp::Elf_types<32>::Elf_Addr value,
>>> + 		      unsigned char* view,
>>> +@@ -3054,7 +3052,7 @@ Target_i386::Relocate::relocate_tls(const
>>> Relocate_info<32, false>* relinfo,
>>> + 	    }
>>> + 	  if (optimized_type == tls::TLSOPT_TO_IE)
>>> + 	    {
>>> +-	      this->tls_gd_to_ie(relinfo, relnum, tls_segment,
>>> rel, r_type,
>>> ++	      this->tls_gd_to_ie(relinfo, relnum, rel, r_type,
>>> + 				 got_offset, view, view_size);
>>> + 	      break;
>>> + 	    }
>>> +@@ -3116,13 +3114,7 @@ Target_i386::Relocate::relocate_tls(const
>>> Relocate_info<32, false>* relinfo,
>>> + 	    }
>>> + 	  if (optimized_type == tls::TLSOPT_TO_IE)
>>> + 	    {
>>> +-	      if (tls_segment == NULL)
>>> +-		{
>>> +-		  gold_assert(parameters->errors()->error_count()
>>>> 0
>>> +-			      ||
>>> issue_undefined_symbol_error(gsym));
>>> +-		  return;
>>> +-		}
>>> +-	      this->tls_desc_gd_to_ie(relinfo, relnum,
>>> tls_segment, rel, r_type,
>>> ++	      this->tls_desc_gd_to_ie(relinfo, relnum, rel,
>>> r_type,
>>> + 				      got_offset, view,
>>> view_size);
>>> + 	      break;
>>> + 	    }
>>> +@@ -3354,7 +3346,6 @@ Target_i386::Relocate::tls_gd_to_le(const
>>> Relocate_info<32, false>* relinfo,
>>> + inline void
>>> + Target_i386::Relocate::tls_gd_to_ie(const Relocate_info<32,
>>> false>* relinfo,
>>> + 				    size_t relnum,
>>> +-				    Output_segment*,
>>> + 				    const elfcpp::Rel<32, false>&
>>> rel,
>>> + 				    unsigned int,
>>> + 				    elfcpp::Elf_types<32>::Elf_Ad
>>> dr value,
>>> +@@ -3449,7 +3440,6 @@ inline void
>>> + Target_i386::Relocate::tls_desc_gd_to_ie(
>>> +     const Relocate_info<32, false>* relinfo,
>>> +     size_t relnum,
>>> +-    Output_segment*,
>>> +     const elfcpp::Rel<32, false>& rel,
>>> +     unsigned int r_type,
>>> +     elfcpp::Elf_types<32>::Elf_Addr value,
>>> +diff --git a/gold/x86_64.cc b/gold/x86_64.cc
>>> +index 3cfc064..4ad5afc 100644
>>> +--- a/gold/x86_64.cc
>>> ++++ b/gold/x86_64.cc
>>> +@@ -816,7 +816,6 @@ class Target_x86_64 : public
>>> Sized_target<size, false>
>>> +     // Do a TLS General-Dynamic to Initial-Exec transition.
>>> +     inline void
>>> +     tls_gd_to_ie(const Relocate_info<size, false>*, size_t
>>> relnum,
>>> +-		 Output_segment* tls_segment,
>>> + 		 const elfcpp::Rela<size, false>&, unsigned int
>>> r_type,
>>> + 		 typename elfcpp::Elf_types<size>::Elf_Addr
>>> value,
>>> + 		 unsigned char* view,
>>> +@@ -835,7 +834,6 @@ class Target_x86_64 : public
>>> Sized_target<size, false>
>>> +     // Do a TLSDESC-style General-Dynamic to Initial-Exec
>>> transition.
>>> +     inline void
>>> +     tls_desc_gd_to_ie(const Relocate_info<size, false>*, size_t
>>> relnum,
>>> +-		      Output_segment* tls_segment,
>>> + 		      const elfcpp::Rela<size, false>&, unsigned
>>> int r_type,
>>> + 		      typename elfcpp::Elf_types<size>::Elf_Addr
>>> value,
>>> + 		      unsigned char* view,
>>> +@@ -3733,7 +3731,7 @@ Target_x86_64<size>::Relocate::relocate_tls(
>>> + 	  if (optimized_type == tls::TLSOPT_TO_IE)
>>> + 	    {
>>> + 	      value = target->got_plt_section()->address() +
>>> got_offset;
>>> +-	      this->tls_gd_to_ie(relinfo, relnum, tls_segment,
>>> rela, r_type,
>>> ++	      this->tls_gd_to_ie(relinfo, relnum, rela, r_type,
>>> + 				 value, view, address,
>>> view_size);
>>> + 	      break;
>>> + 	    }
>>> +@@ -3800,14 +3798,8 @@
>>> Target_x86_64<size>::Relocate::relocate_tls(
>>> + 	    }
>>> + 	  if (optimized_type == tls::TLSOPT_TO_IE)
>>> + 	    {
>>> +-	      if (tls_segment == NULL)
>>> +-		{
>>> +-		  gold_assert(parameters->errors()->error_count()
>>>> 0
>>> +-			      ||
>>> issue_undefined_symbol_error(gsym));
>>> +-		  return;
>>> +-		}
>>> + 	      value = target->got_plt_section()->address() +
>>> got_offset;
>>> +-	      this->tls_desc_gd_to_ie(relinfo, relnum,
>>> tls_segment,
>>> ++	      this->tls_desc_gd_to_ie(relinfo, relnum,
>>> + 				      rela, r_type, value, view,
>>> address,
>>> + 				      view_size);
>>> + 	      break;
>>> +@@ -3973,7 +3965,6 @@ inline void
>>> + Target_x86_64<size>::Relocate::tls_gd_to_ie(
>>> +     const Relocate_info<size, false>* relinfo,
>>> +     size_t relnum,
>>> +-    Output_segment*,
>>> +     const elfcpp::Rela<size, false>& rela,
>>> +     unsigned int,
>>> +     typename elfcpp::Elf_types<size>::Elf_Addr value,
>>> +@@ -4085,7 +4076,6 @@ inline void
>>> + Target_x86_64<size>::Relocate::tls_desc_gd_to_ie(
>>> +     const Relocate_info<size, false>* relinfo,
>>> +     size_t relnum,
>>> +-    Output_segment*,
>>> +     const elfcpp::Rela<size, false>& rela,
>>> +     unsigned int r_type,
>>> +     typename elfcpp::Elf_types<size>::Elf_Addr value,
>>> +--
>>> +1.7.1
>>> +
>>> --
>>> 2.8.0.rc3
>>> 
>>> --
>>> _______________________________________________
>>> Openembedded-core mailing list
>>> Openembedded-core@lists.openembedded.org
>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>> 
> 


[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

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

* Re: [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc
  2016-04-26  8:41 ` [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc Richard Purdie
@ 2016-04-26 16:52   ` Khem Raj
  2016-04-26 21:19   ` Tristan Van Berkom
  1 sibling, 0 replies; 9+ messages in thread
From: Khem Raj @ 2016-04-26 16:52 UTC (permalink / raw)
  To: Richard Purdie; +Cc: openembedded-core

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


> On Apr 26, 2016, at 1:41 AM, Richard Purdie <richard.purdie@linuxfoundation.org> wrote:
> 
> On Mon, 2016-04-25 at 16:44 -0400, Tristan Van Berkom wrote:
>> Serializing this fixes build on aarch64
>> ---
>> meta/recipes-devtools/gcc/gcc-cross-initial.inc | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>> 
>> diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc
>> b/meta/recipes-devtools/gcc/gcc-cross-initial.inc
>> index c0fa139..98aae45 100644
>> --- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc
>> +++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc
>> @@ -43,7 +43,8 @@ do_configure_prepend () {
>> }
>> 
>> do_compile () {
>> -    oe_runmake all-gcc configure-target-libgcc
>> +    oe_runmake all-gcc
>> +    oe_runmake configure-target-libgcc
>> }
>> do_install () {
>> 	( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}'
>> install-unwind_h )
> 
> I'd note we have been doing aarch64 builds for a while and not run into
> this. What was the actual failure?
> 
> Can we fix the underlying aarch64 problem, rather than breaking
> parallelism for everyone else this appears to be working for?
> 

I agree. and please add the relevant short error message that you were seeing

> Cheers,
> 
> Richard
> 
> 
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

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

* Re: [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc
  2016-04-26  8:41 ` [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc Richard Purdie
  2016-04-26 16:52   ` Khem Raj
@ 2016-04-26 21:19   ` Tristan Van Berkom
  1 sibling, 0 replies; 9+ messages in thread
From: Tristan Van Berkom @ 2016-04-26 21:19 UTC (permalink / raw)
  To: Richard Purdie, openembedded-core

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

Hi Richard,

On Tue, 2016-04-26 at 09:41 +0100, Richard Purdie wrote:
> On Mon, 2016-04-25 at 16:44 -0400, Tristan Van Berkom wrote:
> > Serializing this fixes build on aarch64
> > ---
> >  meta/recipes-devtools/gcc/gcc-cross-initial.inc | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc
> > b/meta/recipes-devtools/gcc/gcc-cross-initial.inc
> > index c0fa139..98aae45 100644
> > --- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc
> > +++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc
> > @@ -43,7 +43,8 @@ do_configure_prepend () {
> >  }
> >  
> >  do_compile () {
> > -    oe_runmake all-gcc configure-target-libgcc
> > +    oe_runmake all-gcc
> > +    oe_runmake configure-target-libgcc
> >  }
> >  do_install () {
> >  	( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}'
> > install-unwind_h )
> 
> I'd note we have been doing aarch64 builds for a while and not run
> into
> this. What was the actual failure?

Upon receiving your mail I set out to reproduce it, I should mention
that I am building what I think is the latest release branch of poky;
jethro. I am not sure if this is fixed in master.

While reproducing, I also noticed that this does not reproduce when
building regular arm on an aarch64 host, but only when I build for
aarch64 on the aarch64 host (I have not tried building for aarch64 on
an x86_64 host).

The actual build failure occurs in configure-target-libgcc with these
lines mixed in with the other parallel make that still needs to produce
the in tree xgcc:

==========================================================
checking for suffix of object files... checking for C compiler default
output file name... configure: error: in
`/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-
glibc/work/aarch64-linux/gcc-c\
ross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-
unknown-linux/aarch64-unknown-linux/libgcc':
configure: error: cannot compute suffix of object files: cannot compile
See `config.log' for more details.
==========================================================

I'm attaching the build log and also the config.log in question, maybe
you can glean something important from the logs that I missed.

In the config.log you can observe configure trying to execute xgcc at:
/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-
glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-
5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc

But it doesnt yet exist.

> Can we fix the underlying aarch64 problem, rather than breaking
> parallelism for everyone else this appears to be working for?

I dont like it either, that I cannot explain exactly why this works in
some places but not in others.

If I were to guess, I would think the underlying problem lies somewhere
in the gcc build scripts themselves (at least the version in jethro). I
suspect that configure-target-libgcc is normally guaranteed to run only
after xgcc is built, but, in this specific configuration on an aarch64
host, this dependency is somehow ignored.

Best Regards,
    -Tristan

[-- Attachment #2: config.log --]
[-- Type: text/x-log, Size: 26016 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by GNU C Runtime Library configure 1.0, which was
generated by GNU Autoconf 2.64.  Invocation command line was

  $ /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/configure --srcdir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc --cache-file=./config.cache --prefix=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr --exec_prefix=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr --bindir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/bin/aarch64-unknown-linux.gcc-cross-initial-aarch64 --sbindir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/bin/aarch64-unknown-linux.gcc-cross-initial-aarch64 --libexecdir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/libexec/aarch64-unknown-linux.gcc-cross-initial-aarch64 --datadir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/share --sysconfdir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/etc --sharedstatedir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/com --localstatedir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/var --libdir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/lib/aarch64-unknown-linux.gcc-cross-initial-aarch64 --includedir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include --oldincludedir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include --infodir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/share/info --mandir=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/share/man --disable-silent-rules --disable-dependency-tracking --with-libtool-sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux --with-newlib --without-headers --disable-shared --disable-threads --disable-multilib --disable-__cxa_atexit --enable-target-optspace --with-sysroot=/not/exist --with-build-sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --with-system-zlib --disable-lto --disable-plugin --enable-decimal-float=no --without-isl --with-native-system-header-dir=/usr/include --disable-nls --enable-__cxa_atexit --enable-languages=c,c++ --program-transform-name=s&^&aarch64-unknown-linux-& --disable-option-checking --with-target-subdir=aarch64-unknown-linux --build=aarch64-linux --host=aarch64-unknown-linux --target=aarch64-unknown-linux

## --------- ##
## Platform. ##
## --------- ##

hostname = myfourthsled
uname -m = aarch64
uname -r = 4.4.0-21-generic
uname -s = Linux
uname -v = #37-Ubuntu SMP Mon Apr 18 18:36:41 UTC 2016

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/bin/texinfo-dummy-native
PATH: /home/builder/BUILD/freedesktop-sdk-base/yocto/scripts
PATH: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/bin/aarch64-unknown-linux
PATH: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/bin/aarch64-unknown-linux.gcc-cross-initial-aarch64/crossscripts
PATH: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/sbin
PATH: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/bin
PATH: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/sbin
PATH: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/bin
PATH: /home/builder/BUILD/freedesktop-sdk-base/yocto/scripts
PATH: /home/builder/BUILD/freedesktop-sdk-base/yocto/bitbake/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /usr/local/games


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2018: loading cache ./config.cache
configure:2232: checking build system type
configure:2246: result: aarch64-unknown-linux-gnu
configure:2266: checking host system type
configure:2279: result: aarch64-unknown-linux-gnu
configure:2382: checking for --enable-version-specific-runtime-libs
configure:2395: result: no
configure:2443: checking for a BSD-compatible install
configure:2511: result: /usr/bin/install -c
configure:2527: checking for gawk
configure:2554: result: gawk
configure:2654: checking for aarch64-unknown-linux-ar
configure:2681: result: ar
configure:2746: checking for aarch64-unknown-linux-lipo
configure:2773: result: lipo
configure:2838: checking for aarch64-unknown-linux-nm
configure:2865: result: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/nm
configure:2930: checking for aarch64-unknown-linux-ranlib
configure:2957: result: ranlib
configure:3022: checking for aarch64-unknown-linux-strip
configure:3049: result: strip
configure:3111: checking whether ln -s works
configure:3115: result: yes
configure:3132: checking for aarch64-unknown-linux-gcc
configure:3159: result:  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot  
configure:3428: checking for C compiler version
configure:3437:  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot   --version >&5
/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/configure: line 3439: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc: No such file or directory
configure:3448: $? = 127
configure:3437:  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot   -v >&5
/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/configure: line 3439: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc: No such file or directory
configure:3448: $? = 127
configure:3437:  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot   -V >&5
/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/configure: line 3439: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc: No such file or directory
configure:3448: $? = 127
configure:3437:  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot   -qversion >&5
/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/configure: line 3439: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc: No such file or directory
configure:3448: $? = 127
configure:3464:  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot   -o conftest -O2 -pipe -g -feliminate-unused-debug-types -g -Os  -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed conftest.c  >&5
/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/configure: line 3465: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc: No such file or directory
configure:3467: $? = 127
configure:3655: checking for suffix of object files
configure:3677:  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot   -c -O2 -pipe -g -feliminate-unused-debug-types -g -Os  conftest.c >&5
/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/configure: line 3679: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc: No such file or directory
configure:3681: $? = 127
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU C Runtime Library"
| #define PACKAGE_TARNAME "libgcc"
| #define PACKAGE_VERSION "1.0"
| #define PACKAGE_STRING "GNU C Runtime Library 1.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL "http://www.gnu.org/software/libgcc/"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:3695: error: in `/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/aarch64-unknown-linux/libgcc':
configure:3698: error: cannot compute suffix of object files: cannot compile
See `config.log' for more details.

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=aarch64-unknown-linux-gnu
ac_cv_env_CC_set=set
ac_cv_env_CC_value=' /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot  '
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-O2 -pipe -g -feliminate-unused-debug-types -g -Os'
ac_cv_env_CPPFLAGS_set=set
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=set
ac_cv_env_CPP_value='gcc -E '
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value='-Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed'
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=aarch64-linux
ac_cv_env_host_alias_set=set
ac_cv_env_host_alias_value=aarch64-unknown-linux
ac_cv_env_target_alias_set=set
ac_cv_env_target_alias_value=aarch64-unknown-linux
ac_cv_host=aarch64-unknown-linux-gnu
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AR=ar
ac_cv_prog_AWK=gawk
ac_cv_prog_CC=' /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot  '
ac_cv_prog_LIPO=lipo
ac_cv_prog_NM=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/nm
ac_cv_prog_RANLIB=ranlib
ac_cv_prog_STRIP=strip
gcc_cv_collect2_libs='none required'
lt_cv_sys_lib_dlsearch_path_spec='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/lib/aarch64-unknown-linux.gcc-cross-initial-aarch64 /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/lib'

## ----------------- ##
## Output variables. ##
## ----------------- ##

AR='ar'
AWK='gawk'
CC=' /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot  '
CFLAGS='-O2 -pipe -g -feliminate-unused-debug-types -g -Os'
CPP='gcc -E '
CPPFLAGS=''
DEFS=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP=''
EXEEXT=''
GREP=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LDFLAGS='-Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed'
LIBOBJS=''
LIBS=''
LIPO='lipo'
LN_S='ln -s'
LTLIBOBJS=''
MAINT='#'
NM='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/nm'
OBJEXT=''
PACKAGE_BUGREPORT=''
PACKAGE_NAME='GNU C Runtime Library'
PACKAGE_STRING='GNU C Runtime Library 1.0'
PACKAGE_TARNAME='libgcc'
PACKAGE_URL='http://www.gnu.org/software/libgcc/'
PACKAGE_VERSION='1.0'
PATH_SEPARATOR=':'
PICFLAG='-fPIC'
RANLIB='ranlib'
SHELL='/bin/bash'
STRIP='strip'
ac_ct_CC=''
accel_dir_suffix=''
asm_hidden_op=''
bindir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/bin/aarch64-unknown-linux.gcc-cross-initial-aarch64'
build='aarch64-unknown-linux-gnu'
build_alias='aarch64-linux'
build_cpu='aarch64'
build_libsubdir='build-aarch64-linux'
build_os='linux-gnu'
build_subdir='build-aarch64-linux'
build_vendor='unknown'
cpu_type=''
datadir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/share'
datarootdir='${prefix}/share'
decimal_float=''
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
double_type_size=''
dvidir='${docdir}'
enable_decimal_float='no'
enable_shared='no'
enable_vtable_verify='no'
exec_prefix='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr'
extra_parts=''
fixed_point=''
force_explicit_eh_registry=''
host='aarch64-unknown-linux-gnu'
host_alias='aarch64-unknown-linux'
host_cpu='aarch64'
host_noncanonical='aarch64-unknown-linux'
host_os='linux-gnu'
host_subdir='.'
host_vendor='unknown'
htmldir='${docdir}'
includedir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include'
infodir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/share/info'
libdir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/lib/aarch64-unknown-linux.gcc-cross-initial-aarch64'
libexecdir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/libexec/aarch64-unknown-linux.gcc-cross-initial-aarch64'
libgcc_topdir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/..'
localedir='${datarootdir}/locale'
localstatedir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/var'
long_double_type_size=''
mandir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/share/man'
oldincludedir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include'
pdfdir='${docdir}'
prefix='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr'
program_transform_name='s&^&aarch64-unknown-linux-&'
psdir='${docdir}'
sbindir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/bin/aarch64-unknown-linux.gcc-cross-initial-aarch64'
set_have_cc_tls=''
set_use_emutls=''
sfp_machine_header=''
sharedstatedir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/com'
slibdir='$(libdir)'
sysconfdir='/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/etc'
target_alias='aarch64-unknown-linux'
target_noncanonical='aarch64-unknown-linux'
target_subdir='aarch64-unknown-linux'
thread_header=''
tm_defines=''
tm_file=''
tmake_file=''
toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)'
toolexeclibdir='$(libdir)/'
vis_hide=''
with_aix_soname='aix'

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "GNU C Runtime Library"
#define PACKAGE_TARNAME "libgcc"
#define PACKAGE_VERSION "1.0"
#define PACKAGE_STRING "GNU C Runtime Library 1.0"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL "http://www.gnu.org/software/libgcc/"

configure: exit 1

[-- Attachment #3: log.do_compile.858 --]
[-- Type: text/plain, Size: 270165 bytes --]

DEBUG: SITE files ['endian-little', 'bit-64', 'arm-common', 'arm-64', 'common-linux', 'common-glibc', 'aarch64-linux', 'common']
DEBUG: Executing shell function do_compile
NOTE: make -j 5 all-gcc configure-target-libgcc
Checking multilib configuration for libgcc...
Configuring in ./gcc
Configuring in aarch64-unknown-linux/libgcc
make[1]: Entering directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/libiberty'
if [ x"-fPIC" != x ] && [ ! -d pic ]; then \
  mkdir pic; \
else true; fi
make[1]: Entering directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/intl'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/intl'
make[1]: Entering directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/build-aarch64-linux/libiberty'
if [ x"" != x ] && [ ! -d pic ]; then \
  mkdir pic; \
else true; fi
touch stamp-picdir
touch stamp-picdir
if [ x"" != x ] && [ ! -d noasan ]; then \
  mkdir noasan; \
else true; fi
if [ x"" != x ] && [ ! -d noasan ]; then \
  mkdir noasan; \
else true; fi
touch stamp-noasandir
touch stamp-noasandir
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dwarfnames.c -o pic/dwarfnames.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dwarfnames.c -o pic/dwarfnames.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dwarfnames.c -o noasan/dwarfnames.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dwarfnames.c -o dwarfnames.o
make[1]: Entering directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/libbacktrace'
make  all-am
make[2]: Entering directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/libbacktrace'
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=atomic.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o atomic.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/atomic.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=atomic.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/atomic.c -o atomic.o
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=sort.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o sort.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/sort.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=sort.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/sort.c -o sort.o
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=state.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o state.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/state.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=state.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/state.c -o state.o
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=backtrace.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o backtrace.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/backtrace.c
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dyn-string.c -o pic/dyn-string.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dyn-string.c -o noasan/dyn-string.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dyn-string.c -o dyn-string.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=backtrace.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/backtrace.c -o backtrace.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dwarfnames.c -o noasan/dwarfnames.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dwarfnames.c -o dwarfnames.o
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=simple.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o simple.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/simple.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=simple.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/simple.c -o simple.o
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=elf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o elf.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/elf.c
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fdmatch.c -o pic/fdmatch.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fdmatch.c -o noasan/fdmatch.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fdmatch.c -o fdmatch.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=elf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/elf.c -o elf.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fibheap.c -o pic/fibheap.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fibheap.c -o noasan/fibheap.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fibheap.c -o fibheap.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dyn-string.c -o pic/dyn-string.o; \
else true; fi
configure: creating cache ./config.cache
configure: loading cache ./config.cache
checking build system type... checking build system type... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/filename_cmp.c -o noasan/filename_cmp.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/filename_cmp.c -o filename_cmp.o
aarch64-unknown-linux-gnu
checking host system type... aarch64-unknown-linux-gnu
checking host system type... /bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=mmapio.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o mmapio.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/mmapio.c
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dyn-string.c -o noasan/dyn-string.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/dyn-string.c -o dyn-string.o
aarch64-unknown-linux-gnu
checking target system type... libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=mmapio.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/mmapio.c -o mmapio.o
aarch64-unknown-linux-gnu
checking for --enable-version-specific-runtime-libs... no
checking for a BSD-compatible install... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/floatformat.c -o pic/floatformat.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/floatformat.c -o noasan/floatformat.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/floatformat.c -o floatformat.o
aarch64-unknown-linux-gnu
/usr/bin/install -c
checking for gawk... gawk
/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libgcc/configure: line 2641: /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc: No such file or directory
checking for aarch64-unknown-linux-ar... ar
checking for aarch64-unknown-linux-lipo... lipo
checking for aarch64-unknown-linux-nm... /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/nm
checking for aarch64-unknown-linux-ranlib... ranlib
checking for aarch64-unknown-linux-strip... strip
checking LIBRARY_PATH variable... ok
checking GCC_EXEC_PREFIX variable... ok
checking whether ln -s works... yes
checking for aarch64-unknown-linux-gcc...  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/xgcc -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/./gcc/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/bin/ -B/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/lib/ -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/include -isystem /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/aarch64-unknown-linux/sys-include --sysroot=/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/tmpsysroot  
checking whether to place generated files in the source directory... no
checking whether a default linker was specified... no
checking whether a default assembler was specified... no
checking for aarch64-linux-gcc... gcc 
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=mmap.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o mmap.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/mmap.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=mmap.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/mmap.c -o mmap.o
checking for suffix of object files... checking for C compiler default output file name... configure: error: in `/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/aarch64-unknown-linux/libgcc':
configure: error: cannot compute suffix of object files: cannot compile
See `config.log' for more details.
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fdmatch.c -o pic/fdmatch.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fnmatch.c -o pic/fnmatch.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fnmatch.c -o noasan/fnmatch.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fnmatch.c -o fnmatch.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fdmatch.c -o noasan/fdmatch.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fdmatch.c -o fdmatch.o
a.out
checking whether the C compiler works... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fopen_unlocked.c -o noasan/fopen_unlocked.o; \
else true; fi
yes
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fopen_unlocked.c -o fopen_unlocked.o
checking whether we are cross compiling... no
checking for suffix of executables... Makefile:13794: recipe for target 'configure-target-libgcc' failed
make: *** [configure-target-libgcc] Error 1
make: *** Waiting for unfinished jobs....
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fibheap.c -o pic/fibheap.o; \
else true; fi
true  DO=all multi-do # make
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=dwarf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o dwarf.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/dwarf.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=dwarf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/dwarf.c -o dwarf.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt.c -o pic/getopt.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt.c -o noasan/getopt.o; \
else true; fi

checking for suffix of object files... gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt.c -o getopt.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt1.c -o pic/getopt1.o; \
else true; fi
o
checking whether we are using the GNU C compiler... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt1.c -o noasan/getopt1.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt1.c -o getopt1.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/filename_cmp.c -o noasan/filename_cmp.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/filename_cmp.c -o filename_cmp.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getpwd.c -o pic/getpwd.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getpwd.c -o noasan/getpwd.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getpwd.c -o getpwd.o
yes
checking whether gcc  accepts -g... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fibheap.c -o noasan/fibheap.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fibheap.c -o fibheap.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/floatformat.c -o pic/floatformat.o; \
else true; fi
yes
checking for gcc  option to accept ISO C89... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getruntime.c -o pic/getruntime.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getruntime.c -o noasan/getruntime.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getruntime.c -o getruntime.o
none needed
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hashtab.c -o pic/hashtab.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hashtab.c -o noasan/hashtab.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hashtab.c -o hashtab.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fnmatch.c -o pic/fnmatch.o; \
else true; fi
checking whether we are using the GNU C++ compiler... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fnmatch.c -o noasan/fnmatch.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fnmatch.c -o fnmatch.o
yes
checking whether g++  accepts -g... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/floatformat.c -o noasan/floatformat.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/floatformat.c -o floatformat.o
yes
checking for aarch64-linux-gnatbind... no
checking for gnatbind... no
checking for aarch64-linux-gnatmake... no
checking for gnatmake... no
checking whether compiler driver understands Ada... no
checking how to run the C preprocessor... gcc  -E
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fopen_unlocked.c -o noasan/fopen_unlocked.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/fopen_unlocked.c -o fopen_unlocked.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt.c -o pic/getopt.o; \
else true; fi
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt.c -o noasan/getopt.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt1.c -o pic/getopt1.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt.c -o getopt.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getpwd.c -o pic/getpwd.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hex.c -o pic/hex.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt1.c -o noasan/getopt1.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hex.c -o noasan/hex.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hex.c -o hex.o
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getopt1.c -o getopt1.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lbasename.c -o pic/lbasename.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getruntime.c -o pic/getruntime.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lbasename.c -o noasan/lbasename.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lbasename.c -o lbasename.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getpwd.c -o noasan/getpwd.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getpwd.c -o getpwd.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getruntime.c -o noasan/getruntime.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lrealpath.c -o pic/lrealpath.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lrealpath.c -o noasan/lrealpath.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/getruntime.c -o getruntime.o
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lrealpath.c -o lrealpath.o
yes
checking for sys/types.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hashtab.c -o pic/hashtab.o; \
else true; fi
yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hex.c -o pic/hex.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-relative-prefix.c -o noasan/make-relative-prefix.o; \
else true; fi
checking for sys/stat.h... gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-relative-prefix.c -o make-relative-prefix.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hex.c -o noasan/hex.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hex.c -o hex.o
yes
checking for stdlib.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lbasename.c -o pic/lbasename.o; \
else true; fi
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=fileline.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o fileline.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/fileline.c
yes
checking for string.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lbasename.c -o noasan/lbasename.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lbasename.c -o lbasename.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=fileline.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/fileline.c -o fileline.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-temp-file.c -o noasan/make-temp-file.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-temp-file.c -o make-temp-file.o
yes
checking for memory.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lrealpath.c -o pic/lrealpath.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hashtab.c -o noasan/hashtab.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/hashtab.c -o hashtab.o
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=posix.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o posix.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/posix.c
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/objalloc.c -o pic/objalloc.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/objalloc.c -o noasan/objalloc.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/objalloc.c -o objalloc.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lrealpath.c -o noasan/lrealpath.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/lrealpath.c -o lrealpath.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=posix.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/posix.c -o posix.o
checking for strings.h... yes
/bin/bash ./libtool --tag=CC   --mode=compile gcc  -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace  -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc  -funwind-tables -frandom-seed=print.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c -o print.lo /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/print.c
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/obstack.c -o pic/obstack.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/obstack.c -o noasan/obstack.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/obstack.c -o obstack.o
checking for inttypes.h... libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../include -I /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/../libgcc -I ../libgcc -funwind-tables -frandom-seed=print.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -c /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libbacktrace/print.c -o print.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/partition.c -o pic/partition.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/partition.c -o noasan/partition.o; \
else true; fi
yes
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/partition.c -o partition.o
checking for stdint.h... /bin/bash ./libtool --tag=CC   --mode=link gcc  -funwind-tables -frandom-seed=libbacktrace.la -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -static-libstdc++ -static-libgcc -L/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/lib -L/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/lib -Wl,-rpath-link,/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/lib -Wl,-rpath-link,/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/lib -Wl,-rpath,/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/lib -Wl,-rpath,/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/lib -Wl,-O1 -o libbacktrace.la  atomic.lo dwarf.lo fileline.lo posix.lo print.lo sort.lo state.lo backtrace.lo simple.lo elf.lo mmapio.lo mmap.lo 
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pexecute.c -o pic/pexecute.o; \
else true; fi
checking for unistd.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pexecute.c -o noasan/pexecute.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-relative-prefix.c -o noasan/make-relative-prefix.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-relative-prefix.c -o make-relative-prefix.o
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pexecute.c -o pexecute.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/physmem.c -o pic/physmem.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/physmem.c -o noasan/physmem.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/physmem.c -o physmem.o
yes
checking minix/config.h usability... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-common.c -o pic/pex-common.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-common.c -o noasan/pex-common.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-common.c -o pex-common.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-one.c -o pic/pex-one.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-one.c -o noasan/pex-one.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-one.c -o pex-one.o
libtool: link: ar cru .libs/libbacktrace.a  atomic.o dwarf.o fileline.o posix.o print.o sort.o state.o backtrace.o simple.o elf.o mmapio.o mmap.o
ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libbacktrace.a
no
checking minix/config.h presence... libtool: link: ( cd ".libs" && rm -f "libbacktrace.la" && ln -s "../libbacktrace.la" "libbacktrace.la" )
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-unix.c -o pic/pex-unix.o; \
else true; fi
make[2]: Leaving directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/libbacktrace'
make[1]: Leaving directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/libbacktrace'
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-unix.c -o noasan/pex-unix.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-unix.c -o pex-unix.o
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/objalloc.c -o pic/objalloc.o; \
else true; fi
yes
checking how to run the C preprocessor... gcc  -E
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-temp-file.c -o noasan/make-temp-file.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/make-temp-file.c -o make-temp-file.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/objalloc.c -o noasan/objalloc.o; \
else true; fi
checking for inline... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/vprintf-support.c -o pic/vprintf-support.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/objalloc.c -o objalloc.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/vprintf-support.c -o noasan/vprintf-support.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/vprintf-support.c -o vprintf-support.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
else true; fi
inline
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/safe-ctype.c -o noasan/safe-ctype.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/safe-ctype.c -o safe-ctype.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/obstack.c -o pic/obstack.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/partition.c -o pic/partition.o; \
else true; fi
no
checking size of void *... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/obstack.c -o noasan/obstack.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object.c -o pic/simple-object.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object.c -o noasan/simple-object.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/obstack.c -o obstack.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object.c -o simple-object.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-coff.c -o noasan/simple-object-coff.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-coff.c -o simple-object-coff.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pexecute.c -o pic/pexecute.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pexecute.c -o noasan/pexecute.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pexecute.c -o pexecute.o
8
checking size of short... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/partition.c -o noasan/partition.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/partition.c -o partition.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-elf.c -o noasan/simple-object-elf.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-mach-o.c -o noasan/simple-object-mach-o.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-elf.c -o simple-object-elf.o
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
2
checking size of int... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/physmem.c -o pic/physmem.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-common.c -o pic/pex-common.o; \
else true; fi
4
checking size of long... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/physmem.c -o noasan/physmem.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/physmem.c -o physmem.o
8
checking for long long... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-one.c -o pic/pex-one.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-one.c -o noasan/pex-one.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-one.c -o pex-one.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-unix.c -o pic/pex-unix.o; \
else true; fi
yes
checking size of long long... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-xcoff.c -o pic/simple-object-xcoff.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-xcoff.c -o noasan/simple-object-xcoff.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-xcoff.c -o simple-object-xcoff.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-common.c -o noasan/pex-common.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-common.c -o pex-common.o
8
checking for int8_t... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sort.c -o pic/sort.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sort.c -o noasan/sort.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sort.c -o sort.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-unix.c -o noasan/pex-unix.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/pex-unix.c -o pex-unix.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/spaces.c -o pic/spaces.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/spaces.c -o noasan/spaces.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/spaces.c -o spaces.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/splay-tree.c -o pic/splay-tree.o; \
else true; fi
yes
checking for int16_t... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/splay-tree.c -o noasan/splay-tree.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/splay-tree.c -o splay-tree.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/stack-limit.c -o pic/stack-limit.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/vprintf-support.c -o pic/vprintf-support.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/stack-limit.c -o noasan/stack-limit.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/stack-limit.c -o stack-limit.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strerror.c -o pic/strerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strerror.c -o noasan/strerror.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strerror.c -o strerror.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/safe-ctype.c -o noasan/safe-ctype.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/safe-ctype.c -o safe-ctype.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strsignal.c -o pic/strsignal.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strsignal.c -o noasan/strsignal.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/vprintf-support.c -o noasan/vprintf-support.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strsignal.c -o strsignal.o
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/vprintf-support.c -o vprintf-support.o
yes
checking for int32_t... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/timeval-utils.c -o pic/timeval-utils.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/timeval-utils.c -o noasan/timeval-utils.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/timeval-utils.c -o timeval-utils.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/unlink-if-ordinary.c -o noasan/unlink-if-ordinary.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xasprintf.c -o pic/xasprintf.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xasprintf.c -o noasan/xasprintf.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xasprintf.c -o xasprintf.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xatexit.c -o pic/xatexit.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object.c -o pic/simple-object.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xatexit.c -o noasan/xatexit.o; \
else true; fi
yes
checking for int64_t... gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xatexit.c -o xatexit.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xexit.c -o pic/xexit.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xexit.c -o noasan/xexit.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xexit.c -o xexit.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmalloc.c -o pic/xmalloc.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmalloc.c -o noasan/xmalloc.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmalloc.c -o xmalloc.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmemdup.c -o pic/xmemdup.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmemdup.c -o noasan/xmemdup.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmemdup.c -o xmemdup.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrdup.c -o pic/xstrdup.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrdup.c -o noasan/xstrdup.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrdup.c -o xstrdup.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrerror.c -o pic/xstrerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrerror.c -o noasan/xstrerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrndup.c -o pic/xstrndup.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrerror.c -o xstrerror.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrndup.c -o noasan/xstrndup.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrndup.c -o xstrndup.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xvasprintf.c -o pic/xvasprintf.o; \
else true; fi
yes
checking for long long int... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xvasprintf.c -o noasan/xvasprintf.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object.c -o noasan/simple-object.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xvasprintf.c -o xvasprintf.o
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object.c -o simple-object.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/setproctitle.c -o pic/setproctitle.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/setproctitle.c -o noasan/setproctitle.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/setproctitle.c -o setproctitle.o
echo ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o > required-list
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/regex.c -o pic/regex.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/regex.c -o noasan/regex.o; \
else true; fi
make[2]: Entering directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/build-aarch64-linux/libiberty/testsuite'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/build-aarch64-linux/libiberty/testsuite'
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/regex.c -o regex.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cplus-dem.c -o noasan/cplus-dem.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cplus-dem.c -o cplus-dem.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demangle.c -o noasan/cp-demangle.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demangle.c -o cp-demangle.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
else true; fi
yes
checking for intmax_t... yes
checking for intptr_t... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-coff.c -o noasan/simple-object-coff.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-coff.c -o simple-object-coff.o
yes
checking for uint8_t... yes
checking for uint16_t... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
else true; fi
yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for unsigned long long int... yes
checking for uintmax_t... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-elf.c -o noasan/simple-object-elf.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-elf.c -o simple-object-elf.o
yes
checking for uintptr_t... yes
checking for int64_t underlying type... long
checking whether gcc  supports -W... yes
checking whether gcc  supports -Wall... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
else true; fi
yes
checking whether gcc  supports -Wnarrowing... yes
checking whether gcc  supports -Wwrite-strings... yes
checking whether gcc  supports -Wcast-qual... yes
checking whether gcc  supports -Wstrict-prototypes... yes
checking whether gcc  supports -Wmissing-prototypes... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-mach-o.c -o noasan/simple-object-mach-o.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/md5.c -o pic/md5.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/md5.c -o noasan/md5.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/md5.c -o md5.o
checking whether gcc  supports -Wmissing-format-attribute... yes
checking whether gcc  supports -Woverloaded-virtual... yes
checking whether gcc  supports -Wold-style-definition... yes
checking whether gcc  supports -Wc++-compat... yes
checking whether gcc  supports -pedantic -Wlong-long -Wvariadic-macros -Woverlength-strings... yes
checking whether gcc  supports -fno-exceptions... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sha1.c -o pic/sha1.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sha1.c -o noasan/sha1.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sha1.c -o sha1.o
yes
checking whether gcc  supports -fno-rtti... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-xcoff.c -o pic/simple-object-xcoff.o; \
else true; fi
yes
checking whether gcc  supports -fasynchronous-unwind-tables... yes
checking valgrind.h usability... no
checking valgrind.h presence... no
checking for valgrind.h... no
checking for VALGRIND_DISCARD in <valgrind/memcheck.h>... no
checking for VALGRIND_DISCARD in <memcheck.h>... no
checking for multiarch configuration... no, disabled auto check (configured with --native-system-header-dir)
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-xcoff.c -o noasan/simple-object-xcoff.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/simple-object-xcoff.c -o simple-object-xcoff.o
configure: WARNING: fixed-point is not supported for this target, ignored
checking whether make sets $(MAKE)... yes
checking for gawk... gawk
checking whether ln -s works... yes
checking whether ln works... yes
checking for aarch64-linux-ranlib... ranlib
checking for a BSD compatible install... /usr/bin/install -c
checking for cmp's capabilities... gnucompare
checking for mktemp... yes
checking for makeinfo... makeinfo
checking for modern makeinfo... yes
checking for recent Pod::Man... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/alloca.c -o pic/alloca.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/alloca.c -o noasan/alloca.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/alloca.c -o alloca.o
yes
checking for flex... flex
checking for bison... bison
checking for nm... nm
checking for ar... ar
checking for sphinx-build... texinfo
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/argv.c -o pic/argv.o; \
else true; fi
yes
checking whether string.h and strings.h may both be included... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/argv.c -o noasan/argv.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/argv.c -o argv.o
yes
checking for sys/wait.h that is POSIX.1 compatible... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sort.c -o pic/sort.o; \
else true; fi
yes
checking whether termios.h defines TIOCGWINSZ... no
checking whether sys/ioctl.h defines TIOCGWINSZ... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sort.c -o noasan/sort.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sort.c -o sort.o
yes
checking for limits.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/choose-temp.c -o pic/choose-temp.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/choose-temp.c -o noasan/choose-temp.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/choose-temp.c -o choose-temp.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/concat.c -o pic/concat.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/concat.c -o noasan/concat.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/concat.c -o concat.o
yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/spaces.c -o pic/spaces.o; \
else true; fi
checking for stddef.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demint.c -o pic/cp-demint.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demint.c -o noasan/cp-demint.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demint.c -o cp-demint.o
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/spaces.c -o noasan/spaces.o; \
else true; fi
checking for string.h... (cached) yes
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/spaces.c -o spaces.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/splay-tree.c -o pic/splay-tree.o; \
else true; fi
checking for strings.h... (cached) yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/crc32.c -o pic/crc32.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/crc32.c -o noasan/crc32.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/crc32.c -o crc32.o
checking for stdlib.h... (cached) yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/d-demangle.c -o pic/d-demangle.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic    /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/d-demangle.c -o noasan/d-demangle.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/d-demangle.c -o d-demangle.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/stack-limit.c -o pic/stack-limit.o; \
else true; fi
checking for time.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strerror.c -o pic/strerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/stack-limit.c -o noasan/stack-limit.o; \
else true; fi
yes
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/stack-limit.c -o stack-limit.o
checking for iconv.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strsignal.c -o pic/strsignal.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strerror.c -o noasan/strerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/splay-tree.c -o noasan/splay-tree.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strerror.c -o strerror.o
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/splay-tree.c -o splay-tree.o
checking for fcntl.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strsignal.c -o noasan/strsignal.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/strsignal.c -o strsignal.o
yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/timeval-utils.c -o pic/timeval-utils.o; \
else true; fi
checking for ftw.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/timeval-utils.c -o noasan/timeval-utils.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/timeval-utils.c -o timeval-utils.o
yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xasprintf.c -o pic/xasprintf.o; \
else true; fi
checking for unistd.h... (cached) yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xatexit.c -o pic/xatexit.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xasprintf.c -o noasan/xasprintf.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xasprintf.c -o xasprintf.o
checking for sys/file.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/unlink-if-ordinary.c -o noasan/unlink-if-ordinary.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xatexit.c -o noasan/xatexit.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xatexit.c -o xatexit.o
yes
checking for sys/time.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xexit.c -o pic/xexit.o; \
else true; fi
yes
checking for sys/mman.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmalloc.c -o pic/xmalloc.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmemdup.c -o pic/xmemdup.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xexit.c -o noasan/xexit.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xexit.c -o xexit.o
checking for sys/resource.h... yes
checking for sys/param.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmemdup.c -o noasan/xmemdup.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmemdup.c -o xmemdup.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrdup.c -o pic/xstrdup.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmalloc.c -o noasan/xmalloc.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xmalloc.c -o xmalloc.o
checking for sys/times.h... yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrerror.c -o pic/xstrerror.o; \
else true; fi
checking for sys/stat.h... (cached) yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrdup.c -o noasan/xstrdup.o; \
else true; fi
rm -f ./libiberty.a pic/./libiberty.a noasan/./libiberty.a
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrdup.c -o xstrdup.o
checking for direct.h... ar rc ./libiberty.a \
  ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o
ranlib ./libiberty.a
if [ x"" != x ]; then \
  cd pic; \
  ar rc ./libiberty.a \
    ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi; \
if [ x"" != x ]; then \
  cd noasan; \
  ar rc ./libiberty.a \
    ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi
no
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrerror.c -o noasan/xstrerror.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrerror.c -o xstrerror.o
make[1]: Leaving directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/build-aarch64-linux/libiberty'
checking for malloc.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrndup.c -o pic/xstrndup.o; \
else true; fi
yes
checking for langinfo.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xvasprintf.c -o pic/xvasprintf.o; \
else true; fi
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/setproctitle.c -o pic/setproctitle.o; \
else true; fi
yes
echo ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o > required-list
checking for ldfcn.h... make[2]: Entering directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/libiberty/testsuite'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/libiberty/testsuite'
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/regex.c -o pic/regex.o; \
else true; fi
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrndup.c -o noasan/xstrndup.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xstrndup.c -o xstrndup.o
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/setproctitle.c -o noasan/setproctitle.o; \
else true; fi
no
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/setproctitle.c -o setproctitle.o
checking for locale.h... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xvasprintf.c -o noasan/xvasprintf.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/xvasprintf.c -o xvasprintf.o
yes
checking for wchar.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
else true; fi
yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
else true; fi
checking for thread.h... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/md5.c -o pic/md5.o; \
else true; fi
no
checking for pthread.h... yes
checking for CHAR_BIT... yes
checking whether byte ordering is bigendian... no
checking how to run the C++ preprocessor... g++  -E
checking for unordered_map... no
checking for tr1/unordered_map... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/md5.c -o noasan/md5.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/md5.c -o md5.o
yes
checking for ext/hash_map... yes
checking dependency style of g++ ... gcc3
checking for collect2 libraries... (cached) none required
checking for library containing exc_resume... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sha1.c -o pic/sha1.o; \
else true; fi
no
checking for library containing kstat_open... no
checking for library containing ldexp... none required
checking for inttypes.h... yes
checking for times... yes
checking for clock... yes
checking for kill... yes
checking for getrlimit... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sha1.c -o noasan/sha1.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/sha1.c -o sha1.o
yes
checking for setrlimit... yes
checking for atoll... yes
checking for atoq... no
checking for popen... yes
checking for sysconf... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/alloca.c -o pic/alloca.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/alloca.c -o noasan/alloca.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/alloca.c -o alloca.o
checking for strsignal... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cplus-dem.c -o noasan/cplus-dem.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cplus-dem.c -o cplus-dem.o
yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/argv.c -o pic/argv.o; \
else true; fi
checking for getrusage... yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/argv.c -o noasan/argv.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/argv.c -o argv.o
checking for nl_langinfo... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/choose-temp.c -o pic/choose-temp.o; \
else true; fi
yes
checking for gettimeofday... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/choose-temp.c -o noasan/choose-temp.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/choose-temp.c -o choose-temp.o
yes
checking for mbstowcs... if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/concat.c -o pic/concat.o; \
else true; fi
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/concat.c -o noasan/concat.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/concat.c -o concat.o
checking for wcswidth... yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/regex.c -o noasan/regex.o; \
else true; fi
checking for mmap... gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/regex.c -o regex.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demint.c -o pic/cp-demint.o; \
else true; fi
yes
checking for setlocale... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demint.c -o noasan/cp-demint.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demint.c -o cp-demint.o
yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demangle.c -o noasan/cp-demangle.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/cp-demangle.c -o cp-demangle.o
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/crc32.c -o pic/crc32.o; \
else true; fi
checking for clearerr_unlocked... if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/crc32.c -o noasan/crc32.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/crc32.c -o crc32.o
yes
if [ x"-fPIC" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/d-demangle.c -o pic/d-demangle.o; \
else true; fi
checking for feof_unlocked... yes
checking for ferror_unlocked... yes
checking for fflush_unlocked... yes
checking for fgetc_unlocked... yes
if [ x"" != x ]; then \
  gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -fPIC  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/d-demangle.c -o noasan/d-demangle.o; \
else true; fi
gcc  -c -DHAVE_CONFIG_H -isystem/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/sysroots/aarch64-linux/usr/include -O2 -pipe  -I. -I/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/libiberty/d-demangle.c -o d-demangle.o
checking for fgets_unlocked... yes
checking for fileno_unlocked... yes
checking for fprintf_unlocked... no
checking for fputc_unlocked... yes
checking for fputs_unlocked... yes
checking for fread_unlocked... yes
checking for fwrite_unlocked... yes
checking for getchar_unlocked... yes
checking for getc_unlocked... yes
checking for putchar_unlocked... yes
checking for putc_unlocked... yes
checking for madvise... yes
checking whether mbstowcs works... yes
checking for ssize_t... yes
checking for caddr_t... yes
checking for sys/mman.h... (cached) yes
checking for mmap... (cached) yes
checking whether read-only mmap of a plain file works... yes
checking whether mmap from /dev/zero works... yes
checking for MAP_ANON(YMOUS)... yes
checking whether mmap with MAP_ANON(YMOUS) works... yes
checking for pid_t... yes
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for ld used by GCC... ld 
checking if the linker (ld ) is GNU ld... yes
checking for shared library run path origin... done
checking for iconv... yes
checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for LC_MESSAGES... yes
checking for nl_langinfo and CODESET... yes
checking whether getenv is declared... yes
checking whether atol is declared... yes
checking whether asprintf is declared... yes
rm -f ./libiberty.a pic/./libiberty.a noasan/./libiberty.a
ar rc ./libiberty.a \
  ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o
checking whether sbrk is declared... ranlib ./libiberty.a
if [ x"-fPIC" != x ]; then \
  cd pic; \
  ar rc ./libiberty.a \
    ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi; \
if [ x"" != x ]; then \
  cd noasan; \
  ar rc ./libiberty.a \
    ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xasprintf.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o ./xvasprintf.o  ./setproctitle.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi
make[1]: Leaving directory '/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/gcc-5.2.0/build.aarch64-linux.aarch64-unknown-linux/libiberty'
yes
checking whether abort is declared... yes
checking whether atof is declared... yes
checking whether getcwd is declared... yes
checking whether getwd is declared... yes
checking whether stpcpy is declared... yes
checking whether strnlen is declared... yes
checking whether strsignal is declared... yes
checking whether strstr is declared... yes
checking whether strverscmp is declared... yes
checking whether strtol is declared... yes
checking whether strtoul is declared... yes
checking whether strtoll is declared... yes
checking whether strtoull is declared... yes
checking whether errno is declared... yes
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking whether vasprintf is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether calloc is declared... yes
checking whether free is declared... yes
checking whether basename is declared... yes
checking whether getopt is declared... no
checking whether clock is declared... yes
checking whether getpagesize is declared... yes
checking whether ffs is declared... yes
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 fgetc_unlocked is declared... yes
checking whether fgets_unlocked is declared... yes
checking whether fileno_unlocked is declared... yes
checking whether fprintf_unlocked is declared... no
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 getchar_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether getrlimit is declared... yes
checking whether setrlimit is declared... yes
checking whether getrusage is declared... yes
checking whether ldgetname is declared... no
checking whether times is declared... yes
checking whether sigaltstack is declared... yes
checking whether madvise is declared... yes
checking for struct tms... yes
checking for clock_t... yes
checking for F_SETLKW... yes
checking if mkdir takes one argument... no
Using `/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/aarch64/aarch64.c' for machine-specific logic.
Using `/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/aarch64/aarch64.md' as machine description file.
Using the following target machine macro files:
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/aarch64/biarchlp64.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/aarch64/aarch64.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/dbxelf.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/elfos.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/gnu-user.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/linux.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/glibc-stdint.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/aarch64/aarch64-elf.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/aarch64/aarch64-linux.h
	/home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work-shared/gcc-5.2.0-r0/gcc-5.2.0/gcc/config/initfini-array.h
Using host-linux.o for host machine hooks.
checking for __cxa_atexit... yes
checking whether NLS is requested... no
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc ... ld 
checking if the linker (ld ) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for ld  option to reload object files... -r
checking for aarch64-linux-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for aarch64-linux-ar... (cached) ar
checking for aarch64-linux-strip... strip
checking for aarch64-linux-ranlib... (cached) ranlib
checking command to parse nm output from gcc  object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc  supports -fno-rtti -fno-exceptions... no
checking for gcc  option to produce PIC... -fPIC -DPIC
checking if gcc  PIC flag -fPIC -DPIC works... yes
checking if gcc  static flag -static works... yes
checking if gcc  supports -c -o file.o... yes
checking if gcc  supports -c -o file.o... (cached) yes
checking whether the gcc  linker (ld ) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++  -E
checking for ld used by g++ ... ld 
checking if the linker (ld ) is GNU ld... yes
checking whether the g++  linker (ld ) supports shared libraries... yes
checking for g++  option to produce PIC... -fPIC -DPIC
checking if g++  PIC flag -fPIC -DPIC works... yes
checking if g++  static flag -static works... yes
checking if g++  supports -c -o file.o... yes
checking if g++  supports -c -o file.o... (cached) yes
checking whether the g++  linker (ld ) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for as... /usr/bin/as
checking what assembler to use... /usr/bin/as
checking for ld... /usr/bin/ld
checking whether we are using gold... no
checking what linker to use... /usr/bin/ld
checking for nm... /usr/bin/nm
checking what nm to use... /usr/bin/nm
checking for objdump... /usr/bin/objdump
checking what objdump to use... /usr/bin/objdump
checking for readelf... /usr/bin/readelf
checking what readelf to use... /usr/bin/readelf
checking assembler flags...  
checking assembler for .balign and .p2align... yes
checking assembler for .p2align with maximum skip... yes
checking assembler for .literal16... no
checking assembler for working .subsection -1... yes
checking assembler for .weak... yes
checking assembler for .weakref... yes
checking assembler for .nsubspa comdat... no
checking assembler for .hidden... yes
checking linker for .hidden support... yes
checking linker read-only and read-write section mixing... read-write
checking for .preinit_array/.init_array/.fini_array support... yes
checking assembler for .sleb128 and .uleb128... yes
checking assembler for cfi directives... yes
checking assembler for working cfi advance... yes
checking assembler for cfi personality directive... yes
checking assembler for cfi sections directive... yes
checking assembler for eh_frame optimization... yes
checking assembler for section merging support... yes
checking assembler for COMDAT group support (GNU as)... yes
checking assembler for line table discriminator support... yes
checking assembler for thread-local storage support... yes
checking linker -Bstatic/-Bdynamic option... yes
checking linker --demangle support... yes
checking linker plugin support... 0
checking assembler for -mabi option... yes
checking assembler for dwarf2 debug_line support... yes
checking assembler for buggy dwarf2 .file directive... no
checking assembler for --gdwarf2 option... yes
checking assembler for --gstabs option... yes
checking assembler for --debug-prefix-map option... yes
checking assembler for compressed debug sections... 1
checking assembler for .lcomm with alignment... no
checking for target glibc version... 0.0
checking assembler for gnu_unique_object... yes
checking assembler for tolerance to line number 0... yes
checking linker PT_GNU_EH_FRAME support... yes
checking linker CIEv3 in .eh_frame support... yes
checking linker position independent executable support... yes
checking linker PIE support with copy reloc... no
checking linker EH-compatible garbage collection of sections... yes
checking linker EH garbage collection of sections bug... no
checking linker for compressed debug sections... 1
checking linker --as-needed support... yes
checking linker mapfile support for clearing hardware capabilities... no
checking linker --build-id support... yes
checking linker *_sol2 emulation support... no
checking linker --sysroot support... yes
checking __stack_chk_fail in target C library... no
checking sys/sdt.h in the target C library... no
checking dl_iterate_phdr in target C library... unknown
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to avoid linking multiple front-ends at once... no
Links are now set up to build a native compiler for aarch64-unknown-linux-gnu.
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating as
config.status: creating collect-ld
config.status: creating nm
config.status: creating Makefile
config.status: creating ada/gcc-interface/Makefile
config.status: creating ada/Makefile
config.status: creating auto-host.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gccdepdir commands
mkdir -p -- build/.deps
mkdir -p -- ada/.deps
mkdir -p -- c/.deps
mkdir -p -- cp/.deps
mkdir -p -- fortran/.deps
mkdir -p -- go/.deps
mkdir -p -- java/.deps
mkdir -p -- jit/.deps
mkdir -p -- lto/.deps
mkdir -p -- objc/.deps
mkdir -p -- objcp/.deps
mkdir -p -- c-family/.deps
mkdir -p -- common/.deps
config.status: executing default commands
ERROR: oe_runmake failed
ERROR: Function failed: do_compile (log file is located at /home/builder/BUILD/freedesktop-sdk-base/build/aarch64/tmp-glibc/work/aarch64-linux/gcc-cross-initial-aarch64/5.2.0-r0/temp/log.do_compile.858)

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

* Re: [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch
  2016-04-26 16:34       ` Khem Raj
@ 2016-04-27 21:49         ` Tristan Van Berkom
  0 siblings, 0 replies; 9+ messages in thread
From: Tristan Van Berkom @ 2016-04-27 21:49 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core

On Tue, 2016-04-26 at 09:34 -0700, Khem Raj wrote:
> > On Apr 26, 2016, at 9:31 AM, Tristan Van Berkom <tristan.vanberkom@
> > codethink.co.uk> wrote:
> > 
> > On Mon, 2016-04-25 at 13:55 -0700, Khem Raj wrote:
> > > > On Apr 25, 2016, at 1:44 PM, Tristan Van Berkom
> > > > <tristan.vanberkom@
> > > > codethink.co.uk> wrote:
> > > > 
> > > > We fail to build webkit on aarch64 due to this binutils bug:
> > > > 
> > > >   https://sourceware.org/bugzilla/show_bug.cgi?id=19353
> > > > 
> > > > Applying patch which fixes this, stripped out changelog entry
> > > > from patch to make it apply without error.
> > > 
> > > 
> > > which branch are you proposing this for?
> > > we use 2.26 on master
> > 
> > We are using the jethro branch, sorry for leaving out that detail.
> > 
> 
> OK, add [jethro] to patch subject line then, so it gets attention of
> release maintainers.

Thanks for your guidance.

I've re-submitted this one to the list with [jethro] in the subject
line (this one is obviously jethro specific), I'm not sure if the other
two patches I sent apply to master at all - I will try to at least
verify if either of those issues are fixed in master.

Cheers,
    -Tristan



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

end of thread, other threads:[~2016-04-27 21:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-25 20:44 [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc Tristan Van Berkom
2016-04-25 20:44 ` [PATCH 3/4] Backporting binutils bug fix to the 2.25 branch Tristan Van Berkom
2016-04-25 20:55   ` Khem Raj
2016-04-26 16:31     ` Tristan Van Berkom
2016-04-26 16:34       ` Khem Raj
2016-04-27 21:49         ` Tristan Van Berkom
2016-04-26  8:41 ` [PATCH 1/4] gcc-cross-initial: Split all-gcc and configure-target-libgcc Richard Purdie
2016-04-26 16:52   ` Khem Raj
2016-04-26 21:19   ` Tristan Van Berkom

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox