public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions
@ 2019-12-11 19:56 gdb-buildbot
  2019-12-11 19:59 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-m64, branch master *** BREAKAGE *** gdb-buildbot
                   ` (10 more replies)
  0 siblings, 11 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-11 19:56 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 09c78487342254de6a4498f8b3aa1f3f1d508898 ***

commit 09c78487342254de6a4498f8b3aa1f3f1d508898
Author:     Alan Modra <amodra@gmail.com>
AuthorDate: Wed Dec 11 21:06:17 2019 +1030
Commit:     Alan Modra <amodra@gmail.com>
CommitDate: Wed Dec 11 21:14:19 2019 +1030

    Make bfd_get_8 return a bfd_vma like other bfd_get_* functions
    
    And similarly for bfd_get_signed_8.
    
    bfd/
            * libbfd.c (bfd_get_8): Return a bfd_vma.
            (bfd_get_signed_8): Return a bfd_signed_vma.
            * bfd-in2.h: Regenerate.
    binutils/
            * od-xcoff.c (dump_dumpx_core): Adjust for bfd_h_get_8 change.

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 65b8167a1c..bdf33b6783 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2019-12-11  Alan Modra  <amodra@gmail.com>
+
+	* libbfd.c (bfd_get_8): Return a bfd_vma.
+	(bfd_get_signed_8): Return a bfd_signed_vma.
+	* bfd-in2.h: Regenerate.
+
 2019-12-11  Alan Modra  <amodra@gmail.com>
 
 	* xtensa-modules.c (Field_* functions): Don't mask using shifts.
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h
index 44902fc8d0..6f3e41da37 100644
--- a/bfd/bfd-in2.h
+++ b/bfd/bfd-in2.h
@@ -654,9 +654,9 @@ void bfd_set_filename (bfd *abfd, char *filename);
 #define bfd_put_signed_8 \
   bfd_put_8
 #define bfd_get_8(abfd, ptr) \
-  (*(const unsigned char *) (ptr) & 0xff)
+  ((bfd_vma) *(const unsigned char *) (ptr) & 0xff)
 #define bfd_get_signed_8(abfd, ptr) \
-  (((*(const unsigned char *) (ptr) & 0xff) ^ 0x80) - 0x80)
+  ((((bfd_signed_vma) *(const unsigned char *) (ptr) & 0xff) ^ 0x80) - 0x80)
 
 #define bfd_put_16(abfd, val, ptr) \
   BFD_SEND (abfd, bfd_putx16, ((val),(ptr)))
diff --git a/bfd/libbfd.c b/bfd/libbfd.c
index 6ff7172a0f..3a3e523bcc 100644
--- a/bfd/libbfd.c
+++ b/bfd/libbfd.c
@@ -449,9 +449,9 @@ DESCRIPTION
 .#define bfd_put_signed_8 \
 .  bfd_put_8
 .#define bfd_get_8(abfd, ptr) \
-.  (*(const unsigned char *) (ptr) & 0xff)
+.  ((bfd_vma) *(const unsigned char *) (ptr) & 0xff)
 .#define bfd_get_signed_8(abfd, ptr) \
-.  (((*(const unsigned char *) (ptr) & 0xff) ^ 0x80) - 0x80)
+.  ((((bfd_signed_vma) *(const unsigned char *) (ptr) & 0xff) ^ 0x80) - 0x80)
 .
 .#define bfd_put_16(abfd, val, ptr) \
 .  BFD_SEND (abfd, bfd_putx16, ((val),(ptr)))
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index a194805352..80c7fc32dd 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2019-12-11  Alan Modra  <amodra@gmail.com>
+
+	* od-xcoff.c (dump_dumpx_core): Adjust for bfd_h_get_8 change.
+
 2019-12-10  Alan Modra  <amodra@gmail.com>
 
 	PR 24960
diff --git a/binutils/od-xcoff.c b/binutils/od-xcoff.c
index e5566bc9a7..7eb0c297c5 100644
--- a/binutils/od-xcoff.c
+++ b/binutils/od-xcoff.c
@@ -1680,8 +1680,10 @@ dump_dumpx_core (bfd *abfd, struct external_core_dumpx *hdr)
 {
   if (options[OPT_FILE_HEADER].selected)
     {
-      printf ("  signal:     %u\n", bfd_h_get_8 (abfd, hdr->c_signo));
-      printf ("  flags:      0x%02x\n", bfd_h_get_8 (abfd, hdr->c_flag));
+      printf ("  signal:     %u\n",
+	      (unsigned) bfd_h_get_8 (abfd, hdr->c_signo));
+      printf ("  flags:      0x%02x\n",
+	      (unsigned) bfd_h_get_8 (abfd, hdr->c_flag));
       printf ("  entries:    %u\n",
 	      (unsigned) bfd_h_get_16 (abfd, hdr->c_entries));
 #ifdef BFD64


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-m64, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
@ 2019-12-11 19:59 ` gdb-buildbot
  2019-12-11 20:04 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-11 19:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/8/builds/1379

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[2]: Entering directory '/work/ubuntu-aarch64-m64/build/gdb'
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs arch/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs cli/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs mi/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs gdbsupport/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs guile/.deps
mkdir -p -- mi/.deps
mkdir -p -- cli/.deps
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
mkdir -p -- compile/.deps
mkdir -p -- tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
mkdir -p -- unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- guile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
  LEX    ada-lex.c
mkdir -p -- python/.deps
  YACC   ada-exp.c
mkdir -p -- target/.deps
mkdir -p -- nat/.deps
  YACC   c-exp.c
  YACC   cp-name-parser.c
  YACC   d-exp.c
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
/work/ubuntu-aarch64-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr]
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
  CXX    findcmd.o
  CXX    findvar.o
  CXX    fork-child.o
  CXX    frame-base.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function 'void fbsd_core_info_proc_status(gdbarch*)':
../../binutils-gdb/gdb/fbsd-tdep.c:1436:57: error: format '%d' expects argument of type 'int', but argument 2 has type 'bfd_signed_vma {aka long int}' [-Werror=format=]
      bfd_get_signed_8 (core_bfd, descdata + kp->ki_nice));
                                                         ^
  CXX    frame-unwind.o
  CXX    frame.o
  CXX    frv-linux-tdep.o
  CXX    frv-tdep.o
cc1plus: all warnings being treated as errors
  CXX    ft32-tdep.o
Makefile:1660: recipe for target 'fbsd-tdep.o' failed
make[2]: *** [fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=166.444801
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
  2019-12-11 19:59 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-m64, branch master *** BREAKAGE *** gdb-buildbot
@ 2019-12-11 20:04 ` gdb-buildbot
  2019-12-11 20:08 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-11 20:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1371

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking whether this system has an arbitrary file name length limit... yes
checking for closedir... yes
checking for d_ino member in directory struct... yes
checking for d_type member in directory struct... yes
checking whether alphasort is declared without a macro... yes
checking whether closedir is declared without a macro... yes
checking whether dirfd is declared without a macro... yes
checking whether fdopendir is declared without a macro... yes
checking whether opendir is declared without a macro... yes
checking whether readdir is declared without a macro... yes
checking whether rewinddir is declared without a macro... yes
checking whether scandir is declared without a macro... yes
checking for dirfd... yes
checking whether dirfd is declared... (cached) yes
checking whether dirfd is a macro... no
checking whether // is distinct from /... (cached) no
checking whether dup works... yes
checking whether dup2 works... yes
checking for error_at_line... yes
checking whether fcntl handles F_DUPFD correctly... yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking whether fcntl is declared without a macro... yes
checking whether openat is declared without a macro... yes
checking whether fdopendir is declared... (cached) yes
checking whether fdopendir works... yes
checking for flexible array member... yes
checking whether conversion from 'int' to 'long double' works... yes
checking for working GNU fnmatch... yes
checking whether frexp works... yes
checking whether frexpl is declared... yes
checking whether frexpl() can be used without linking with libm... yes
checking whether frexpl works... yes
checking whether fstatat (..., 0) works... yes
checking whether getcwd handles long file names properly... yes
checking for getpagesize... yes
checking whether getcwd aborts when 4k < cwd_length < 16k... no
checking whether getdtablesize works... yes
checking whether getlogin_r works with small buffers... yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether __argv is declared... no
checking whether gettimeofday clobbers localtime buffer... no
checking for gettimeofday with POSIX signature... almost
checking glob.h usability... yes
checking glob.h presence... yes
checking for glob.h... yes
checking for GNU glob interface version 1... no
checking for library containing inet_ntop... none required
checking whether inet_ntop is declared... (cached) yes
checking whether INT32_MAX < INTMAX_MAX... yes
checking whether INT64_MAX == LONG_MAX... yes
checking whether UINT32_MAX < UINTMAX_MAX... yes
checking whether UINT64_MAX == ULONG_MAX... yes
checking whether isnan(double) can be used without linking with libm... yes
checking whether isnan(long double) can be used without linking with libm... yes
checking whether isnanl works... yes
checking for pthread_rwlock_t... yes
checking whether NAN macro works... yes
checking whether HUGE_VAL works... yes
checking whether acosf is declared without a macro... yes
checking whether acosl is declared without a macro... yes
checking whether asinf is declared without a macro... yes
checking whether asinl is declared without a macro... yes
checking whether atanf is declared without a macro... yes
checking whether atanl is declared without a macro... yes
checking whether cbrt is declared without a macro... yes
checking whether cbrtf is declared without a macro... yes
checking whether cbrtl is declared without a macro... yes
checking whether ceilf is declared without a macro... yes
checking whether ceill is declared without a macro... yes
checking whether copysign is declared without a macro... yes
checking whether copysignf is declared without a macro... yes
checking whether copysignl is declared without a macro... yes
checking whether cosf is declared without a macro... yes
checking whether cosl is declared without a macro... yes
checking whether coshf is declared without a macro... yes
checking whether expf is declared without a macro... yes
checking whether expl is declared without a macro... yes
checking whether exp2 is declared without a macro... yes
checking whether exp2f is declared without a macro... yes
checking whether exp2l is declared without a macro... yes
checking whether expm1 is declared without a macro... yes
checking whether expm1f is declared without a macro... yes
checking whether expm1l is declared without a macro... yes
checking whether fabsf is declared without a macro... yes
checking whether fabsl is declared without a macro... yes
checking whether floorf is declared without a macro... yes
checking whether floorl is declared without a macro... yes
checking whether fma is declared without a macro... yes
checking whether fmaf is declared without a macro... yes
checking whether fmal is declared without a macro... yes
checking whether fmod is declared without a macro... yes
checking whether fmodf is declared without a macro... yes
checking whether fmodl is declared without a macro... yes
checking whether frexpf is declared without a macro... yes
checking whether frexpl is declared without a macro... yes
checking whether hypotf is declared without a macro... yes
checking whether hypotl is declared without a macro... yes
checking whether ilogb is declared without a macro... yes
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
  2019-12-11 19:59 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-m64, branch master *** BREAKAGE *** gdb-buildbot
  2019-12-11 20:04 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-11 20:08 ` gdb-buildbot
  2019-12-12 11:04 ` *** COMPILATION FAILED *** Failures on Fedora-i686, " gdb-buildbot
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-11 20:08 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/19/builds/1402

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[2]: Entering directory '/work/ubuntu-aarch64-native-gdbserver-m64/build/gdb'
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs arch/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs cli/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs mi/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs gdbsupport/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs guile/.deps
mkdir -p -- cli/.deps
mkdir -p -- arch/.deps
mkdir -p -- mi/.deps
mkdir -p -- gdbsupport/.deps
mkdir -p -- compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
mkdir -p -- tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
mkdir -p -- guile/.deps
  LEX    ada-lex.c
mkdir -p -- python/.deps
  YACC   ada-exp.c
mkdir -p -- target/.deps
mkdir -p -- nat/.deps
  YACC   c-exp.c
  YACC   cp-name-parser.c
  YACC   d-exp.c
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
/work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr]
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
  CXX    findcmd.o
  CXX    findvar.o
  CXX    fork-child.o
  CXX    frame-base.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function 'void fbsd_core_info_proc_status(gdbarch*)':
../../binutils-gdb/gdb/fbsd-tdep.c:1436:57: error: format '%d' expects argument of type 'int', but argument 2 has type 'bfd_signed_vma {aka long int}' [-Werror=format=]
      bfd_get_signed_8 (core_bfd, descdata + kp->ki_nice));
                                                         ^
  CXX    frame-unwind.o
  CXX    frame.o
  CXX    frv-linux-tdep.o
  CXX    frv-tdep.o
  CXX    ft32-tdep.o
cc1plus: all warnings being treated as errors
Makefile:1660: recipe for target 'fbsd-tdep.o' failed
make[2]: *** [fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=156.552756
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-i686, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-12-11 20:08 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2019-12-12 11:04 ` gdb-buildbot
  2019-12-12 11:09 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 11:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/1508

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    c-varobj.o
  CXX    charset.o
  CXX    cli-out.o
  CXX    cli/cli-cmds.o
  CXX    cli/cli-decode.o
  CXX    cli/cli-dump.o
  CXX    cli/cli-interp.o
  CXX    cli/cli-logging.o
  CXX    cli/cli-option.o
  CXX    cli/cli-script.o
  CXX    cli/cli-setshow.o
  CXX    cli/cli-style.o
  CXX    cli/cli-utils.o
  CXX    coff-pe-read.o
  CXX    coffread.o
  CXX    compile/compile-c-support.o
  CXX    compile/compile-c-symbols.o
  CXX    compile/compile-c-types.o
  CXX    compile/compile-cplus-symbols.o
  CXX    compile/compile-cplus-types.o
  CXX    compile/compile-loc2c.o
  CXX    compile/compile-object-load.o
  CXX    compile/compile-object-run.o
  CXX    compile/compile.o
  CXX    complaints.o
  CXX    completer.o
  CXX    continuations.o
  CXX    copying.o
  CXX    corefile.o
  CXX    corelow.o
  CXX    cp-abi.o
  YACC   cp-name-parser.c
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-i686/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: POSIX Yacc does not support %pure-parser [-Wyacc]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-i686/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: deprecated directive, use %define api.pure [-Wdeprecated]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-i686/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  CXX    cp-namespace.o
  CXX    cp-support.o
  CXX    cp-valprint.o
  CXX    cris-linux-tdep.o
  CXX    cris-tdep.o
  CXX    csky-linux-tdep.o
  CXX    csky-tdep.o
  CXX    ctfread.o
  YACC   d-exp.c
  CXX    d-lang.o
  CXX    d-namespace.o
  CXX    d-valprint.o
  CXX    dbxread.o
  CXX    dcache.o
  CXX    debug.o
  CXX    dicos-tdep.o
  CXX    dictionary.o
  CXX    disasm-selftests.o
  CXX    disasm.o
  CXX    dtrace-probe.o
  CXX    dummy-frame.o
  CXX    dwarf-index-cache.o
  CXX    dwarf-index-common.o
  CXX    dwarf-index-write.o
  CXX    dwarf2-frame-tailcall.o
  CXX    dwarf2-frame.o
  CXX    dwarf2expr.o
  CXX    dwarf2loc.o
  CXX    dwarf2read.o
  CXX    elfread.o
  CXX    eval.o
  CXX    event-loop.o
  CXX    event-top.o
  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function void fbsd_core_info_proc_status(gdbarch*):
../../binutils-gdb/gdb/fbsd-tdep.c:1435:36: error: format %d expects argument of type int, but argument 2 has type long int [-Werror=format=]
 1435 |   printf_filtered ("'nice' value: %d\n",
      |                                   ~^
      |                                    |
      |                                    int
      |                                   %ld
  CXX    filesystem.o
cc1plus: all warnings being treated as errors
make[2]: *** [Makefile:1660: fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-i686/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-i686/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=163.739903
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-12-12 11:04 ` *** COMPILATION FAILED *** Failures on Fedora-i686, " gdb-buildbot
@ 2019-12-12 11:09 ` gdb-buildbot
  2019-12-12 11:11 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 11:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/20/builds/1453

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    c-valprint.o
  CXX    c-varobj.o
  CXX    charset.o
  CXX    cli-out.o
  CXX    cli/cli-cmds.o
  CXX    cli/cli-decode.o
  CXX    cli/cli-dump.o
  CXX    cli/cli-interp.o
  CXX    cli/cli-logging.o
  CXX    cli/cli-option.o
  CXX    cli/cli-script.o
  CXX    cli/cli-setshow.o
  CXX    cli/cli-style.o
  CXX    cli/cli-utils.o
  CXX    coff-pe-read.o
  CXX    coffread.o
  CXX    compile/compile-c-support.o
  CXX    compile/compile-c-symbols.o
  CXX    compile/compile-c-types.o
  CXX    compile/compile-cplus-symbols.o
  CXX    compile/compile-cplus-types.o
  CXX    compile/compile-loc2c.o
  CXX    compile/compile-object-load.o
  CXX    compile/compile-object-run.o
  CXX    compile/compile.o
  CXX    complaints.o
  CXX    completer.o
  CXX    continuations.o
  CXX    copying.o
  CXX    corefile.o
  CXX    corelow.o
  CXX    cp-abi.o
  YACC   cp-name-parser.c
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-cc-with-index/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: POSIX Yacc does not support %pure-parser [-Wyacc]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-cc-with-index/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: deprecated directive, use %define api.pure [-Wdeprecated]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-cc-with-index/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  CXX    cp-namespace.o
  CXX    cp-support.o
  CXX    cp-valprint.o
  CXX    cris-linux-tdep.o
  CXX    cris-tdep.o
  CXX    csky-linux-tdep.o
  CXX    csky-tdep.o
  CXX    ctfread.o
  YACC   d-exp.c
  CXX    d-lang.o
  CXX    d-namespace.o
  CXX    d-valprint.o
  CXX    dbxread.o
  CXX    dcache.o
  CXX    debug.o
  CXX    dicos-tdep.o
  CXX    dictionary.o
  CXX    disasm-selftests.o
  CXX    disasm.o
  CXX    dtrace-probe.o
  CXX    dummy-frame.o
  CXX    dwarf-index-cache.o
  CXX    dwarf-index-common.o
  CXX    dwarf-index-write.o
  CXX    dwarf2-frame-tailcall.o
  CXX    dwarf2-frame.o
  CXX    dwarf2expr.o
  CXX    dwarf2loc.o
  CXX    dwarf2read.o
  CXX    elfread.o
  CXX    eval.o
  CXX    event-loop.o
  CXX    event-top.o
  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function void fbsd_core_info_proc_status(gdbarch*):
../../binutils-gdb/gdb/fbsd-tdep.c:1435:36: error: format %d expects argument of type int, but argument 2 has type bfd_signed_vma {aka long int} [-Werror=format=]
 1435 |   printf_filtered ("'nice' value: %d\n",
      |                                   ~^
      |                                    |
      |                                    int
      |                                   %ld
  CXX    filename-seen-cache.o
cc1plus: all warnings being treated as errors
make[2]: *** [Makefile:1660: fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-cc-with-index/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-cc-with-index/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=173.136645
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-12-12 11:09 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-12-12 11:11 ` gdb-buildbot
  2019-12-12 11:14 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 11:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/17/builds/1507

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    c-varobj.o
  CXX    charset.o
  CXX    cli-out.o
  CXX    cli/cli-cmds.o
  CXX    cli/cli-decode.o
  CXX    cli/cli-dump.o
  CXX    cli/cli-interp.o
  CXX    cli/cli-logging.o
  CXX    cli/cli-option.o
  CXX    cli/cli-script.o
  CXX    cli/cli-setshow.o
  CXX    cli/cli-style.o
  CXX    cli/cli-utils.o
  CXX    coff-pe-read.o
  CXX    coffread.o
  CXX    compile/compile-c-support.o
  CXX    compile/compile-c-symbols.o
  CXX    compile/compile-c-types.o
  CXX    compile/compile-cplus-symbols.o
  CXX    compile/compile-cplus-types.o
  CXX    compile/compile-loc2c.o
  CXX    compile/compile-object-load.o
  CXX    compile/compile-object-run.o
  CXX    compile/compile.o
  CXX    complaints.o
  CXX    completer.o
  CXX    continuations.o
  CXX    copying.o
  CXX    corefile.o
  CXX    corelow.o
  CXX    cp-abi.o
  YACC   cp-name-parser.c
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: POSIX Yacc does not support %pure-parser [-Wyacc]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: deprecated directive, use %define api.pure [-Wdeprecated]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  CXX    cp-namespace.o
  CXX    cp-support.o
  CXX    cp-valprint.o
  CXX    cris-linux-tdep.o
  CXX    cris-tdep.o
  CXX    csky-linux-tdep.o
  CXX    csky-tdep.o
  CXX    ctfread.o
  YACC   d-exp.c
  CXX    d-lang.o
  CXX    d-namespace.o
  CXX    d-valprint.o
  CXX    dbxread.o
  CXX    dcache.o
  CXX    debug.o
  CXX    dicos-tdep.o
  CXX    dictionary.o
  CXX    disasm-selftests.o
  CXX    disasm.o
  CXX    dtrace-probe.o
  CXX    dummy-frame.o
  CXX    dwarf-index-cache.o
  CXX    dwarf-index-common.o
  CXX    dwarf-index-write.o
  CXX    dwarf2-frame-tailcall.o
  CXX    dwarf2-frame.o
  CXX    dwarf2expr.o
  CXX    dwarf2loc.o
  CXX    dwarf2read.o
  CXX    elfread.o
  CXX    eval.o
  CXX    event-loop.o
  CXX    event-top.o
  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function void fbsd_core_info_proc_status(gdbarch*):
../../binutils-gdb/gdb/fbsd-tdep.c:1435:36: error: format %d expects argument of type int, but argument 2 has type bfd_signed_vma {aka long int} [-Werror=format=]
 1435 |   printf_filtered ("'nice' value: %d\n",
      |                                   ~^
      |                                    |
      |                                    int
      |                                   %ld
  CXX    filesystem.o
cc1plus: all warnings being treated as errors
make[2]: *** [Makefile:1660: fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=177.412435
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
                   ` (5 preceding siblings ...)
  2019-12-12 11:11 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-12-12 11:14 ` gdb-buildbot
  2019-12-12 11:18 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 11:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-extended-gdbserver-m32

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/4/builds/1505

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    c-varobj.o
  CXX    charset.o
  CXX    cli-out.o
  CXX    cli/cli-cmds.o
  CXX    cli/cli-decode.o
  CXX    cli/cli-dump.o
  CXX    cli/cli-interp.o
  CXX    cli/cli-logging.o
  CXX    cli/cli-option.o
  CXX    cli/cli-script.o
  CXX    cli/cli-setshow.o
  CXX    cli/cli-style.o
  CXX    cli/cli-utils.o
  CXX    coff-pe-read.o
  CXX    coffread.o
  CXX    compile/compile-c-support.o
  CXX    compile/compile-c-symbols.o
  CXX    compile/compile-c-types.o
  CXX    compile/compile-cplus-symbols.o
  CXX    compile/compile-cplus-types.o
  CXX    compile/compile-loc2c.o
  CXX    compile/compile-object-load.o
  CXX    compile/compile-object-run.o
  CXX    compile/compile.o
  CXX    complaints.o
  CXX    completer.o
  CXX    continuations.o
  CXX    copying.o
  CXX    corefile.o
  CXX    corelow.o
  CXX    cp-abi.o
  YACC   cp-name-parser.c
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: POSIX Yacc does not support %pure-parser [-Wyacc]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: deprecated directive, use %define api.pure [-Wdeprecated]
   34 | %pure-parser
      | ^~~~~~~~~~~~
  CXX    cp-namespace.o
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  CXX    cp-support.o
  CXX    cp-valprint.o
  CXX    cris-linux-tdep.o
  CXX    cris-tdep.o
  CXX    csky-linux-tdep.o
  CXX    csky-tdep.o
  CXX    ctfread.o
  YACC   d-exp.c
  CXX    d-lang.o
  CXX    d-namespace.o
  CXX    d-valprint.o
  CXX    dbxread.o
  CXX    dcache.o
  CXX    debug.o
  CXX    dicos-tdep.o
  CXX    dictionary.o
  CXX    disasm-selftests.o
  CXX    disasm.o
  CXX    dtrace-probe.o
  CXX    dummy-frame.o
  CXX    dwarf-index-cache.o
  CXX    dwarf-index-common.o
  CXX    dwarf-index-write.o
  CXX    dwarf2-frame-tailcall.o
  CXX    dwarf2-frame.o
  CXX    dwarf2expr.o
  CXX    dwarf2loc.o
  CXX    dwarf2read.o
  CXX    elfread.o
  CXX    eval.o
  CXX    event-loop.o
  CXX    event-top.o
  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function void fbsd_core_info_proc_status(gdbarch*):
../../binutils-gdb/gdb/fbsd-tdep.c:1435:36: error: format %d expects argument of type int, but argument 2 has type bfd_signed_vma {aka long int} [-Werror=format=]
 1435 |   printf_filtered ("'nice' value: %d\n",
      |                                   ~^
      |                                    |
      |                                    int
      |                                   %ld
  CXX    filesystem.o
cc1plus: all warnings being treated as errors
make[2]: *** [Makefile:1660: fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-extended-gdbserver-m32/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-extended-gdbserver-m32/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=184.266790
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
                   ` (6 preceding siblings ...)
  2019-12-12 11:14 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-12-12 11:18 ` gdb-buildbot
  2019-12-12 11:24 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 11:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m64

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/3/builds/1565

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    c-varobj.o
  CXX    charset.o
  CXX    cli-out.o
  CXX    cli/cli-cmds.o
  CXX    cli/cli-decode.o
  CXX    cli/cli-dump.o
  CXX    cli/cli-interp.o
  CXX    cli/cli-logging.o
  CXX    cli/cli-option.o
  CXX    cli/cli-script.o
  CXX    cli/cli-setshow.o
  CXX    cli/cli-style.o
  CXX    cli/cli-utils.o
  CXX    coff-pe-read.o
  CXX    coffread.o
  CXX    compile/compile-c-support.o
  CXX    compile/compile-c-symbols.o
  CXX    compile/compile-c-types.o
  CXX    compile/compile-cplus-symbols.o
  CXX    compile/compile-cplus-types.o
  CXX    compile/compile-loc2c.o
  CXX    compile/compile-object-load.o
  CXX    compile/compile-object-run.o
  CXX    compile/compile.o
  CXX    complaints.o
  CXX    completer.o
  CXX    continuations.o
  CXX    copying.o
  CXX    corefile.o
  CXX    corelow.o
  CXX    cp-abi.o
  YACC   cp-name-parser.c
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: POSIX Yacc does not support %pure-parser [-Wyacc]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: deprecated directive, use %define api.pure [-Wdeprecated]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  CXX    cp-namespace.o
  CXX    cp-support.o
  CXX    cp-valprint.o
  CXX    cris-linux-tdep.o
  CXX    cris-tdep.o
  CXX    csky-linux-tdep.o
  CXX    csky-tdep.o
  CXX    ctfread.o
  YACC   d-exp.c
  CXX    d-lang.o
  CXX    d-namespace.o
  CXX    d-valprint.o
  CXX    dbxread.o
  CXX    dcache.o
  CXX    debug.o
  CXX    dicos-tdep.o
  CXX    dictionary.o
  CXX    disasm-selftests.o
  CXX    disasm.o
  CXX    dtrace-probe.o
  CXX    dummy-frame.o
  CXX    dwarf-index-cache.o
  CXX    dwarf-index-common.o
  CXX    dwarf-index-write.o
  CXX    dwarf2-frame-tailcall.o
  CXX    dwarf2-frame.o
  CXX    dwarf2expr.o
  CXX    dwarf2loc.o
  CXX    dwarf2read.o
  CXX    elfread.o
  CXX    eval.o
  CXX    event-loop.o
  CXX    event-top.o
  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function void fbsd_core_info_proc_status(gdbarch*):
../../binutils-gdb/gdb/fbsd-tdep.c:1435:36: error: format %d expects argument of type int, but argument 2 has type bfd_signed_vma {aka long int} [-Werror=format=]
 1435 |   printf_filtered ("'nice' value: %d\n",
      |                                   ~^
      |                                    |
      |                                    int
      |                                   %ld
  CXX    filesystem.o
cc1plus: all warnings being treated as errors
make[2]: *** [Makefile:1660: fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=179.785007
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
                   ` (7 preceding siblings ...)
  2019-12-12 11:18 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-12-12 11:24 ` gdb-buildbot
  2019-12-12 11:39 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2019-12-12 11:41 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 11:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-extended-gdbserver-m64

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/2/builds/1505

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    c-varobj.o
  CXX    charset.o
  CXX    cli-out.o
  CXX    cli/cli-cmds.o
  CXX    cli/cli-decode.o
  CXX    cli/cli-dump.o
  CXX    cli/cli-interp.o
  CXX    cli/cli-logging.o
  CXX    cli/cli-option.o
  CXX    cli/cli-script.o
  CXX    cli/cli-setshow.o
  CXX    cli/cli-style.o
  CXX    cli/cli-utils.o
  CXX    coff-pe-read.o
  CXX    coffread.o
  CXX    compile/compile-c-support.o
  CXX    compile/compile-c-symbols.o
  CXX    compile/compile-c-types.o
  CXX    compile/compile-cplus-symbols.o
  CXX    compile/compile-cplus-types.o
  CXX    compile/compile-loc2c.o
  CXX    compile/compile-object-load.o
  CXX    compile/compile-object-run.o
  CXX    compile/compile.o
  CXX    complaints.o
  CXX    completer.o
  CXX    continuations.o
  CXX    copying.o
  CXX    corefile.o
  CXX    corelow.o
  CXX    cp-abi.o
  YACC   cp-name-parser.c
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: POSIX Yacc does not support %pure-parser [-Wyacc]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: deprecated directive, use %define api.pure [-Wdeprecated]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  CXX    cp-namespace.o
  CXX    cp-support.o
  CXX    cp-valprint.o
  CXX    cris-linux-tdep.o
  CXX    cris-tdep.o
  CXX    csky-linux-tdep.o
  CXX    csky-tdep.o
  CXX    ctfread.o
  YACC   d-exp.c
  CXX    d-lang.o
  CXX    d-namespace.o
  CXX    d-valprint.o
  CXX    dbxread.o
  CXX    dcache.o
  CXX    debug.o
  CXX    dicos-tdep.o
  CXX    dictionary.o
  CXX    disasm-selftests.o
  CXX    disasm.o
  CXX    dtrace-probe.o
  CXX    dummy-frame.o
  CXX    dwarf-index-cache.o
  CXX    dwarf-index-common.o
  CXX    dwarf-index-write.o
  CXX    dwarf2-frame-tailcall.o
  CXX    dwarf2-frame.o
  CXX    dwarf2expr.o
  CXX    dwarf2loc.o
  CXX    dwarf2read.o
  CXX    elfread.o
  CXX    eval.o
  CXX    event-loop.o
  CXX    event-top.o
  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function void fbsd_core_info_proc_status(gdbarch*):
../../binutils-gdb/gdb/fbsd-tdep.c:1435:36: error: format %d expects argument of type int, but argument 2 has type bfd_signed_vma {aka long int} [-Werror=format=]
 1435 |   printf_filtered ("'nice' value: %d\n",
      |                                   ~^
      |                                    |
      |                                    int
      |                                   %ld
  CXX    filesystem.o
cc1plus: all warnings being treated as errors
make[2]: *** [Makefile:1660: fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=180.746059
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
                   ` (8 preceding siblings ...)
  2019-12-12 11:24 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-12 11:39 ` gdb-buildbot
  2019-12-12 11:41 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 11:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/24/builds/1500

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[2]: Entering directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-gdbserver-m32/build/gdb'
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs arch/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs cli/.deps
mkdir -p -- cli/.deps
mkdir -p -- arch/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs mi/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs gdbsupport/.deps
mkdir -p -- gdbsupport/.deps
mkdir -p -- mi/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs compile/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs tui/.deps
mkdir -p -- compile/.deps
mkdir -p -- tui/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs unittests/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs guile/.deps
mkdir -p -- unittests/.deps
mkdir -p -- guile/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- python/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
mkdir -p -- target/.deps
mkdir -p -- nat/.deps
  LEX    ada-lex.c
  YACC   ada-exp.c
  YACC   c-exp.c
/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-gdbserver-m32/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr]
/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-gdbserver-m32/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr]
  YACC   cp-name-parser.c
/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-gdbserver-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: POSIX Yacc does not support %pure-parser [-Wyacc]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-gdbserver-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: deprecated directive, use %define api.pure [-Wdeprecated]
   34 | %pure-parser
      | ^~~~~~~~~~~~
  CXX    cp-namespace.o
/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-gdbserver-m32/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  CXX    cp-support.o
  CXX    cp-valprint.o
  CXX    cris-linux-tdep.o
  CXX    cris-tdep.o
  CXX    csky-linux-tdep.o
  CXX    csky-tdep.o
  CXX    ctfread.o
  YACC   d-exp.c
  CXX    d-lang.o
  CXX    d-namespace.o
  CXX    d-valprint.o
  CXX    dbxread.o
  CXX    dcache.o
  CXX    debug.o
  CXX    dicos-tdep.o
  CXX    dictionary.o
  CXX    disasm-selftests.o
  CXX    disasm.o
  CXX    dtrace-probe.o
  CXX    dummy-frame.o
  CXX    dwarf-index-cache.o
  CXX    dwarf-index-common.o
  CXX    dwarf-index-write.o
  CXX    dwarf2-frame-tailcall.o
  CXX    dwarf2-frame.o
  CXX    dwarf2expr.o
  CXX    dwarf2loc.o
  CXX    dwarf2read.o
  CXX    elfread.o
  CXX    eval.o
  CXX    event-loop.o
  CXX    event-top.o
  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function void fbsd_core_info_proc_status(gdbarch*):
../../binutils-gdb/gdb/fbsd-tdep.c:1435:36: error: format %d expects argument of type int, but argument 2 has type bfd_signed_vma {aka long int} [-Werror=format=]
 1435 |   printf_filtered ("'nice' value: %d\n",
      |                                   ~^
      |                                    |
      |                                    int
      |                                   %ld
cc1plus: all warnings being treated as errors
make[2]: *** [Makefile:1660: fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-gdbserver-m32/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make: *** [Makefile:852: all] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-gdbserver-m32/build'
program finished with exit code 2
elapsedTime=247.675169
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
                   ` (9 preceding siblings ...)
  2019-12-12 11:39 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-12-12 11:41 ` gdb-buildbot
  10 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 11:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m64

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/22/builds/1503

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        09c78487342254de6a4498f8b3aa1f3f1d508898

Subject of commit:
        Make bfd_get_8 return a bfd_vma like other bfd_get_* functions

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[2]: Entering directory '/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-gdbserver/build/gdb'
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs arch/.deps
mkdir -p -- arch/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs cli/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs mi/.deps
mkdir -p -- cli/.deps
mkdir -p -- mi/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs gdbsupport/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs compile/.deps
mkdir -p -- gdbsupport/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs tui/.deps
mkdir -p -- compile/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs unittests/.deps
mkdir -p -- tui/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs guile/.deps
mkdir -p -- unittests/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
mkdir -p -- guile/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- python/.deps
mkdir -p -- target/.deps
/bin/sh ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
  LEX    ada-lex.c
mkdir -p -- nat/.deps
  YACC   ada-exp.c
  YACC   c-exp.c
/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-gdbserver/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr]
/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-gdbserver/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr]
  YACC   cp-name-parser.c
  CXX    cp-namespace.o
/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-gdbserver/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: POSIX Yacc does not support %pure-parser [-Wyacc]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-gdbserver/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y:34.1-12: warning: deprecated directive, use %define api.pure [-Wdeprecated]
   34 | %pure-parser
      | ^~~~~~~~~~~~
/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-gdbserver/build/gdb/../../binutils-gdb/gdb/cp-name-parser.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  CXX    cp-support.o
  CXX    cp-valprint.o
  CXX    cris-linux-tdep.o
  CXX    cris-tdep.o
  CXX    csky-linux-tdep.o
  CXX    csky-tdep.o
  CXX    ctfread.o
  YACC   d-exp.c
  CXX    d-lang.o
  CXX    d-namespace.o
  CXX    d-valprint.o
  CXX    dbxread.o
  CXX    dcache.o
  CXX    debug.o
  CXX    dicos-tdep.o
  CXX    dictionary.o
  CXX    disasm-selftests.o
  CXX    disasm.o
  CXX    dtrace-probe.o
  CXX    dummy-frame.o
  CXX    dwarf-index-cache.o
  CXX    dwarf-index-common.o
  CXX    dwarf-index-write.o
  CXX    dwarf2-frame-tailcall.o
  CXX    dwarf2-frame.o
  CXX    dwarf2expr.o
  CXX    dwarf2loc.o
  CXX    dwarf2read.o
  CXX    elfread.o
  CXX    eval.o
  CXX    event-loop.o
  CXX    event-top.o
  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function void fbsd_core_info_proc_status(gdbarch*):
../../binutils-gdb/gdb/fbsd-tdep.c:1435:36: error: format %d expects argument of type int, but argument 2 has type bfd_signed_vma {aka long int} [-Werror=format=]
 1435 |   printf_filtered ("'nice' value: %d\n",
      |                                   ~^
      |                                    |
      |                                    int
      |                                   %ld
cc1plus: all warnings being treated as errors
make[2]: *** [Makefile:1660: fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-gdbserver/build/gdb'
make[1]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-gdbserver/build'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=244.244549
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-05-19 18:28 [binutils-gdb] gdb: fix off-by-one error in quirk_rust_enum gdb-buildbot
@ 2020-05-19 23:49 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-05-19 23:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2794

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        f408d82c7a140268c3b7be35970c96d8385b5902

Subject of commit:
        gdb: fix off-by-one error in quirk_rust_enum

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    python/py-utils.o
  CXX    python/py-value.o
  CXX    python/py-varobj.o
  CXX    python/py-xmethods.o
  CXX    python/python.o
  CXX    ravenscar-thread.o
  CXX    record-btrace.o
  CXX    record-full.o
  CXX    record.o
  CXX    regcache-dump.o
  CXX    regcache.o
  CXX    reggroups.o
  CXX    registry.o
  CXX    remote-fileio.o
  CXX    remote-notif.o
  CXX    remote.o
  CXX    reverse.o
  CXX    riscv-fbsd-tdep.o
  CXX    riscv-linux-tdep.o
  CXX    riscv-ravenscar-thread.o
  CXX    riscv-tdep.o
  CXX    rl78-tdep.o
  CXX    rs6000-aix-tdep.o
  CXX    rs6000-lynx178-tdep.o
  CXX    rs6000-tdep.o
  CXX    run-on-main-thread.o
  YACC   rust-exp.c
  CXX    rust-lang.o
  CXX    rx-tdep.o
  CXX    s12z-tdep.o
  CXX    s390-linux-tdep.o
  CXX    s390-tdep.o
  CXX    score-tdep.o
  CXX    selftest-arch.o
  CXX    sentinel-frame.o
  CXX    ser-base.o
  CXX    ser-event.o
  CXX    ser-pipe.o
  CXX    ser-tcp.o
  CXX    ser-uds.o
  CXX    ser-unix.o
  CXX    serial.o
  CXX    sh-linux-tdep.o
  CXX    sh-nbsd-tdep.o
  CXX    sh-tdep.o
  CXX    skip.o
  CXX    sol2-tdep.o
  CXX    solib-aix.o
  CXX    solib-darwin.o
  CXX    solib-dsbt.o
  CXX    solib-frv.o
  CXX    solib-svr4.o
  CXX    solib-target.o
  CXX    solib.o
  CXX    source-cache.o
  CXX    source.o
  CXX    sparc-linux-tdep.o
  CXX    sparc-nbsd-tdep.o
  CXX    sparc-obsd-tdep.o
  CXX    sparc-ravenscar-thread.o
  CXX    sparc-sol2-tdep.o
  CXX    sparc-tdep.o
  CXX    sparc64-fbsd-tdep.o
  CXX    sparc64-linux-tdep.o
  CXX    sparc64-nbsd-tdep.o
  CXX    sparc64-obsd-tdep.o
  CXX    sparc64-sol2-tdep.o
  CXX    sparc64-tdep.o
  CXX    stabsread.o
  CXX    stack.o
  CXX    stap-probe.o
  CXX    std-regs.o
  CXX    symfile-debug.o
  CXX    symfile-mem.o
  CXX    symfile.o
../../binutils-gdb/gdb/sparc64-tdep.c: In function 'int adi_tag_fd()':
../../binutils-gdb/gdb/sparc64-tdep.c:290:59: error: the address of 'target_errno' will never be NULL [-Werror=address]
                                           0, &target_errno);
                                                           ^
../../binutils-gdb/gdb/sparc64-tdep.c:290:59: error: too few arguments to function 'int target_fileio_open(inferior*, const char*, int, int, bool, int*)'
In file included from ../../binutils-gdb/gdb/exec.h:23:0,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/sparc64-tdep.c:26:
../../binutils-gdb/gdb/target.h:2143:12: note: declared here
 extern int target_fileio_open (struct inferior *inf,
            ^~~~~~~~~~~~~~~~~~
  CXX    symmisc.o
cc1plus: all warnings being treated as errors
Makefile:1609: recipe for target 'sparc64-tdep.o' failed
make[2]: *** [sparc64-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:10065: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:853: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=169.110172
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-05-19 17:51 [binutils-gdb] Make exec-file-mismatch compare build IDs gdb-buildbot
@ 2020-05-19 23:40 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-05-19 23:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2793

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        98c59b527b1472b87a9ee4959c4bfae85061bc1d

Subject of commit:
        Make exec-file-mismatch compare build IDs

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    python/py-utils.o
  CXX    python/py-value.o
  CXX    python/py-varobj.o
  CXX    python/py-xmethods.o
  CXX    python/python.o
  CXX    ravenscar-thread.o
  CXX    record-btrace.o
  CXX    record-full.o
  CXX    record.o
  CXX    regcache-dump.o
  CXX    regcache.o
  CXX    reggroups.o
  CXX    registry.o
  CXX    remote-fileio.o
  CXX    remote-notif.o
  CXX    remote.o
  CXX    reverse.o
  CXX    riscv-fbsd-tdep.o
  CXX    riscv-linux-tdep.o
  CXX    riscv-ravenscar-thread.o
  CXX    riscv-tdep.o
  CXX    rl78-tdep.o
  CXX    rs6000-aix-tdep.o
  CXX    rs6000-lynx178-tdep.o
  CXX    rs6000-tdep.o
  CXX    run-on-main-thread.o
  YACC   rust-exp.c
  CXX    rust-lang.o
  CXX    rx-tdep.o
  CXX    s12z-tdep.o
  CXX    s390-linux-tdep.o
  CXX    s390-tdep.o
  CXX    score-tdep.o
  CXX    selftest-arch.o
  CXX    sentinel-frame.o
  CXX    ser-base.o
  CXX    ser-event.o
  CXX    ser-pipe.o
  CXX    ser-tcp.o
  CXX    ser-uds.o
  CXX    ser-unix.o
  CXX    serial.o
  CXX    sh-linux-tdep.o
  CXX    sh-nbsd-tdep.o
  CXX    sh-tdep.o
  CXX    skip.o
  CXX    sol2-tdep.o
  CXX    solib-aix.o
  CXX    solib-darwin.o
  CXX    solib-dsbt.o
  CXX    solib-frv.o
  CXX    solib-svr4.o
  CXX    solib-target.o
  CXX    solib.o
  CXX    source-cache.o
  CXX    source.o
  CXX    sparc-linux-tdep.o
  CXX    sparc-nbsd-tdep.o
  CXX    sparc-obsd-tdep.o
  CXX    sparc-ravenscar-thread.o
  CXX    sparc-sol2-tdep.o
  CXX    sparc-tdep.o
  CXX    sparc64-fbsd-tdep.o
  CXX    sparc64-linux-tdep.o
  CXX    sparc64-nbsd-tdep.o
  CXX    sparc64-obsd-tdep.o
  CXX    sparc64-sol2-tdep.o
  CXX    sparc64-tdep.o
  CXX    stabsread.o
  CXX    stack.o
  CXX    stap-probe.o
  CXX    std-regs.o
  CXX    symfile-debug.o
  CXX    symfile-mem.o
../../binutils-gdb/gdb/sparc64-tdep.c: In function 'int adi_tag_fd()':
../../binutils-gdb/gdb/sparc64-tdep.c:290:59: error: the address of 'target_errno' will never be NULL [-Werror=address]
                                           0, &target_errno);
                                                           ^
../../binutils-gdb/gdb/sparc64-tdep.c:290:59: error: too few arguments to function 'int target_fileio_open(inferior*, const char*, int, int, bool, int*)'
In file included from ../../binutils-gdb/gdb/exec.h:23:0,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/sparc64-tdep.c:26:
../../binutils-gdb/gdb/target.h:2143:12: note: declared here
 extern int target_fileio_open (struct inferior *inf,
            ^~~~~~~~~~~~~~~~~~
  CXX    symfile.o
  CXX    symmisc.o
cc1plus: all warnings being treated as errors
Makefile:1609: recipe for target 'sparc64-tdep.o' failed
make[2]: *** [sparc64-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:10065: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:853: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=169.593677
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-05-19 17:51 [binutils-gdb] Eliminate target_fileio_open_warn_if_slow gdb-buildbot
@ 2020-05-19 23:31 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-05-19 23:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2792

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        4111f652f955028e8219fad2d60af1fd22aa29ee

Subject of commit:
        Eliminate target_fileio_open_warn_if_slow

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    python/py-unwind.o
  CXX    python/py-utils.o
  CXX    python/py-value.o
  CXX    python/py-varobj.o
  CXX    python/py-xmethods.o
  CXX    python/python.o
  CXX    ravenscar-thread.o
  CXX    record-btrace.o
  CXX    record-full.o
  CXX    record.o
  CXX    regcache-dump.o
  CXX    regcache.o
  CXX    reggroups.o
  CXX    registry.o
  CXX    remote-fileio.o
  CXX    remote-notif.o
  CXX    remote.o
  CXX    reverse.o
  CXX    riscv-fbsd-tdep.o
  CXX    riscv-linux-tdep.o
  CXX    riscv-ravenscar-thread.o
  CXX    riscv-tdep.o
  CXX    rl78-tdep.o
  CXX    rs6000-aix-tdep.o
  CXX    rs6000-lynx178-tdep.o
  CXX    rs6000-tdep.o
  CXX    run-on-main-thread.o
  YACC   rust-exp.c
  CXX    rust-lang.o
  CXX    rx-tdep.o
  CXX    s12z-tdep.o
  CXX    s390-linux-tdep.o
  CXX    s390-tdep.o
  CXX    score-tdep.o
  CXX    selftest-arch.o
  CXX    sentinel-frame.o
  CXX    ser-base.o
  CXX    ser-event.o
  CXX    ser-pipe.o
  CXX    ser-tcp.o
  CXX    ser-uds.o
  CXX    ser-unix.o
  CXX    serial.o
  CXX    sh-linux-tdep.o
  CXX    sh-nbsd-tdep.o
  CXX    sh-tdep.o
  CXX    skip.o
  CXX    sol2-tdep.o
  CXX    solib-aix.o
  CXX    solib-darwin.o
  CXX    solib-dsbt.o
  CXX    solib-frv.o
  CXX    solib-svr4.o
  CXX    solib-target.o
  CXX    solib.o
  CXX    source-cache.o
  CXX    source.o
  CXX    sparc-linux-tdep.o
  CXX    sparc-nbsd-tdep.o
  CXX    sparc-obsd-tdep.o
  CXX    sparc-ravenscar-thread.o
  CXX    sparc-sol2-tdep.o
  CXX    sparc-tdep.o
  CXX    sparc64-fbsd-tdep.o
  CXX    sparc64-linux-tdep.o
  CXX    sparc64-nbsd-tdep.o
  CXX    sparc64-obsd-tdep.o
  CXX    sparc64-sol2-tdep.o
  CXX    sparc64-tdep.o
  CXX    stabsread.o
  CXX    stack.o
  CXX    stap-probe.o
  CXX    std-regs.o
  CXX    symfile-debug.o
  CXX    symfile-mem.o
  CXX    symfile.o
../../binutils-gdb/gdb/sparc64-tdep.c: In function 'int adi_tag_fd()':
../../binutils-gdb/gdb/sparc64-tdep.c:290:59: error: the address of 'target_errno' will never be NULL [-Werror=address]
                                           0, &target_errno);
                                                           ^
../../binutils-gdb/gdb/sparc64-tdep.c:290:59: error: too few arguments to function 'int target_fileio_open(inferior*, const char*, int, int, bool, int*)'
In file included from ../../binutils-gdb/gdb/exec.h:23:0,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/sparc64-tdep.c:26:
../../binutils-gdb/gdb/target.h:2143:12: note: declared here
 extern int target_fileio_open (struct inferior *inf,
            ^~~~~~~~~~~~~~~~~~
cc1plus: all warnings being treated as errors
Makefile:1609: recipe for target 'sparc64-tdep.o' failed
make[2]: *** [sparc64-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:10065: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:853: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=168.635415
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-04-29 16:04 [binutils-gdb] Implement event-loop glue for gdbserver gdb-buildbot
@ 2020-05-04  8:38 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-05-04  8:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2638

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e487f9949ab654b20da8ac01b8311ae956136e5e

Subject of commit:
        Implement event-loop glue for gdbserver

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-xc16x.lo -MD -MP -MF .deps/elf32-xc16x.Tpo -c -o elf32-xc16x.lo ../../binutils-gdb/bfd/elf32-xc16x.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-xc16x.lo -MD -MP -MF .deps/elf32-xc16x.Tpo -c ../../binutils-gdb/bfd/elf32-xc16x.c -o elf32-xc16x.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-xgate.lo -MD -MP -MF .deps/elf32-xgate.Tpo -c -o elf32-xgate.lo ../../binutils-gdb/bfd/elf32-xgate.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-xgate.lo -MD -MP -MF .deps/elf32-xgate.Tpo -c ../../binutils-gdb/bfd/elf32-xgate.c -o elf32-xgate.o
mv -f .deps/elf32-xc16x.Tpo .deps/elf32-xc16x.Plo
  CXX    regcache-ipa.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-xstormy16.lo -MD -MP -MF .deps/elf32-xstormy16.Tpo -c -o elf32-xstormy16.lo ../../binutils-gdb/bfd/elf32-xstormy16.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-xstormy16.lo -MD -MP -MF .deps/elf32-xstormy16.Tpo -c ../../binutils-gdb/bfd/elf32-xstormy16.c -o elf32-xstormy16.o
mv -f .deps/elf32-xgate.Tpo .deps/elf32-xgate.Plo
  CXX    remote-utils-ipa.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-xtensa.lo -MD -MP -MF .deps/elf32-xtensa.Tpo -c -o elf32-xtensa.lo ../../binutils-gdb/bfd/elf32-xtensa.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-xtensa.lo -MD -MP -MF .deps/elf32-xtensa.Tpo -c ../../binutils-gdb/bfd/elf32-xtensa.c -o elf32-xtensa.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-z80.lo -MD -MP -MF .deps/elf32-z80.Tpo -c -o elf32-z80.lo ../../binutils-gdb/bfd/elf32-z80.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-z80.lo -MD -MP -MF .deps/elf32-z80.Tpo -c ../../binutils-gdb/bfd/elf32-z80.c -o elf32-z80.o
mv -f .deps/elf32-xstormy16.Tpo .deps/elf32-xstormy16.Plo
  CXX    tdesc-ipa.o
mv -f .deps/elf32-z80.Tpo .deps/elf32-z80.Plo
  CXX    tracepoint-ipa.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elfxx-sparc.lo -MD -MP -MF .deps/elfxx-sparc.Tpo -c -o elfxx-sparc.lo ../../binutils-gdb/bfd/elfxx-sparc.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elfxx-sparc.lo -MD -MP -MF .deps/elfxx-sparc.Tpo -c ../../binutils-gdb/bfd/elfxx-sparc.c -o elfxx-sparc.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elfxx-tilegx.lo -MD -MP -MF .deps/elfxx-tilegx.Tpo -c -o elfxx-tilegx.lo ../../binutils-gdb/bfd/elfxx-tilegx.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elfxx-tilegx.lo -MD -MP -MF .deps/elfxx-tilegx.Tpo -c ../../binutils-gdb/bfd/elfxx-tilegx.c -o elfxx-tilegx.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT i386aout.lo -MD -MP -MF .deps/i386aout.Tpo -c -o i386aout.lo ../../binutils-gdb/bfd/i386aout.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT i386aout.lo -MD -MP -MF .deps/i386aout.Tpo -c ../../binutils-gdb/bfd/i386aout.c -o i386aout.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT i386bsd.lo -MD -MP -MF .deps/i386bsd.Tpo -c -o i386bsd.lo ../../binutils-gdb/bfd/i386bsd.c
mv -f .deps/elfxx-sparc.Tpo .deps/elfxx-sparc.Plo
  CXX    utils-ipa.o
mv -f .deps/elfxx-tilegx.Tpo .deps/elfxx-tilegx.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT i386bsd.lo -MD -MP -MF .deps/i386bsd.Tpo -c ../../binutils-gdb/bfd/i386bsd.c -o i386bsd.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT i386lynx.lo -MD -MP -MF .deps/i386lynx.Tpo -c -o i386lynx.lo ../../binutils-gdb/bfd/i386lynx.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT i386lynx.lo -MD -MP -MF .deps/i386lynx.Tpo -c ../../binutils-gdb/bfd/i386lynx.c -o i386lynx.o
mv -f .deps/elf32-xtensa.Tpo .deps/elf32-xtensa.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT i386msdos.lo -MD -MP -MF .deps/i386msdos.Tpo -c -o i386msdos.lo ../../binutils-gdb/bfd/i386msdos.c
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT mach-o.lo -MD -MP -MF .deps/mach-o.Tpo -c -o mach-o.lo ../../binutils-gdb/bfd/mach-o.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT i386msdos.lo -MD -MP -MF .deps/i386msdos.Tpo -c ../../binutils-gdb/bfd/i386msdos.c -o i386msdos.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT mach-o.lo -MD -MP -MF .deps/mach-o.Tpo -c ../../binutils-gdb/bfd/mach-o.c -o mach-o.o
mv -f .deps/i386aout.Tpo .deps/i386aout.Plo
  CXX    alloc.o
mv -f .deps/i386bsd.Tpo .deps/i386bsd.Plo
  CXX    arch/aarch32.o
mv -f .deps/i386msdos.Tpo .deps/i386msdos.Plo
  CXX    arch/aarch64-insn.o
mv -f .deps/i386lynx.Tpo .deps/i386lynx.Plo
  CXX    arch/aarch64.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT mach-o-i386.lo -MD -MP -MF .deps/mach-o-i386.Tpo -c -o mach-o-i386.lo ../../binutils-gdb/bfd/mach-o-i386.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT mach-o-i386.lo -MD -MP -MF .deps/mach-o-i386.Tpo -c ../../binutils-gdb/bfd/mach-o-i386.c -o mach-o-i386.o
mv -f .deps/mach-o-i386.Tpo .deps/mach-o-i386.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT mach-o-arm.lo -MD -MP -MF .deps/mach-o-arm.Tpo -c -o mach-o-arm.lo ../../binutils-gdb/bfd/mach-o-arm.c
  CXX    arch/arm.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT ns32knetbsd.lo -MD -MP -MF .deps/ns32knetbsd.Tpo -c -o ns32knetbsd.lo ../../binutils-gdb/bfd/ns32knetbsd.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT mach-o-arm.lo -MD -MP -MF .deps/mach-o-arm.Tpo -c ../../binutils-gdb/bfd/mach-o-arm.c -o mach-o-arm.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT ns32knetbsd.lo -MD -MP -MF .deps/ns32knetbsd.Tpo -c ../../binutils-gdb/bfd/ns32knetbsd.c -o ns32knetbsd.o
mv -f .deps/mach-o.Tpo .deps/mach-o.Plo
  CXX    ax.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pc532-mach.lo -MD -MP -MF .deps/pc532-mach.Tpo -c -o pc532-mach.lo ../../binutils-gdb/bfd/pc532-mach.c
mv -f .deps/mach-o-arm.Tpo .deps/mach-o-arm.Plo
  CXX    debug.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pdp11.lo -MD -MP -MF .deps/pdp11.Tpo -c -o pdp11.lo ../../binutils-gdb/bfd/pdp11.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pc532-mach.lo -MD -MP -MF .deps/pc532-mach.Tpo -c ../../binutils-gdb/bfd/pc532-mach.c -o pc532-mach.o
  CXX    dll.o
mv -f .deps/ns32knetbsd.Tpo .deps/ns32knetbsd.Plo
  CXX    event-loop.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pdp11.lo -MD -MP -MF .deps/pdp11.Tpo -c ../../binutils-gdb/bfd/pdp11.c -o pdp11.o
mv -f .deps/pc532-mach.Tpo .deps/pc532-mach.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pe-arm-wince.lo -MD -MP -MF .deps/pe-arm-wince.Tpo -c -o pe-arm-wince.lo ../../binutils-gdb/bfd/pe-arm-wince.c
  CXX    fork-child.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pe-arm-wince.lo -MD -MP -MF .deps/pe-arm-wince.Tpo -c ../../binutils-gdb/bfd/pe-arm-wince.c -o pe-arm-wince.o
mv -f .deps/pdp11.Tpo .deps/pdp11.Plo
  CXX    hostio-errno.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pe-arm.lo -MD -MP -MF .deps/pe-arm.Tpo -c -o pe-arm.lo ../../binutils-gdb/bfd/pe-arm.c
mv -f .deps/pe-arm-wince.Tpo .deps/pe-arm-wince.Plo
  CXX    hostio.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pe-arm.lo -MD -MP -MF .deps/pe-arm.Tpo -c ../../binutils-gdb/bfd/pe-arm.c -o pe-arm.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pe-i386.lo -MD -MP -MF .deps/pe-i386.Tpo -c -o pe-i386.lo ../../binutils-gdb/bfd/pe-i386.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pe-i386.lo -MD -MP -MF .deps/pe-i386.Tpo -c ../../binutils-gdb/bfd/pe-i386.c -o pe-i386.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pe-mcore.lo -MD -MP -MF .deps/pe-mcore.Tpo -c -o pe-mcore.lo ../../binutils-gdb/bfd/pe-mcore.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pe-mcore.lo -MD -MP -MF .deps/pe-mcore.Tpo -c ../../binutils-gdb/bfd/pe-mcore.c -o pe-mcore.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pe-ppc.lo -MD -MP -MF .deps/pe-ppc.Tpo -c -o pe-ppc.lo ../../binutils-gdb/bfd/pe-ppc.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pe-ppc.lo -MD -MP -MF .deps/pe-ppc.Tpo -c ../../binutils-gdb/bfd/pe-ppc.c -o pe-ppc.o
mv -f .deps/pe-arm.Tpo .deps/pe-arm.Plo
  CXX    inferiors.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pe-sh.lo -MD -MP -MF .deps/pe-sh.Tpo -c -o pe-sh.lo ../../binutils-gdb/bfd/pe-sh.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pe-sh.lo -MD -MP -MF .deps/pe-sh.Tpo -c ../../binutils-gdb/bfd/pe-sh.c -o pe-sh.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pef.lo -MD -MP -MF .deps/pef.Tpo -c -o pef.lo ../../binutils-gdb/bfd/pef.c
mv -f .deps/pe-i386.Tpo .deps/pe-i386.Plo
  CXX    linux-aarch32-low.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pef.lo -MD -MP -MF .deps/pef.Tpo -c ../../binutils-gdb/bfd/pef.c -o pef.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pei-arm-wince.lo -MD -MP -MF .deps/pei-arm-wince.Tpo -c -o pei-arm-wince.lo ../../binutils-gdb/bfd/pei-arm-wince.c
mv -f .deps/pe-mcore.Tpo .deps/pe-mcore.Plo
  CXX    linux-aarch32-tdesc.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pei-arm-wince.lo -MD -MP -MF .deps/pei-arm-wince.Tpo -c ../../binutils-gdb/bfd/pei-arm-wince.c -o pei-arm-wince.o
mv -f .deps/pe-ppc.Tpo .deps/pe-ppc.Plo
  CXX    linux-aarch64-low.o
mv -f .deps/pef.Tpo .deps/pef.Plo
  CXX    linux-aarch64-tdesc.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -DLIBDIR='"/usr/local/lib"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT pei-arm.lo -MD -MP -MF .deps/pei-arm.Tpo -c -o pei-arm.lo ../../binutils-gdb/bfd/pei-arm.c
mv -f .deps/pe-sh.Tpo .deps/pe-sh.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -DLIBDIR=\"/usr/local/lib\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT pei-arm.lo -MD -MP -MF .deps/pei-arm.Tpo -c ../../binutils-gdb/bfd/pei-arm.c -o pei-arm.o
  CXX    linux-low.o
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-04-22  9:37 [binutils-gdb] Handle complex error type in read_base_type gdb-buildbot
@ 2020-04-26 22:21 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-04-26 22:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2564

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        93689ce91271bf88580a2d035a466479c16f4e71

Subject of commit:
        Handle complex error type in read_base_type

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

config.status: linking ../../binutils-gdb/gdb/config/nm-linux.h to nm.h
config.status: executing depdir commands
mkdir -p -- .deps
=== configuring in testsuite (/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/testsuite)
configure: running /bin/bash ../../../binutils-gdb/gdb/testsuite/configure --disable-option-checking '--prefix=/usr/local'  '--disable-binutils' '--disable-ld' '--disable-gold' '--disable-gas' '--disable-sim' '--disable-gprof' '--enable-targets=all' '--with-separate-debug-dir=/usr/lib/debug' '--program-transform-name=s,y,y,' '--build=aarch64-unknown-linux-gnu' '--host=aarch64-unknown-linux-gnu' '--target=aarch64-unknown-linux-gnu' 'build_alias=aarch64-unknown-linux-gnu' 'host_alias=aarch64-unknown-linux-gnu' 'target_alias=aarch64-unknown-linux-gnu' 'CC=gcc' 'CFLAGS=-g -D_GLIBCXX_DEBUG ' 'LDFLAGS= ' 'CXX=g++' 'CXXFLAGS=-g -D_GLIBCXX_DEBUG ' 'MAKEINFO=makeinfo --split-size=5000000' 'YACC=bison -y' --cache-file=.././config.cache --srcdir=../../../binutils-gdb/gdb/testsuite
configure: loading cache .././config.cache
checking build system type... (cached) aarch64-unknown-linux-gnu
checking host system type... (cached) aarch64-unknown-linux-gnu
checking target system type... (cached) aarch64-unknown-linux-gnu
checking for aarch64-unknown-linux-gnu-gcc... (cached) gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking how to run the C preprocessor... (cached) gcc -E
checking for grep that handles long lines and -e... (cached) /bin/grep
checking for egrep... (cached) /bin/grep -E
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating lib/pdtrace
config.status: creating Makefile
make[2]: Entering directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs arch/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs cli/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs dwarf2/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs mi/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs guile/.deps
mkdir -p -- arch/.deps
mkdir -p -- cli/.deps
mkdir -p -- dwarf2/.deps
mkdir -p -- mi/.deps
mkdir -p -- compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
mkdir -p -- tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
mkdir -p -- guile/.deps
  LEX    ada-lex.c
mkdir -p -- python/.deps
  YACC   ada-exp.c
mkdir -p -- target/.deps
mkdir -p -- nat/.deps
  YACC   c-exp.c
  YACC   cp-name-parser.c
  YACC   d-exp.c
  YACC   f-exp.c
  YACC   go-exp.c
  CXX    go-lang.o
  CXX    go-typeprint.o
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 153 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 70 reduce/reduce conflicts [-Wconflicts-rr]
  CXX    go-valprint.o
  CXX    guile/guile.o
  CXX    h8300-tdep.o
  CXX    hppa-bsd-tdep.o
  CXX    hppa-linux-tdep.o
  CXX    hppa-nbsd-tdep.o
  CXX    hppa-obsd-tdep.o
../../binutils-gdb/gdb/hppa-nbsd-tdep.c: In function 'void hppanbsd_init_abi(gdbarch_info, gdbarch*)':
../../binutils-gdb/gdb/hppa-nbsd-tdep.c:204:3: error: 'nbsd_init_abi' was not declared in this scope
   nbsd_init_abi (info, gdbarch);
   ^~~~~~~~~~~~~
../../binutils-gdb/gdb/hppa-nbsd-tdep.c:204:3: note: suggested alternative: 'hppanbsd_init_abi'
   nbsd_init_abi (info, gdbarch);
   ^~~~~~~~~~~~~
   hppanbsd_init_abi
  CXX    hppa-tdep.o
Makefile:1609: recipe for target 'hppa-nbsd-tdep.o' failed
make[2]: *** [hppa-nbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:10065: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:853: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=100.384224
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-04-22  8:58 [binutils-gdb] Add signal number conversions for NetBSD gdb-buildbot
@ 2020-04-26 22:15 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-04-26 22:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2563

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        797439622361bc901ed64b398c0d689c97cd8121

Subject of commit:
        Add signal number conversions for NetBSD

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
mkdir -p -- compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- tui/.deps
mkdir -p -- unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
mkdir -p -- guile/.deps
  LEX    ada-lex.c
  YACC   ada-exp.c
mkdir -p -- python/.deps
mkdir -p -- target/.deps
mkdir -p -- nat/.deps
  YACC   c-exp.c
  YACC   cp-name-parser.c
  YACC   d-exp.c
  YACC   f-exp.c
  YACC   go-exp.c
  YACC   m2-exp.c
  CXX    m2-lang.o
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/m2-exp.y: warning: 34 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 153 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 70 reduce/reduce conflicts [-Wconflicts-rr]
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/m2-exp.y:301.25-52: warning: rule useless in parser due to conflicts [-Wother]
                         { pstate->start_arglist(); }
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  CXX    m2-typeprint.o
  CXX    m2-valprint.o
  CXX    m32c-tdep.o
  CXX    m32r-linux-tdep.o
  CXX    m32r-tdep.o
  CXX    m68hc11-tdep.o
  CXX    m68k-bsd-tdep.o
  CXX    m68k-linux-tdep.o
  CXX    m68k-tdep.o
  CXX    machoread.o
  CXX    macrocmd.o
  CXX    macroexp.o
  CXX    macroscope.o
  CXX    macrotab.o
  CXX    main.o
  CXX    maint-test-options.o
  CXX    maint-test-settings.o
  CXX    maint.o
  CXX    mdebugread.o
  CXX    mem-break.o
  CXX    memattr.o
  CXX    memory-map.o
  CXX    memrange.o
  CXX    mep-tdep.o
  CXX    mi/mi-cmd-break.o
  CXX    mi/mi-cmd-catch.o
  CXX    mi/mi-cmd-disas.o
  CXX    mi/mi-cmd-env.o
  CXX    mi/mi-cmd-file.o
  CXX    mi/mi-cmd-info.o
  CXX    mi/mi-cmd-stack.o
  CXX    mi/mi-cmd-target.o
  CXX    mi/mi-cmd-var.o
  CXX    mi/mi-cmds.o
  CXX    mi/mi-common.o
  CXX    mi/mi-console.o
  CXX    mi/mi-getopt.o
  CXX    mi/mi-interp.o
  CXX    mi/mi-main.o
  CXX    mi/mi-out.o
  CXX    mi/mi-parse.o
  CXX    mi/mi-symbol-cmds.o
  CXX    microblaze-linux-tdep.o
  CXX    microblaze-tdep.o
  CXX    minidebug.o
  CXX    minsyms.o
  CXX    mips-fbsd-tdep.o
  CXX    mips-linux-tdep.o
  CXX    mips-nbsd-tdep.o
  CXX    mips-sde-tdep.o
  CXX    mips-tdep.o
  CXX    mips64-obsd-tdep.o
  CXX    mipsread.o
../../binutils-gdb/gdb/mips-nbsd-tdep.c: In function 'void mipsnbsd_init_abi(gdbarch_info, gdbarch*)':
../../binutils-gdb/gdb/mips-nbsd-tdep.c:359:3: error: expected ';' before 'set_gdbarch_iterate_over_regset_sections'
   set_gdbarch_iterate_over_regset_sections
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  CXX    mn10300-linux-tdep.o
../../binutils-gdb/gdb/mips-nbsd-tdep.c: At global scope:
../../binutils-gdb/gdb/mips-nbsd-tdep.c:119:1: error: 'void mipsnbsd_iterate_over_regset_sections(gdbarch*, void (*)(const char*, int, int, const regset*, const char*, void*), void*, const regcache*)' defined but not used [-Werror=unused-function]
 mipsnbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1plus: all warnings being treated as errors
Makefile:1609: recipe for target 'mips-nbsd-tdep.o' failed
make[2]: *** [mips-nbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:10065: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:853: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=113.606056
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-02-24  3:04 [binutils-gdb] Remove the TUI annotation hack gdb-buildbot
@ 2020-03-08  0:09 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-03-08  0:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2065

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        fc96d20b2c6d7ff24349ad015119438077d3f1e9

Subject of commit:
        Remove the TUI annotation hack

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    symmisc.o
  CXX    symtab.o
  CXX    target-connection.o
  CXX    target-dcache.o
  CXX    target-descriptions.o
  CXX    target-float.o
  CXX    target-memory.o
  CXX    target.o
  CXX    target/waitstatus.o
  CXX    test-target.o
  CXX    thread-iter.o
  CXX    thread.o
  CXX    tic6x-linux-tdep.o
  CXX    tic6x-tdep.o
  CXX    tid-parse.o
  CXX    tilegx-linux-tdep.o
  CXX    tilegx-tdep.o
  CXX    top.o
  CXX    tracectf.o
  CXX    tracefile-tfile.o
  CXX    tracefile.o
  CXX    tracepoint.o
  CXX    trad-frame.o
  CXX    tramp-frame.o
  CXX    tui/tui-command.o
  CXX    tui/tui-data.o
  CXX    tui/tui-disasm.o
  CXX    tui/tui-file.o
  CXX    tui/tui-hooks.o
  CXX    tui/tui-interp.o
  CXX    tui/tui-io.o
  CXX    tui/tui-layout.o
  CXX    tui/tui-out.o
  CXX    tui/tui-regs.o
  CXX    tui/tui-source.o
../../binutils-gdb/gdb/tui/tui-layout.c:354:40: error: 'window_factory' was not declared in this scope
 static std::unordered_map<std::string, window_factory> *known_window_types;
                                        ^~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:354:54: error: template argument 2 is invalid
 static std::unordered_map<std::string, window_factory> *known_window_types;
                                                      ^
../../binutils-gdb/gdb/tui/tui-layout.c:354:54: error: template argument 5 is invalid
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'tui_gen_win_info* tui_get_window_by_name(const string&)':
../../binutils-gdb/gdb/tui/tui-layout.c:361:31: error: 'saved_tui_windows' was not declared in this scope
   for (tui_win_info *window : saved_tui_windows)
                               ^~~~~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:361:31: note: suggested alternative: 'all_tui_windows'
   for (tui_win_info *window : saved_tui_windows)
                               ^~~~~~~~~~~~~~~~~
                               all_tui_windows
../../binutils-gdb/gdb/tui/tui-layout.c:365:35: error: request for member 'find' in '* known_window_types', which is of non-class type 'int'
   auto iter = known_window_types->find (name);
                                   ^~~~
../../binutils-gdb/gdb/tui/tui-layout.c:366:35: error: request for member 'end' in '* known_window_types', which is of non-class type 'int'
   if (iter == known_window_types->end ())
                                   ^~~
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'void initialize_known_windows()':
../../binutils-gdb/gdb/tui/tui-layout.c:380:60: error: 'window_factory' was not declared in this scope
   known_window_types = new std::unordered_map<std::string, window_factory>;
                                                            ^~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:380:74: error: template argument 2 is invalid
   known_window_types = new std::unordered_map<std::string, window_factory>;
                                                                          ^
../../binutils-gdb/gdb/tui/tui-layout.c:380:74: error: template argument 5 is invalid
../../binutils-gdb/gdb/tui/tui-layout.c:382:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("src",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:385:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("cmd",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:387:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("regs",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:390:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("asm",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:393:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("status", get_locator_window);
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'bool validate_window_name(const string&)':
../../binutils-gdb/gdb/tui/tui-layout.c:924:35: error: request for member 'find' in '* known_window_types', which is of non-class type 'int'
   auto iter = known_window_types->find (name);
                                   ^~~~
../../binutils-gdb/gdb/tui/tui-layout.c:925:38: error: request for member 'end' in '* known_window_types', which is of non-class type 'int'
   return iter != known_window_types->end ();
                                      ^~~
  CXX    tui/tui-stack.o
  CXX    tui/tui-win.o
Makefile:1599: recipe for target 'tui/tui-layout.o' failed
make[2]: *** [tui/tui-layout.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:10065: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:853: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=189.569513
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-02-24  2:28 [binutils-gdb] Remove tui_set_win_with_focus gdb-buildbot
@ 2020-03-07 23:59 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-03-07 23:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2064

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        935c78c0468215e2f034f39b8285fa8bb17729b8

Subject of commit:
        Remove tui_set_win_with_focus

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    symfile.o
  CXX    symmisc.o
  CXX    symtab.o
  CXX    target-connection.o
  CXX    target-dcache.o
  CXX    target-descriptions.o
  CXX    target-float.o
  CXX    target-memory.o
  CXX    target.o
  CXX    target/waitstatus.o
  CXX    test-target.o
  CXX    thread-iter.o
  CXX    thread.o
  CXX    tic6x-linux-tdep.o
  CXX    tic6x-tdep.o
  CXX    tid-parse.o
  CXX    tilegx-linux-tdep.o
  CXX    tilegx-tdep.o
  CXX    top.o
  CXX    tracectf.o
  CXX    tracefile-tfile.o
  CXX    tracefile.o
  CXX    tracepoint.o
  CXX    trad-frame.o
  CXX    tramp-frame.o
  CXX    tui/tui-command.o
  CXX    tui/tui-data.o
  CXX    tui/tui-disasm.o
  CXX    tui/tui-file.o
  CXX    tui/tui-hooks.o
  CXX    tui/tui-interp.o
  CXX    tui/tui-io.o
  CXX    tui/tui-layout.o
  CXX    tui/tui-out.o
  CXX    tui/tui-regs.o
  CXX    tui/tui-source.o
../../binutils-gdb/gdb/tui/tui-layout.c:354:40: error: 'window_factory' was not declared in this scope
 static std::unordered_map<std::string, window_factory> *known_window_types;
                                        ^~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:354:54: error: template argument 2 is invalid
 static std::unordered_map<std::string, window_factory> *known_window_types;
                                                      ^
../../binutils-gdb/gdb/tui/tui-layout.c:354:54: error: template argument 5 is invalid
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'tui_gen_win_info* tui_get_window_by_name(const string&)':
../../binutils-gdb/gdb/tui/tui-layout.c:361:31: error: 'saved_tui_windows' was not declared in this scope
   for (tui_win_info *window : saved_tui_windows)
                               ^~~~~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:361:31: note: suggested alternative: 'all_tui_windows'
   for (tui_win_info *window : saved_tui_windows)
                               ^~~~~~~~~~~~~~~~~
                               all_tui_windows
../../binutils-gdb/gdb/tui/tui-layout.c:365:35: error: request for member 'find' in '* known_window_types', which is of non-class type 'int'
   auto iter = known_window_types->find (name);
                                   ^~~~
../../binutils-gdb/gdb/tui/tui-layout.c:366:35: error: request for member 'end' in '* known_window_types', which is of non-class type 'int'
   if (iter == known_window_types->end ())
                                   ^~~
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'void initialize_known_windows()':
../../binutils-gdb/gdb/tui/tui-layout.c:380:60: error: 'window_factory' was not declared in this scope
   known_window_types = new std::unordered_map<std::string, window_factory>;
                                                            ^~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:380:74: error: template argument 2 is invalid
   known_window_types = new std::unordered_map<std::string, window_factory>;
                                                                          ^
../../binutils-gdb/gdb/tui/tui-layout.c:380:74: error: template argument 5 is invalid
../../binutils-gdb/gdb/tui/tui-layout.c:382:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("src",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:385:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("cmd",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:387:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("regs",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:390:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("asm",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:393:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("status", get_locator_window);
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'bool validate_window_name(const string&)':
../../binutils-gdb/gdb/tui/tui-layout.c:924:35: error: request for member 'find' in '* known_window_types', which is of non-class type 'int'
   auto iter = known_window_types->find (name);
                                   ^~~~
../../binutils-gdb/gdb/tui/tui-layout.c:925:38: error: request for member 'end' in '* known_window_types', which is of non-class type 'int'
   return iter != known_window_types->end ();
                                      ^~~
  CXX    tui/tui-stack.o
Makefile:1599: recipe for target 'tui/tui-layout.o' failed
make[2]: *** [tui/tui-layout.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:10065: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:853: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=189.206246
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-02-24  2:28 [binutils-gdb] Change how TUI windows are instantiated gdb-buildbot
@ 2020-03-07 23:49 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-03-07 23:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/2063

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0240c8f11b06a33a043bacbe2b9e723ae6ad573c

Subject of commit:
        Change how TUI windows are instantiated

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    symtab.o
  CXX    target-connection.o
  CXX    target-dcache.o
  CXX    target-descriptions.o
  CXX    target-float.o
  CXX    target-memory.o
  CXX    target.o
  CXX    target/waitstatus.o
  CXX    test-target.o
  CXX    thread-iter.o
  CXX    thread.o
  CXX    tic6x-linux-tdep.o
  CXX    tic6x-tdep.o
  CXX    tid-parse.o
  CXX    tilegx-linux-tdep.o
  CXX    tilegx-tdep.o
  CXX    top.o
  CXX    tracectf.o
  CXX    tracefile-tfile.o
  CXX    tracefile.o
  CXX    tracepoint.o
  CXX    trad-frame.o
  CXX    tramp-frame.o
  CXX    tui/tui-command.o
  CXX    tui/tui-data.o
  CXX    tui/tui-disasm.o
  CXX    tui/tui-file.o
  CXX    tui/tui-hooks.o
  CXX    tui/tui-interp.o
  CXX    tui/tui-io.o
  CXX    tui/tui-layout.o
  CXX    tui/tui-out.o
  CXX    tui/tui-regs.o
  CXX    tui/tui-source.o
../../binutils-gdb/gdb/tui/tui-layout.c:354:40: error: 'window_factory' was not declared in this scope
 static std::unordered_map<std::string, window_factory> *known_window_types;
                                        ^~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:354:54: error: template argument 2 is invalid
 static std::unordered_map<std::string, window_factory> *known_window_types;
                                                      ^
../../binutils-gdb/gdb/tui/tui-layout.c:354:54: error: template argument 5 is invalid
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'tui_gen_win_info* tui_get_window_by_name(const string&)':
../../binutils-gdb/gdb/tui/tui-layout.c:361:31: error: 'saved_tui_windows' was not declared in this scope
   for (tui_win_info *window : saved_tui_windows)
                               ^~~~~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:361:31: note: suggested alternative: 'all_tui_windows'
   for (tui_win_info *window : saved_tui_windows)
                               ^~~~~~~~~~~~~~~~~
                               all_tui_windows
../../binutils-gdb/gdb/tui/tui-layout.c:365:35: error: request for member 'find' in '* known_window_types', which is of non-class type 'int'
   auto iter = known_window_types->find (name);
                                   ^~~~
../../binutils-gdb/gdb/tui/tui-layout.c:366:35: error: request for member 'end' in '* known_window_types', which is of non-class type 'int'
   if (iter == known_window_types->end ())
                                   ^~~
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'void initialize_known_windows()':
../../binutils-gdb/gdb/tui/tui-layout.c:380:60: error: 'window_factory' was not declared in this scope
   known_window_types = new std::unordered_map<std::string, window_factory>;
                                                            ^~~~~~~~~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:380:74: error: template argument 2 is invalid
   known_window_types = new std::unordered_map<std::string, window_factory>;
                                                                          ^
../../binutils-gdb/gdb/tui/tui-layout.c:380:74: error: template argument 5 is invalid
../../binutils-gdb/gdb/tui/tui-layout.c:382:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("src",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:385:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("cmd",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:387:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("regs",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:390:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("asm",
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c:393:23: error: request for member 'emplace' in '* known_window_types', which is of non-class type 'int'
   known_window_types->emplace ("status", get_locator_window);
                       ^~~~~~~
../../binutils-gdb/gdb/tui/tui-layout.c: In function 'bool validate_window_name(const string&)':
../../binutils-gdb/gdb/tui/tui-layout.c:924:35: error: request for member 'find' in '* known_window_types', which is of non-class type 'int'
   auto iter = known_window_types->find (name);
                                   ^~~~
../../binutils-gdb/gdb/tui/tui-layout.c:925:38: error: request for member 'end' in '* known_window_types', which is of non-class type 'int'
   return iter != known_window_types->end ();
                                      ^~~
  CXX    tui/tui-stack.o
  CXX    tui/tui-win.o
  CXX    tui/tui-wingeneral.o
Makefile:1599: recipe for target 'tui/tui-layout.o' failed
make[2]: *** [tui/tui-layout.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:10065: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:853: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=188.953230
==============================================



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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-15  1:03 [binutils-gdb] Move gdbsupport to the top level gdb-buildbot
@ 2020-01-15  1:12 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-15  1:12 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1714

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        01027315f54048dbaf03ac37455c2528c72a6d9b

Subject of commit:
        Move gdbsupport to the top level

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    main.o
  CXX    maint-test-options.o
  CXX    maint-test-settings.o
  CXX    maint.o
  CXX    mdebugread.o
  CXX    mem-break.o
  CXX    memattr.o
  CXX    memory-map.o
  CXX    memrange.o
  CXX    mep-tdep.o
  CXX    mi/mi-cmd-break.o
  CXX    mi/mi-cmd-catch.o
  CXX    mi/mi-cmd-disas.o
  CXX    mi/mi-cmd-env.o
  CXX    mi/mi-cmd-file.o
  CXX    mi/mi-cmd-info.o
  CXX    mi/mi-cmd-stack.o
  CXX    mi/mi-cmd-target.o
  CXX    mi/mi-cmd-var.o
  CXX    mi/mi-cmds.o
  CXX    mi/mi-common.o
  CXX    mi/mi-console.o
  CXX    mi/mi-getopt.o
  CXX    mi/mi-interp.o
  CXX    mi/mi-main.o
  CXX    mi/mi-out.o
  CXX    mi/mi-parse.o
  CXX    mi/mi-symbol-cmds.o
  CXX    microblaze-linux-tdep.o
  CXX    microblaze-tdep.o
  CXX    minidebug.o
  CXX    minsyms.o
  CXX    mips-fbsd-tdep.o
  CXX    mips-linux-tdep.o
  CXX    mips-nbsd-tdep.o
  CXX    mips-sde-tdep.o
  CXX    mips-tdep.o
  CXX    mips64-obsd-tdep.o
  CXX    mipsread.o
  CXX    mn10300-linux-tdep.o
  CXX    mn10300-tdep.o
  CXX    moxie-tdep.o
  CXX    msp430-tdep.o
  CXX    namespace.o
  CXX    nat/aarch64-linux-hw-point.o
  CXX    nat/aarch64-linux.o
  CXX    nat/aarch64-sve-linux-ptrace.o
  CXX    nat/fork-inferior.o
  CXX    nat/linux-namespaces.o
  CXX    nat/linux-osdata.o
  CXX    nat/linux-personality.o
In file included from ../../binutils-gdb/gdb/gdb_proc_service.h:22:0,
                 from ../../binutils-gdb/gdb/nat/aarch64-linux.h:25,
                 from ../../binutils-gdb/gdb/nat/aarch64-linux.c:23:
../../binutils-gdb/gdb/../gdbsupport/gdb_proc_service.h:87:22: error: conflicting declaration 'typedef unsigned int lwpid_t'
 typedef unsigned int lwpid_t;
                      ^~~~~~~
In file included from /usr/include/aarch64-linux-gnu/sys/ucontext.h:36:0,
                 from /usr/include/signal.h:306,
                 from ../gnulib/import/signal.h:52,
                 from ../../binutils-gdb/gdb/nat/aarch64-linux.h:22,
                 from ../../binutils-gdb/gdb/nat/aarch64-linux.c:23:
/usr/include/aarch64-linux-gnu/sys/procfs.h:115:17: note: previous declaration as 'typedef __pid_t lwpid_t'
 typedef __pid_t lwpid_t;
                 ^~~~~~~
In file included from ../../binutils-gdb/gdb/nat/aarch64-linux.c:26:0:
../../binutils-gdb/gdb/nat/gdb_ptrace.h:129:8: error: 'PTRACE_TYPE_RET' does not name a type
 extern PTRACE_TYPE_RET ptrace();
        ^~~~~~~~~~~~~~~
../../binutils-gdb/gdb/nat/aarch64-linux.c: In function 'ps_err_e aarch64_ps_get_thread_area(ps_prochandle*, lwpid_t, int, void**, int)':
../../binutils-gdb/gdb/nat/gdb_ptrace.h:150:19: error: 'PTRACE_TYPE_ARG1' was not declared in this scope
          ptrace ((PTRACE_TYPE_ARG1) request, pid, addr, data)
                   ^
../../binutils-gdb/gdb/nat/aarch64-linux.c:240:7: note: in expansion of macro 'ptrace'
   if (ptrace (PTRACE_GETREGSET, lwpid, NT_ARM_TLS, &iovec) != 0)
       ^~~~~~
../../binutils-gdb/gdb/nat/gdb_ptrace.h:150:10: error: 'ptrace' was not declared in this scope
          ptrace ((PTRACE_TYPE_ARG1) request, pid, addr, data)
          ^
../../binutils-gdb/gdb/nat/aarch64-linux.c:240:7: note: in expansion of macro 'ptrace'
   if (ptrace (PTRACE_GETREGSET, lwpid, NT_ARM_TLS, &iovec) != 0)
       ^~~~~~
../../binutils-gdb/gdb/nat/gdb_ptrace.h:150:10: note: suggested alternative: 'pwrite'
          ptrace ((PTRACE_TYPE_ARG1) request, pid, addr, data)
          ^
../../binutils-gdb/gdb/nat/aarch64-linux.c:240:7: note: in expansion of macro 'ptrace'
   if (ptrace (PTRACE_GETREGSET, lwpid, NT_ARM_TLS, &iovec) != 0)
       ^~~~~~
Makefile:1593: recipe for target 'nat/aarch64-linux.o' failed
make[2]: *** [nat/aarch64-linux.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9647: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:852: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=167.108693
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-09 13:25 [binutils-gdb] Add support for debuginfod to the binutils (disable by default, enabled via a configure time option) gdb-buildbot
@ 2020-01-09 13:25 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-09 13:25 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1621

Author:
        Aaron Merey <amerey@redhat.com>

Commit tested:
        301a9420d947da145884261ac31a7a52438c2894

Subject of commit:
        Add support for debuginfod to the binutils (disable by default, enabled via a configure time option).

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=123.819031
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-09 11:53 [binutils-gdb] Fix compile time warnings about comparisons always being false gdb-buildbot
@ 2020-01-09 11:53 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-09 11:53 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1620

Author:
        Sergey Belyashov <sergey.belyashov@gmail.com>

Commit tested:
        40c75bc8b07abc5d5774ea1c439b69c96e7fd485

Subject of commit:
        Fix compile time warnings about comparisons always being false.

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.134054
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-09 10:45 [binutils-gdb] x86: SYSENTER/SYSEXIT are unavailable in 64-bit mode on AMD gdb-buildbot
@ 2020-01-09 10:47 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-09 10:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1619

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        d835a58baae720abe909795cb68763040d1750a8

Subject of commit:
        x86: SYSENTER/SYSEXIT are unavailable in 64-bit mode on AMD

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.266479
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-08 22:44 [binutils-gdb] Change section_offsets to a std::vector gdb-buildbot
@ 2020-01-08 22:46 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-08 22:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1618

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        6a053cb1ff643cec3349d7f2f47ae5573f82d613

Subject of commit:
        Change section_offsets to a std::vector

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=127.914766
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-08 18:44 [binutils-gdb] Use std::string in dwarf2read.c gdb-buildbot
@ 2020-01-08 18:46 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-08 18:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1617

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        456e800a63def18484f69a51f59c2338a5cc4568

Subject of commit:
        Use std::string in dwarf2read.c

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.184931
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-08 18:37 [binutils-gdb] Use std::vector in abbrev_table_read_table gdb-buildbot
@ 2020-01-08 18:39 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-08 18:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1616

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        6dfa2fc20773615c3a08c3565974dcfdfa36f052

Subject of commit:
        Use std::vector in abbrev_table_read_table

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.870455
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-08 18:31 [binutils-gdb] Use unique_xmalloc_ptr in fixup_go_packaging gdb-buildbot
@ 2020-01-08 18:33 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-08 18:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1615

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        421d1616230a78449dc2f5abb60f03d38b96c3cf

Subject of commit:
        Use unique_xmalloc_ptr in fixup_go_packaging

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.227243
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-08 18:24 [binutils-gdb] Remove some explicit memory management from dwarf2read.c gdb-buildbot
@ 2020-01-08 18:24 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-08 18:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1614

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        43816ebc335481c99808c4fdfffb9ea3f510b19a

Subject of commit:
        Remove some explicit memory management from dwarf2read.c

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=120.531982
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-08 13:09 [binutils-gdb] ubsan: z8k: index 10 out of bounds for type 'unsigned int const[10]' gdb-buildbot
@ 2020-01-08 13:11 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-08 13:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1613

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        030a2e78acf66c5c12e073ec3887a167da7a7195

Subject of commit:
        ubsan: z8k: index 10 out of bounds for type 'unsigned int const[10]'

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.339017
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-08 13:02 [binutils-gdb] PR25351 .ARM.attributes not found for symbol gdb-buildbot
@ 2020-01-08 13:04 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-08 13:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1612

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        4c6ee6465acc58f0f86c44668c4e862901186239

Subject of commit:
        PR25351 .ARM.attributes not found for symbol

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=124.834578
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-07 16:49 [binutils-gdb] Add constructor to stap_static_probe_ops gdb-buildbot
@ 2020-01-07 16:49 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-07 16:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1611

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        4212d5091457541bd7e7eff0591805ef7b7333e3

Subject of commit:
        Add constructor to stap_static_probe_ops

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.436261
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-07 13:51 [binutils-gdb] Enable styling by default on Cygwin gdb-buildbot
@ 2020-01-07 13:51 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-07 13:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1610

Author:
        Jon Turney <jon.turney@dronecode.org.uk>

Commit tested:
        06a6207a1ab458521656f293bb1ca8fd013d6f7c

Subject of commit:
        Enable styling by default on Cygwin

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.272723
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-07 13:40 [binutils-gdb] [ARC] Add finer details for LLOCK and SCOND gdb-buildbot
@ 2020-01-07 13:40 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-07 13:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1609

Author:
        Shahab Vahedi <shahab@synopsys.com>

Commit tested:
        bb82aefe17866cdcb996ae35a3895bb36b4d674b

Subject of commit:
        [ARC] Add finer details for LLOCK and SCOND

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=123.191949
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 23:42 [binutils-gdb] RISC-V: Fix weak function call reloc overflow on llvm build gdb-buildbot
@ 2020-01-06 23:44 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 23:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1608

Author:
        Jim Wilson <jimw@sifive.com>

Commit tested:
        85f783647061e58968ecdc516137d8df9f2d5e16

Subject of commit:
        RISC-V: Fix weak function call reloc overflow on llvm build.

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=120.849047
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 22:00 [binutils-gdb] gdb: Fix backtrace with disassemble-next-line on gdb-buildbot
@ 2020-01-06 22:00 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 22:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1607

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        153d79c451fd852e97cdfecf2205781e3a13dd55

Subject of commit:
        gdb: Fix backtrace with disassemble-next-line on

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.329098
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 20:03 [binutils-gdb] Fix MinGW native compilation of gdb/gdbsupport/gdb_wait.c gdb-buildbot
@ 2020-01-06 20:05 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 20:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1606

Author:
        Eli Zaretskii <eliz@gnu.org>

Commit tested:
        66182876b46d40163e81504f7fa4f206268cb83c

Subject of commit:
        Fix MinGW native compilation of gdb/gdbsupport/gdb_wait.c

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.046247
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 19:56 [binutils-gdb] GDB: Fix the overflow in addr/line_is_displayed() gdb-buildbot
@ 2020-01-06 19:56 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 19:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1605

Author:
        Shahab Vahedi <shahab@synopsys.com>

Commit tested:
        cbfa85811792ca8e96ace40bef0aaaf507e54bcc

Subject of commit:
        GDB: Fix the overflow in addr/line_is_displayed()

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.727598
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 19:30 [binutils-gdb] Mention the recent fix of $_exitsignal on MS-Windows in gdb/NEWS gdb-buildbot
@ 2020-01-06 19:30 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 19:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1604

Author:
        Eli Zaretskii <eliz@gnu.org>

Commit tested:
        3f6028216b1df14a299a9cd89b1149258c024d4f

Subject of commit:
        Mention the recent fix of $_exitsignal on MS-Windows in gdb/NEWS

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=125.020069
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 18:36 [binutils-gdb] Fix a crash with a malformed PE header gdb-buildbot
@ 2020-01-06 18:38 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 18:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1603

Author:
        Jon Turney <jon.turney@dronecode.org.uk>

Commit tested:
        a08c904d4e9688a869242d9cec1b64ca23b1214e

Subject of commit:
        Fix a crash with a malformed PE header

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=123.120457
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 18:27 [binutils-gdb] Fix a typo in gdb/windows-tdep.c gdb-buildbot
@ 2020-01-06 18:27 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 18:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1602

Author:
        Eli Zaretskii <eliz@gnu.org>

Commit tested:
        89a65580f4522f81ef7e4e49298b24f3ebc14355

Subject of commit:
        Fix a typo in gdb/windows-tdep.c

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for posix_madvise... yes
checking for waitpid... yes
checking for ptrace64... no
checking for sigaltstack... yes
checking for setns... yes
checking for use_default_colors... yes
checking for nl_langinfo and CODESET... yes
checking for size_t... yes
checking for a sed that does not truncate output... /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... yes
checking for alloca... yes
checking for nl_langinfo and CODESET... (cached) yes
checking linux/perf_event.h usability... yes
checking linux/perf_event.h presence... yes
checking for linux/perf_event.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for memory.h... (cached) yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sys/resource.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking for thread_db.h... (cached) yes
checking wait.h usability... yes
checking wait.h presence... yes
checking for wait.h... yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... yes
checking whether strstr is declared... yes
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for std::thread... yes
checking for pthread_sigmask... yes
checking for pthread_setname_np... yes
checking for sigsetjmp... yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... yes
checking return type of ptrace... long
checking types of arguments for ptrace... enum __ptrace_request,int,long,long
checking whether setpgrp takes no argument... yes
checking for GNU regex... yes
checking for struct thread.td_pcb... no
checking for struct lwp... no
checking for struct reg in machine/reg.h... no
checking for struct reg.r_fs... no
checking for struct reg.r_gs... no
checking for struct user_regs_struct.fs_base... no
checking for struct user_regs_struct.gs_base... no
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for PT_GETDBREGS... no
checking for PT_GETXMMREGS... no
checking for struct ptrace_lwpinfo.pl_tdname... no
checking for struct ptrace_lwpinfo.pl_syscall_code... no
checking for gregset_t in sys/procfs.h... no
checking for fpregset_t in sys/procfs.h... no
checking for prgregset_t in sys/procfs.h... yes
checking for prfpregset_t in sys/procfs.h... yes
checking for prgregset32_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... yes
checking for psaddr_t in sys/procfs.h... yes
checking for elf_fpregset_t in sys/procfs.h... yes
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for decfloat support in printf... no
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking whether <thread_db.h> has TD_NOTALLOC... yes
checking whether <thread_db.h> has TD_VERSION... yes
checking whether <thread_db.h> has TD_NOTLS... yes
checking whether ADDR_NO_RANDOMIZE is declared... yes
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for cygwin... no
checking for ELF support in BFD... yes
checking for library containing dlopen... (cached) none required
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 16:20 [binutils-gdb] Fix search in TUI gdb-buildbot
@ 2020-01-06 16:20 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 16:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1601

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        8b7fcda2744145f2380af01c9db8e11986f7af6d

Subject of commit:
        Fix search in TUI

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for posix_madvise... yes
checking for waitpid... yes
checking for ptrace64... no
checking for sigaltstack... yes
checking for setns... yes
checking for use_default_colors... yes
checking for nl_langinfo and CODESET... yes
checking for size_t... yes
checking for a sed that does not truncate output... /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... yes
checking for alloca... yes
checking for nl_langinfo and CODESET... (cached) yes
checking linux/perf_event.h usability... yes
checking linux/perf_event.h presence... yes
checking for linux/perf_event.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for memory.h... (cached) yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sys/resource.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking for thread_db.h... (cached) yes
checking wait.h usability... yes
checking wait.h presence... yes
checking for wait.h... yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... yes
checking whether strstr is declared... yes
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for std::thread... yes
checking for pthread_sigmask... yes
checking for pthread_setname_np... yes
checking for sigsetjmp... yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... yes
checking return type of ptrace... long
checking types of arguments for ptrace... enum __ptrace_request,int,long,long
checking whether setpgrp takes no argument... yes
checking for GNU regex... yes
checking for struct thread.td_pcb... no
checking for struct lwp... no
checking for struct reg in machine/reg.h... no
checking for struct reg.r_fs... no
checking for struct reg.r_gs... no
checking for struct user_regs_struct.fs_base... no
checking for struct user_regs_struct.gs_base... no
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for PT_GETDBREGS... no
checking for PT_GETXMMREGS... no
checking for struct ptrace_lwpinfo.pl_tdname... no
checking for struct ptrace_lwpinfo.pl_syscall_code... no
checking for gregset_t in sys/procfs.h... no
checking for fpregset_t in sys/procfs.h... no
checking for prgregset_t in sys/procfs.h... yes
checking for prfpregset_t in sys/procfs.h... yes
checking for prgregset32_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... yes
checking for psaddr_t in sys/procfs.h... yes
checking for elf_fpregset_t in sys/procfs.h... yes
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for decfloat support in printf... no
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking whether <thread_db.h> has TD_NOTALLOC... yes
checking whether <thread_db.h> has TD_VERSION... yes
checking whether <thread_db.h> has TD_NOTLS... yes
checking whether ADDR_NO_RANDOMIZE is declared... yes
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for cygwin... no
checking for ELF support in BFD... yes
checking for library containing dlopen... (cached) none required
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 13:50 [binutils-gdb] GDB: Remove trailing spaces in tui-disasm.c gdb-buildbot
@ 2020-01-06 13:52 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 13:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1600

Author:
        Shahab Vahedi <shahab@synopsys.com>

Commit tested:
        a61b4f6997cefbf28df45d5e1fa40663f0679ba8

Subject of commit:
        GDB: Remove trailing spaces in tui-disasm.c

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=123.732879
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 12:31 [binutils-gdb] Improve process exit status macros on MinGW gdb-buildbot
@ 2020-01-06 12:33 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 12:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1599

Author:
        Eli Zaretskii <eliz@gnu.org>

Commit tested:
        559e7e5056e0671f2f248e1f9c2af849bfe3e64b

Subject of commit:
        Improve process exit status macros on MinGW

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=120.401530
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 12:24 [binutils-gdb] bfd_check_format: ignore errors from coff_real_object_p gdb-buildbot
@ 2020-01-06 12:26 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 12:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1598

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        49078ece048d0871508218203744f95e68ba5b4a

Subject of commit:
        bfd_check_format: ignore errors from coff_real_object_p

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.936743
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 12:18 [binutils-gdb] alpha-vms: don't exit on stack underflow/overflow gdb-buildbot
@ 2020-01-06 12:20 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 12:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1597

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ab356be74c0a74d3baf24e24aadfc0a2051a077c

Subject of commit:
        alpha-vms: don't exit on stack underflow/overflow

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.458042
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 12:11 [binutils-gdb] ubsan: m32c: left shift of negative value gdb-buildbot
@ 2020-01-06 12:13 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 12:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1596

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        cc6aa1a6e0a8f2b3eda496aef0b3579a8c2b5951

Subject of commit:
        ubsan: m32c: left shift of negative value

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.539970
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 12:04 [binutils-gdb] som_bfd_fill_in_ar_symbols buffer overflow gdb-buildbot
@ 2020-01-06 12:07 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 12:07 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1595

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        85d8681747faa317c9934f658dcf8749e945ea8c

Subject of commit:
        som_bfd_fill_in_ar_symbols buffer overflow

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=125.693713
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 11:58 [binutils-gdb] Basic error checking for mach-o gdb-buildbot
@ 2020-01-06 12:00 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 12:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1594

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        3e6aa7751ab86fdc2f2762ed8a5bce41b22be56e

Subject of commit:
        Basic error checking for mach-o

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.035410
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-06 11:50 [binutils-gdb] PR25344, z80 disassembler recursion gdb-buildbot
@ 2020-01-06 11:50 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-06 11:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1593

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        660e62b1d9ca02e4ec7b18e8f0a0ff0707e540ac

Subject of commit:
        PR25344, z80 disassembler recursion

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=119.833007
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-05 22:09 [binutils-gdb] gdb: use tui_set_layout not show_layout to fix window focus gdb-buildbot
@ 2020-01-05 22:09 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-05 22:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1592

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        f2302a34f273611ead5e700e6d9e50e8dfe027f8

Subject of commit:
        gdb: use tui_set_layout not show_layout to fix window focus

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.278551
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-05 12:03 [binutils-gdb] [AArch64] Fix erroneous use of spu architecture bfd gdb-buildbot
@ 2020-01-05 12:03 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-05 12:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1591

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        6a5206eb2740e769bcb0500bdbc5998801d90ef6

Subject of commit:
        [AArch64] Fix erroneous use of spu architecture bfd

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.364625
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-05  5:54 [binutils-gdb] libctf: Add configure check for asprintf (for MinGW) gdb-buildbot
@ 2020-01-05  5:54 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-05  5:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1589

Author:
        Eli Zaretskii <eliz@gnu.org>

Commit tested:
        3a657c600bde2d3bd84870f75968622bbdb69ce8

Subject of commit:
        libctf: Add configure check for asprintf (for MinGW)

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=126.385085
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-04  9:40 [binutils-gdb] Release bfd_alloc memory in bfd_check_format_matches gdb-buildbot
@ 2020-01-04  9:42 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-04  9:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1588

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ea933f17c3c6b9fa1daf8d03baa34f7bec855d6c

Subject of commit:
        Release bfd_alloc memory in bfd_check_format_matches

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.569196
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-04  9:33 [binutils-gdb] mmo tdata leak gdb-buildbot
@ 2020-01-04  9:35 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-04  9:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1587

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        f24bdec48621f419fdc9dcd58f46891f062b7bc0

Subject of commit:
        mmo tdata leak

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=124.176441
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-04  9:26 [binutils-gdb] ubsan: m32r: left shift of negative value gdb-buildbot
@ 2020-01-04  9:29 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-04  9:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1586

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        c9ae58fe32e88914b67988d5bfde184f79c7070f

Subject of commit:
        ubsan: m32r: left shift of negative value

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for posix_madvise... yes
checking for waitpid... yes
checking for ptrace64... no
checking for sigaltstack... yes
checking for setns... yes
checking for use_default_colors... yes
checking for nl_langinfo and CODESET... yes
checking for size_t... yes
checking for a sed that does not truncate output... /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... yes
checking for alloca... yes
checking for nl_langinfo and CODESET... (cached) yes
checking linux/perf_event.h usability... yes
checking linux/perf_event.h presence... yes
checking for linux/perf_event.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for memory.h... (cached) yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sys/resource.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking for thread_db.h... (cached) yes
checking wait.h usability... yes
checking wait.h presence... yes
checking for wait.h... yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... yes
checking whether strstr is declared... yes
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for std::thread... yes
checking for pthread_sigmask... yes
checking for pthread_setname_np... yes
checking for sigsetjmp... yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... yes
checking return type of ptrace... long
checking types of arguments for ptrace... enum __ptrace_request,int,long,long
checking whether setpgrp takes no argument... yes
checking for GNU regex... yes
checking for struct thread.td_pcb... no
checking for struct lwp... no
checking for struct reg in machine/reg.h... no
checking for struct reg.r_fs... no
checking for struct reg.r_gs... no
checking for struct user_regs_struct.fs_base... no
checking for struct user_regs_struct.gs_base... no
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for PT_GETDBREGS... no
checking for PT_GETXMMREGS... no
checking for struct ptrace_lwpinfo.pl_tdname... no
checking for struct ptrace_lwpinfo.pl_syscall_code... no
checking for gregset_t in sys/procfs.h... no
checking for fpregset_t in sys/procfs.h... no
checking for prgregset_t in sys/procfs.h... yes
checking for prfpregset_t in sys/procfs.h... yes
checking for prgregset32_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... yes
checking for psaddr_t in sys/procfs.h... yes
checking for elf_fpregset_t in sys/procfs.h... yes
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for decfloat support in printf... no
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking whether <thread_db.h> has TD_NOTALLOC... yes
checking whether <thread_db.h> has TD_VERSION... yes
checking whether <thread_db.h> has TD_NOTLS... yes
checking whether ADDR_NO_RANDOMIZE is declared... yes
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for cygwin... no
checking for ELF support in BFD... yes
checking for library containing dlopen... (cached) none required
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-04  9:20 [binutils-gdb] ubsan: cr16: left shift cannot be represented in type 'int' gdb-buildbot
@ 2020-01-04  9:22 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-04  9:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1585

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        5f57d4ecf51c2f420dae56dfb9fc525d1979ec7c

Subject of commit:
        ubsan: cr16: left shift cannot be represented in type 'int'

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.351393
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-04  9:13 [binutils-gdb] ubsan: crx: left shift cannot be represented in type 'int' gdb-buildbot
@ 2020-01-04  9:16 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-04  9:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1584

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2c5c119630be063c97872428084fff51a858dfd3

Subject of commit:
        ubsan: crx: left shift cannot be represented in type 'int'

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for posix_madvise... yes
checking for waitpid... yes
checking for ptrace64... no
checking for sigaltstack... yes
checking for setns... yes
checking for use_default_colors... yes
checking for nl_langinfo and CODESET... yes
checking for size_t... yes
checking for a sed that does not truncate output... /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... yes
checking for alloca... yes
checking for nl_langinfo and CODESET... (cached) yes
checking linux/perf_event.h usability... yes
checking linux/perf_event.h presence... yes
checking for linux/perf_event.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for memory.h... (cached) yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sys/resource.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking for thread_db.h... (cached) yes
checking wait.h usability... yes
checking wait.h presence... yes
checking for wait.h... yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... yes
checking whether strstr is declared... yes
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for std::thread... yes
checking for pthread_sigmask... yes
checking for pthread_setname_np... yes
checking for sigsetjmp... yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... yes
checking return type of ptrace... long
checking types of arguments for ptrace... enum __ptrace_request,int,long,long
checking whether setpgrp takes no argument... yes
checking for GNU regex... yes
checking for struct thread.td_pcb... no
checking for struct lwp... no
checking for struct reg in machine/reg.h... no
checking for struct reg.r_fs... no
checking for struct reg.r_gs... no
checking for struct user_regs_struct.fs_base... no
checking for struct user_regs_struct.gs_base... no
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for PT_GETDBREGS... no
checking for PT_GETXMMREGS... no
checking for struct ptrace_lwpinfo.pl_tdname... no
checking for struct ptrace_lwpinfo.pl_syscall_code... no
checking for gregset_t in sys/procfs.h... no
checking for fpregset_t in sys/procfs.h... no
checking for prgregset_t in sys/procfs.h... yes
checking for prfpregset_t in sys/procfs.h... yes
checking for prgregset32_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... yes
checking for psaddr_t in sys/procfs.h... yes
checking for elf_fpregset_t in sys/procfs.h... yes
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for decfloat support in printf... no
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking whether <thread_db.h> has TD_NOTALLOC... yes
checking whether <thread_db.h> has TD_VERSION... yes
checking whether <thread_db.h> has TD_NOTLS... yes
checking whether ADDR_NO_RANDOMIZE is declared... yes
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for cygwin... no
checking for ELF support in BFD... yes
checking for library containing dlopen... (cached) none required
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-04  9:07 [binutils-gdb] ubsan: d30v: left shift cannot be represented in type 'int' gdb-buildbot
@ 2020-01-04  9:09 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-04  9:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1583

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2e98c6c5c5a0d8746f3815ceeb7564acaa0645e1

Subject of commit:
        ubsan: d30v: left shift cannot be represented in type 'int'

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.032597
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-04  8:59 [binutils-gdb] coff: free malloc'd memory on successful target match too gdb-buildbot
@ 2020-01-04  8:59 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-04  8:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1582

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        991fb595e34598291a52b533fdc8005e1ead0799

Subject of commit:
        coff: free malloc'd memory on successful target match too

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=120.261930
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03 20:43 [binutils-gdb] Ensure GDB warnings are styled gdb-buildbot
@ 2020-01-03 20:43 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03 20:43 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1581

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        6ec1d75e05a646eb602de4034366ec5fec7545ce

Subject of commit:
        Ensure GDB warnings are styled.

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.497919
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03 17:12 [binutils-gdb] solib_target_free_so memory leak gdb-buildbot
@ 2020-01-03 17:14 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03 17:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1580

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        44f81a76542dbeada2541a05de191ae0ac0fbc2c

Subject of commit:
        solib_target_free_so memory leak

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for posix_madvise... yes
checking for waitpid... yes
checking for ptrace64... no
checking for sigaltstack... yes
checking for setns... yes
checking for use_default_colors... yes
checking for nl_langinfo and CODESET... yes
checking for size_t... yes
checking for a sed that does not truncate output... /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... yes
checking for alloca... yes
checking for nl_langinfo and CODESET... (cached) yes
checking linux/perf_event.h usability... yes
checking linux/perf_event.h presence... yes
checking for linux/perf_event.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for memory.h... (cached) yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sys/resource.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking for thread_db.h... (cached) yes
checking wait.h usability... yes
checking wait.h presence... yes
checking for wait.h... yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... yes
checking whether strstr is declared... yes
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for std::thread... yes
checking for pthread_sigmask... yes
checking for pthread_setname_np... yes
checking for sigsetjmp... yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... yes
checking return type of ptrace... long
checking types of arguments for ptrace... enum __ptrace_request,int,long,long
checking whether setpgrp takes no argument... yes
checking for GNU regex... yes
checking for struct thread.td_pcb... no
checking for struct lwp... no
checking for struct reg in machine/reg.h... no
checking for struct reg.r_fs... no
checking for struct reg.r_gs... no
checking for struct user_regs_struct.fs_base... no
checking for struct user_regs_struct.gs_base... no
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for PT_GETDBREGS... no
checking for PT_GETXMMREGS... no
checking for struct ptrace_lwpinfo.pl_tdname... no
checking for struct ptrace_lwpinfo.pl_syscall_code... no
checking for gregset_t in sys/procfs.h... no
checking for fpregset_t in sys/procfs.h... no
checking for prgregset_t in sys/procfs.h... yes
checking for prfpregset_t in sys/procfs.h... yes
checking for prgregset32_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... yes
checking for psaddr_t in sys/procfs.h... yes
checking for elf_fpregset_t in sys/procfs.h... yes
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for decfloat support in printf... no
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking whether <thread_db.h> has TD_NOTALLOC... yes
checking whether <thread_db.h> has TD_VERSION... yes
checking whether <thread_db.h> has TD_NOTLS... yes
checking whether ADDR_NO_RANDOMIZE is declared... yes
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for cygwin... no
checking for ELF support in BFD... yes
checking for library containing dlopen... (cached) none required
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03 17:05 [binutils-gdb] windows_clear_solib memory leak gdb-buildbot
@ 2020-01-03 17:08 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03 17:08 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1579

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        25057eb004b9a6e55b96f64176bb27cf0c457e23

Subject of commit:
        windows_clear_solib memory leak

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for setrlimit... yes
checking for getrlimit... yes
checking for posix_madvise... yes
checking for waitpid... yes
checking for ptrace64... no
checking for sigaltstack... yes
checking for setns... yes
checking for use_default_colors... yes
checking for nl_langinfo and CODESET... yes
checking for size_t... yes
checking for a sed that does not truncate output... /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... yes
checking for alloca... yes
checking for nl_langinfo and CODESET... (cached) yes
checking linux/perf_event.h usability... yes
checking linux/perf_event.h presence... yes
checking for linux/perf_event.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for memory.h... (cached) yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sys/resource.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking for thread_db.h... (cached) yes
checking wait.h usability... yes
checking wait.h presence... yes
checking for wait.h... yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... yes
checking whether strstr is declared... yes
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for std::thread... yes
checking for pthread_sigmask... yes
checking for pthread_setname_np... yes
checking for sigsetjmp... yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... yes
checking return type of ptrace... long
checking types of arguments for ptrace... enum __ptrace_request,int,long,long
checking whether setpgrp takes no argument... yes
checking for GNU regex... yes
checking for struct thread.td_pcb... no
checking for struct lwp... no
checking for struct reg in machine/reg.h... no
checking for struct reg.r_fs... no
checking for struct reg.r_gs... no
checking for struct user_regs_struct.fs_base... no
checking for struct user_regs_struct.gs_base... no
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for PT_GETDBREGS... no
checking for PT_GETXMMREGS... no
checking for struct ptrace_lwpinfo.pl_tdname... no
checking for struct ptrace_lwpinfo.pl_syscall_code... no
checking for gregset_t in sys/procfs.h... no
checking for fpregset_t in sys/procfs.h... no
checking for prgregset_t in sys/procfs.h... yes
checking for prfpregset_t in sys/procfs.h... yes
checking for prgregset32_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... yes
checking for psaddr_t in sys/procfs.h... yes
checking for elf_fpregset_t in sys/procfs.h... yes
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for decfloat support in printf... no
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking whether <thread_db.h> has TD_NOTALLOC... yes
checking whether <thread_db.h> has TD_VERSION... yes
checking whether <thread_db.h> has TD_NOTLS... yes
checking whether ADDR_NO_RANDOMIZE is declared... yes
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for cygwin... no
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03 16:23 [binutils-gdb] Fix potential illegal memory access when parsing a corrupt PEF format file gdb-buildbot
@ 2020-01-03 16:23 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03 16:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1578

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        f2a3559d54602cecfec6d90f792be4a70ad918ab

Subject of commit:
        Fix potential illegal memory access when parsing a corrupt PEF format file.

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=129.413400
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03 14:45 [binutils-gdb] Fix potential illegal memory access failures in the BFD library by ensuring that the return value from bfd_malloc() is checked before it is used gdb-buildbot
@ 2020-01-03 14:45 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03 14:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1577

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        7a0fb7be96e0ce79e1ae429bc1ba913e5244d537

Subject of commit:
        Fix potential illegal memory access failures in the BFD library by ensuring that the return value from bfd_malloc() is checked before it is used.

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.511234
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03 11:27 [binutils-gdb] Fix ld/PR25316 for the ia64 target by refusing to support binary merging gdb-buildbot
@ 2020-01-03 11:27 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03 11:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1576

Author:
        Sergei Trofimovich <siarheit@google.com>

Commit tested:
        b26a3d5827edcb942b3af5b921bf317bbc0c8e83

Subject of commit:
        Fix ld/PR25316 for the ia64 target by refusing to support binary merging.

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=125.199332
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03  9:47 [binutils-gdb] Arm64: correct address index operands for LD1RO{H,W,D} gdb-buildbot
@ 2020-01-03  9:49 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03  9:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1575

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        5437a02abc9fe106054965828787e8f232692935

Subject of commit:
        Arm64: correct address index operands for LD1RO{H,W,D}

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.413694
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03  9:41 [binutils-gdb] Arm64: correct {su,us}dot SIMD encodings gdb-buildbot
@ 2020-01-03  9:43 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03  9:43 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1574

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        567dfba2bed4bce68a13b0c8963dec9605dea6c8

Subject of commit:
        Arm64: correct {su,us}dot SIMD encodings

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.765584
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03  9:34 [binutils-gdb] Arm64: correct uzp{1,2} mnemonics gdb-buildbot
@ 2020-01-03  9:36 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03  9:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1573

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        8c45011acd7a589c306e74563d00fb3fa5c14bbd

Subject of commit:
        Arm64: correct uzp{1,2} mnemonics

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.830620
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03  9:28 [binutils-gdb] Arm64: correct 64-bit element fmmla encoding gdb-buildbot
@ 2020-01-03  9:31 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03  9:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1572

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        f4950f76fa56bd60314f05620c39fb31e96bb088

Subject of commit:
        Arm64: correct 64-bit element fmmla encoding

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=122.060244
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03  9:21 [binutils-gdb] Mach-O: misc build adjustments gdb-buildbot
@ 2020-01-03  9:21 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03  9:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1571

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        4bb7a87e74e66a7d32cbd39e6fc8e54f25a5ad0d

Subject of commit:
        Mach-O: misc build adjustments

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=120.741432
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03  8:37 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
@ 2020-01-03  8:37 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03  8:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1570

Author:
        Bernd Edlinger <bernd.edlinger@hotmail.de>

Commit tested:
        6e2118f588c6f33a741a706725f8e23db57251b3

Subject of commit:
        Add myself to gdb/MAINTAINERS

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for posix_madvise... yes
checking for waitpid... yes
checking for ptrace64... no
checking for sigaltstack... yes
checking for setns... yes
checking for use_default_colors... yes
checking for nl_langinfo and CODESET... yes
checking for size_t... yes
checking for a sed that does not truncate output... /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... yes
checking for alloca... yes
checking for nl_langinfo and CODESET... (cached) yes
checking linux/perf_event.h usability... yes
checking linux/perf_event.h presence... yes
checking for linux/perf_event.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for memory.h... (cached) yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sys/resource.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking for thread_db.h... (cached) yes
checking wait.h usability... yes
checking wait.h presence... yes
checking for wait.h... yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... yes
checking whether strstr is declared... yes
checking whether gcc is Clang... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for std::thread... yes
checking for pthread_sigmask... yes
checking for pthread_setname_np... yes
checking for sigsetjmp... yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... yes
checking return type of ptrace... long
checking types of arguments for ptrace... enum __ptrace_request,int,long,long
checking whether setpgrp takes no argument... yes
checking for GNU regex... yes
checking for struct thread.td_pcb... no
checking for struct lwp... no
checking for struct reg in machine/reg.h... no
checking for struct reg.r_fs... no
checking for struct reg.r_gs... no
checking for struct user_regs_struct.fs_base... no
checking for struct user_regs_struct.gs_base... no
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for PT_GETDBREGS... no
checking for PT_GETXMMREGS... no
checking for struct ptrace_lwpinfo.pl_tdname... no
checking for struct ptrace_lwpinfo.pl_syscall_code... no
checking for gregset_t in sys/procfs.h... no
checking for fpregset_t in sys/procfs.h... no
checking for prgregset_t in sys/procfs.h... yes
checking for prfpregset_t in sys/procfs.h... yes
checking for prgregset32_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... yes
checking for psaddr_t in sys/procfs.h... yes
checking for elf_fpregset_t in sys/procfs.h... yes
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for decfloat support in printf... no
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking whether <thread_db.h> has TD_NOTALLOC... yes
checking whether <thread_db.h> has TD_VERSION... yes
checking whether <thread_db.h> has TD_NOTLS... yes
checking whether ADDR_NO_RANDOMIZE is declared... yes
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for cygwin... no
checking for ELF support in BFD... yes
checking for library containing dlopen... (cached) none required
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-03  2:20 [binutils-gdb] Remove stale references to Cell BE gdb-buildbot
@ 2020-01-03  2:20 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-03  2:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1569

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        8133c7dce66f472a67705ad2779dc202a1a6311e

Subject of commit:
        Remove stale references to Cell BE

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=121.011846
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2020-01-02 15:04 [binutils-gdb] Add support for the GBZ80, Z180, and eZ80 variants of the Z80 architecure. Add an ELF based target for these as well gdb-buildbot
@ 2020-01-02 15:04 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2020-01-02 15:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1568

Author:
        Sergey Belyashov <sergey.belyashov@gmail.com>

Commit tested:
        6655dba246bd164d953fe220a0e3d4eed85bb268

Subject of commit:
        Add support for the GBZ80, Z180, and eZ80 variants of the Z80 architecure.  Add an ELF based target for these as well.

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking for working fork... (cached) yes
checking for working vfork... (cached) yes
checking for getauxval... (cached) yes
checking for pread... (cached) yes
checking for pwrite... (cached) yes
checking for pread64... (cached) yes
checking for setns... (cached) yes
checking for size_t... (cached) yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for ANSI C header files... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for nl_langinfo and CODESET... (cached) yes
checking for linux/perf_event.h... (cached) yes
checking for locale.h... (cached) yes
checking for memory.h... (cached) yes
checking for signal.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/un.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for thread_db.h... (cached) yes
checking for wait.h... (cached) yes
checking for termios.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for fdwalk... (cached) no
checking for getrlimit... (cached) yes
checking for pipe... (cached) yes
checking for pipe2... (cached) yes
checking for socketpair... (cached) yes
checking for sigaction... (cached) yes
checking for sigprocmask... (cached) yes
checking whether strstr is declared... (cached) yes
checking whether gcc is Clang... (cached) no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... (cached) no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking for std::thread... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for pthread_setname_np... (cached) yes
checking for sigsetjmp... (cached) yes
checking for sys/ptrace.h... (cached) yes
checking for ptrace.h... (cached) no
checking whether ptrace is declared... (cached) yes
checking return type of ptrace... (cached) long
checking types of arguments for ptrace... (cached) enum __ptrace_request,int,long,long
checking for ust... no
checking compiler warning flags...  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-variable -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable -Wno-sign-compare -Wno-error=maybe-uninitialized -Wsuggest-override -Wimplicit-fallthrough=3 -Wduplicated-cond -Wshadow=local -Wformat -Wformat-nonliteral -Werror
checking for dladdr... yes
checking for long long... (cached) yes
checking size of long long... (cached) 8
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=125.206991
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
@ 2019-12-15 23:42 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-15 23:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1402

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

../../binutils-gdb/gdb/jit.c:1365:62:   required from here
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >)'
       m_end (std::forward<Arg> (arg2))
                                      ^
In file included from /usr/include/c++/7/debug/vector:38:0,
                 from /usr/include/c++/7/vector:73,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/7/debug/safe_iterator.h:178:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, typename _Sequence::iterator::iterator_type>::__value, _Sequence>::__type>&)
  _Safe_iterator(
  ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:178:2: note:   template argument deduction/substitution failed:
/usr/include/c++/7/debug/safe_iterator.h: In substitution of 'template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, std::__cxx1998::_List_iterator<objfile*> >::__value, std::__debug::list<objfile*> >::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/7/debug/safe_iterator.h:178:2: error: no type named '__type' in 'struct __gnu_cxx::__enable_if<false, std::__debug::list<objfile*> >'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/7/debug/safe_iterator.h:158:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(_Safe_iterator&& __x) noexcept
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:158:7: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >' to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&&'
/usr/include/c++/7/debug/safe_iterator.h:140:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:140:7: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >' to 'const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&'
/usr/include/c++/7/debug/safe_iterator.h:128:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, const _Safe_sequence_base* __seq)
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:128:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/7/debug/safe_iterator.h:119:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator() _GLIBCXX_NOEXCEPT : _Iter_base() { }
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:119:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/7/debug/safe_iterator.h:104:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, _Safe_sequence_base* __seq,
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:104:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29:0,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >)'
       m_end (std::forward<Arg> (arg2))
                                      ^
In file included from /usr/include/c++/7/debug/vector:38:0,
                 from /usr/include/c++/7/vector:73,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/7/debug/safe_iterator.h:178:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, typename _Sequence::iterator::iterator_type>::__value, _Sequence>::__type>&)
  _Safe_iterator(
  ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:178:2: note:   template argument deduction/substitution failed:
/usr/include/c++/7/debug/safe_iterator.h: In substitution of 'template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, std::__cxx1998::_List_iterator<objfile*> >::__value, std::__debug::list<objfile*> >::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/7/debug/safe_iterator.h:178:2: error: no type named '__type' in 'struct __gnu_cxx::__enable_if<false, std::__debug::list<objfile*> >'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/7/debug/safe_iterator.h:158:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(_Safe_iterator&& __x) noexcept
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:158:7: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >' to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&&'
/usr/include/c++/7/debug/safe_iterator.h:140:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:140:7: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >' to 'const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&'
/usr/include/c++/7/debug/safe_iterator.h:128:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, const _Safe_sequence_base* __seq)
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:128:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/7/debug/safe_iterator.h:119:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator() _GLIBCXX_NOEXCEPT : _Iter_base() { }
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:119:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/7/debug/safe_iterator.h:104:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, _Safe_sequence_base* __seq,
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:104:7: note:   candidate expects 3 arguments, 1 provided
  CXX    linux-thread-db.o
Makefile:1662: recipe for target 'jit.o' failed
make[2]: *** [jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=178.624449
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-13  0:56 [binutils-gdb] Store objfiles on a std::list gdb-buildbot
@ 2019-12-15 23:33 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-15 23:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1401

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d0801dd8f22a3e739c6a7d126d45829df981794d

Subject of commit:
        Store objfiles on a std::list

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

../../binutils-gdb/gdb/jit.c:1365:62:   required from here
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >)'
       m_end (std::forward<Arg> (arg2))
                                      ^
In file included from /usr/include/c++/7/debug/vector:38:0,
                 from /usr/include/c++/7/vector:73,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/7/debug/safe_iterator.h:178:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, typename _Sequence::iterator::iterator_type>::__value, _Sequence>::__type>&)
  _Safe_iterator(
  ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:178:2: note:   template argument deduction/substitution failed:
/usr/include/c++/7/debug/safe_iterator.h: In substitution of 'template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, std::__cxx1998::_List_iterator<objfile*> >::__value, std::__debug::list<objfile*> >::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/7/debug/safe_iterator.h:178:2: error: no type named '__type' in 'struct __gnu_cxx::__enable_if<false, std::__debug::list<objfile*> >'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/7/debug/safe_iterator.h:158:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(_Safe_iterator&& __x) noexcept
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:158:7: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >' to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&&'
/usr/include/c++/7/debug/safe_iterator.h:140:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:140:7: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >' to 'const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&'
/usr/include/c++/7/debug/safe_iterator.h:128:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, const _Safe_sequence_base* __seq)
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:128:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/7/debug/safe_iterator.h:119:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator() _GLIBCXX_NOEXCEPT : _Iter_base() { }
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:119:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/7/debug/safe_iterator.h:104:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, _Safe_sequence_base* __seq,
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:104:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29:0,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >)'
       m_end (std::forward<Arg> (arg2))
                                      ^
In file included from /usr/include/c++/7/debug/vector:38:0,
                 from /usr/include/c++/7/vector:73,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/7/debug/safe_iterator.h:178:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, typename _Sequence::iterator::iterator_type>::__value, _Sequence>::__type>&)
  _Safe_iterator(
  ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:178:2: note:   template argument deduction/substitution failed:
/usr/include/c++/7/debug/safe_iterator.h: In substitution of 'template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, std::__cxx1998::_List_iterator<objfile*> >::__value, std::__debug::list<objfile*> >::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/7/debug/safe_iterator.h:178:2: error: no type named '__type' in 'struct __gnu_cxx::__enable_if<false, std::__debug::list<objfile*> >'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/7/debug/safe_iterator.h:158:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(_Safe_iterator&& __x) noexcept
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:158:7: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >' to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&&'
/usr/include/c++/7/debug/safe_iterator.h:140:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:140:7: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >' to 'const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&'
/usr/include/c++/7/debug/safe_iterator.h:128:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, const _Safe_sequence_base* __seq)
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:128:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/7/debug/safe_iterator.h:119:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator() _GLIBCXX_NOEXCEPT : _Iter_base() { }
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:119:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/7/debug/safe_iterator.h:104:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, _Safe_sequence_base* __seq,
       ^~~~~~~~~~~~~~
/usr/include/c++/7/debug/safe_iterator.h:104:7: note:   candidate expects 3 arguments, 1 provided
  CXX    linux-thread-db.o
Makefile:1662: recipe for target 'jit.o' failed
make[2]: *** [jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=178.900133
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-12 12:19 [binutils-gdb] Fix unused function error gdb-buildbot
@ 2019-12-12 12:59 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-12 12:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1389

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        39f34d7b64ee76e07b82a3e57800905d249d8005

Subject of commit:
        Fix unused function error

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
mkdir -p -- guile/.deps
  LEX    ada-lex.c
mkdir -p -- python/.deps
  YACC   ada-exp.c
mkdir -p -- target/.deps
mkdir -p -- nat/.deps
  YACC   c-exp.c
  YACC   cp-name-parser.c
  YACC   d-exp.c
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr]
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
  CXX    findcmd.o
  CXX    findvar.o
  CXX    fork-child.o
  CXX    frame-base.o
  CXX    frame-unwind.o
  CXX    frame.o
  CXX    frv-linux-tdep.o
  CXX    frv-tdep.o
  CXX    ft32-tdep.o
  CXX    gcore.o
  CXX    gdb-demangle.o
  CXX    gdb_bfd.o
  CXX    gdb_obstack.o
  CXX    gdb_regex.o
  CXX    gdbarch-selftests.o
  CXX    gdbarch.o
  CXX    gdbsupport/agent.o
  CXX    gdbsupport/btrace-common.o
  CXX    gdbsupport/buffer.o
  CXX    gdbsupport/cleanups.o
  CXX    gdbsupport/common-debug.o
  CXX    gdbsupport/common-exceptions.o
  CXX    gdbsupport/common-inferior.o
  CXX    gdbsupport/common-regcache.o
  CXX    gdbsupport/common-utils.o
  CXX    gdbsupport/environ.o
  CXX    gdbsupport/errors.o
  CXX    gdbsupport/fileio.o
  CXX    gdbsupport/filestuff.o
  CXX    gdbsupport/format.o
  CXX    gdbsupport/gdb-dlfcn.o
  CXX    gdbsupport/gdb_tilde_expand.o
  CXX    gdbsupport/gdb_vecs.o
  CXX    gdbsupport/job-control.o
  CXX    gdbsupport/netstuff.o
  CXX    gdbsupport/new-op.o
  CXX    gdbsupport/pathstuff.o
  CXX    gdbsupport/print-utils.o
  CXX    gdbsupport/ptid.o
  CXX    gdbsupport/rsp-low.o
  CXX    gdbsupport/run-time-clock.o
  CXX    gdbsupport/safe-strerror.o
  CXX    gdbsupport/scoped_mmap.o
  CXX    gdbsupport/selftest.o
  CXX    gdbsupport/signals-state-save-restore.o
  CXX    gdbsupport/signals.o
  CXX    gdbsupport/tdesc.o
  CXX    gdbsupport/thread-pool.o
  CXX    gdbsupport/xml-utils.o
  CXX    gdbtypes.o
  CXX    glibc-tdep.o
  CXX    gnu-v2-abi.o
  CXX    gnu-v3-abi.o
  YACC   go-exp.c
  CXX    go-lang.o
  CXX    go-typeprint.o
../../binutils-gdb/gdb/gdbsupport/thread-pool.c:44:1: error: 'DIAGNOSTIC_IGNORE_UNUSED_FUNCTION' does not name a type; did you mean 'DIAGNOSTIC_IGNORE_STRINGOP_TRUNCATION'?
 DIAGNOSTIC_IGNORE_UNUSED_FUNCTION
 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 DIAGNOSTIC_IGNORE_STRINGOP_TRUNCATION
../../binutils-gdb/gdb/gdbsupport/thread-pool.c: In member function 'void gdb::thread_pool::thread_function()':
../../binutils-gdb/gdb/gdbsupport/thread-pool.c:142:52: error: invalid conversion from 'int (*)(pthread_t, const char*) throw () {aka int (*)(long unsigned int, const char*) throw ()}' to 'void (*)(const char*)' [-fpermissive]
   set_thread_name (pthread_setname_np, "gdb worker");
                                                    ^
../../binutils-gdb/gdb/gdbsupport/thread-pool.c:57:1: note:   initializing argument 1 of 'void set_thread_name(void (*)(const char*), const char*)'
 set_thread_name (void (*set_name) (const char *), const char *name)
 ^~~~~~~~~~~~~~~
Makefile:1660: recipe for target 'gdbsupport/thread-pool.o' failed
make[2]: *** [gdbsupport/thread-pool.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=165.335641
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-11 20:15 [binutils-gdb] Remove more shifts for sign/zero extension gdb-buildbot
@ 2019-12-11 20:18 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-11 20:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1373

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        1d61b032265e69317f42e8019e072506f11890c5

Subject of commit:
        Remove more shifts for sign/zero extension

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[2]: Entering directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs arch/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs cli/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs mi/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs gdbsupport/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs guile/.deps
mkdir -p -- arch/.deps
mkdir -p -- cli/.deps
mkdir -p -- mi/.deps
mkdir -p -- gdbsupport/.deps
mkdir -p -- compile/.deps
mkdir -p -- tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
mkdir -p -- unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- guile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
  LEX    ada-lex.c
mkdir -p -- python/.deps
mkdir -p -- target/.deps
  YACC   ada-exp.c
mkdir -p -- nat/.deps
  YACC   c-exp.c
  YACC   cp-name-parser.c
  YACC   d-exp.c
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr]
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
  CXX    findcmd.o
  CXX    findvar.o
  CXX    fork-child.o
  CXX    frame-base.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function 'void fbsd_core_info_proc_status(gdbarch*)':
../../binutils-gdb/gdb/fbsd-tdep.c:1436:57: error: format '%d' expects argument of type 'int', but argument 2 has type 'bfd_signed_vma {aka long int}' [-Werror=format=]
      bfd_get_signed_8 (core_bfd, descdata + kp->ki_nice));
                                                         ^
  CXX    frame-unwind.o
  CXX    frame.o
  CXX    frv-linux-tdep.o
  CXX    frv-tdep.o
  CXX    ft32-tdep.o
cc1plus: all warnings being treated as errors
Makefile:1660: recipe for target 'fbsd-tdep.o' failed
make[2]: *** [fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=157.155699
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-11 20:02 [binutils-gdb] bfd signed overflow fixes gdb-buildbot
@ 2019-12-11 20:07 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-11 20:07 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1372

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        13c9c48599ebc8ad2f3a1fb9f672740219cd3841

Subject of commit:
        bfd signed overflow fixes

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

checking whether vsnprintf is declared... (cached) yes
checking whether strtol is declared... (cached) yes
checking whether strtoul is declared... (cached) yes
checking whether strtoll is declared... (cached) yes
checking whether strtoull is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether perror is declared... yes
checking whether vasprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking for struct stat.st_blocks... (cached) yes
checking for struct stat.st_blksize... (cached) yes
checking for struct user_regs_struct.fs_base... (cached) no
checking for struct user_regs_struct.gs_base... (cached) no
checking for socklen_t... (cached) yes
checking for Elf32_auxv_t... yes
checking for Elf64_auxv_t... yes
checking for PTRACE_GETREGS... no
checking for PTRACE_GETFPXREGS... no
checking for lwpid_t in sys/procfs.h... (cached) yes
checking for psaddr_t in sys/procfs.h... (cached) yes
checking for prgregset_t in sys/procfs.h... (cached) yes
checking for prfpregset_t in sys/procfs.h... (cached) yes
checking for elf_fpregset_t in sys/procfs.h... (cached) yes
checking for dlopen in -ldl... yes
checking for the dynamic export flag... -Wl,--dynamic-list
checking for TD_VERSION... yes
checking whether the target supports __sync_*_compare_and_swap... yes
checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
configure: updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depdir commands
mkdir -p -- .deps
config.status: executing gdbdepdir commands
mkdir -p -- arch/.deps
mkdir -p -- gdbsupport/.deps
make[2]: Entering directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs arch/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs cli/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs mi/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs gdbsupport/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs guile/.deps
mkdir -p -- cli/.deps
mkdir -p -- arch/.deps
mkdir -p -- mi/.deps
mkdir -p -- gdbsupport/.deps
mkdir -p -- compile/.deps
mkdir -p -- tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
mkdir -p -- unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- guile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
  LEX    ada-lex.c
mkdir -p -- python/.deps
  YACC   ada-exp.c
mkdir -p -- target/.deps
mkdir -p -- nat/.deps
  YACC   c-exp.c
  YACC   cp-name-parser.c
  YACC   d-exp.c
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr]
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
  CXX    findcmd.o
  CXX    findvar.o
  CXX    fork-child.o
  CXX    frame-base.o
../../binutils-gdb/gdb/fbsd-tdep.c: In function 'void fbsd_core_info_proc_status(gdbarch*)':
../../binutils-gdb/gdb/fbsd-tdep.c:1436:57: error: format '%d' expects argument of type 'int', but argument 2 has type 'bfd_signed_vma {aka long int}' [-Werror=format=]
      bfd_get_signed_8 (core_bfd, descdata + kp->ki_nice));
                                                         ^
  CXX    frame-unwind.o
  CXX    frame.o
  CXX    frv-linux-tdep.o
  CXX    frv-tdep.o
  CXX    ft32-tdep.o
cc1plus: all warnings being treated as errors
Makefile:1660: recipe for target 'fbsd-tdep.o' failed
make[2]: *** [fbsd-tdep.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=155.866426
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-10 19:28 [binutils-gdb] Replace the remaining uses of strerror with safe_strerror gdb-buildbot
@ 2019-12-10 19:28 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-12-10 19:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1343

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        ab7d13f07027e6232a21448ef51f0a52a96738a9

Subject of commit:
        Replace the remaining uses of strerror with safe_strerror

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs cli/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs mi/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs gdbsupport/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs guile/.deps
mkdir -p -- arch/.deps
mkdir -p -- cli/.deps
mkdir -p -- mi/.deps
mkdir -p -- gdbsupport/.deps
mkdir -p -- compile/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs python/.deps
mkdir -p -- tui/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs target/.deps
mkdir -p -- unittests/.deps
/bin/bash ../../binutils-gdb/gdb/../mkinstalldirs nat/.deps
mkdir -p -- guile/.deps
  LEX    ada-lex.c
mkdir -p -- python/.deps
  YACC   ada-exp.c
mkdir -p -- target/.deps
mkdir -p -- nat/.deps
  YACC   c-exp.c
  YACC   cp-name-parser.c
  YACC   d-exp.c
  YACC   f-exp.c
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 42 shift/reduce conflicts [-Wconflicts-sr]
/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/c-exp.y: warning: 53 reduce/reduce conflicts [-Wconflicts-rr]
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
  CXX    findcmd.o
  CXX    findvar.o
  CXX    fork-child.o
  CXX    frame-base.o
  CXX    frame-unwind.o
  CXX    frame.o
  CXX    frv-linux-tdep.o
  CXX    frv-tdep.o
  CXX    ft32-tdep.o
  CXX    gcore.o
  CXX    gdb-demangle.o
  CXX    gdb_bfd.o
  CXX    gdb_obstack.o
  CXX    gdb_regex.o
  CXX    gdbarch-selftests.o
  CXX    gdbarch.o
  CXX    gdbsupport/agent.o
  CXX    gdbsupport/btrace-common.o
  CXX    gdbsupport/buffer.o
  CXX    gdbsupport/cleanups.o
  CXX    gdbsupport/common-debug.o
  CXX    gdbsupport/common-exceptions.o
  CXX    gdbsupport/common-inferior.o
  CXX    gdbsupport/common-regcache.o
  CXX    gdbsupport/common-utils.o
  CXX    gdbsupport/environ.o
  CXX    gdbsupport/errors.o
  CXX    gdbsupport/fileio.o
  CXX    gdbsupport/filestuff.o
  CXX    gdbsupport/format.o
  CXX    gdbsupport/gdb-dlfcn.o
  CXX    gdbsupport/gdb_tilde_expand.o
  CXX    gdbsupport/gdb_vecs.o
  CXX    gdbsupport/job-control.o
  CXX    gdbsupport/netstuff.o
  CXX    gdbsupport/new-op.o
  CXX    gdbsupport/pathstuff.o
  CXX    gdbsupport/print-utils.o
  CXX    gdbsupport/ptid.o
  CXX    gdbsupport/rsp-low.o
  CXX    gdbsupport/run-time-clock.o
  CXX    gdbsupport/safe-strerror.o
  CXX    gdbsupport/scoped_mmap.o
  CXX    gdbsupport/selftest.o
  CXX    gdbsupport/signals-state-save-restore.o
  CXX    gdbsupport/signals.o
  CXX    gdbsupport/tdesc.o
  CXX    gdbsupport/thread-pool.o
  CXX    gdbsupport/xml-utils.o
../../binutils-gdb/gdb/gdbsupport/safe-strerror.c:38:1: error: 'char* select_strerror_r(char*, char*)' defined but not used [-Werror=unused-function]
 select_strerror_r (char *res, char *)
 ^~~~~~~~~~~~~~~~~
cc1plus: all warnings being treated as errors
Makefile:1660: recipe for target 'gdbsupport/safe-strerror.o' failed
make[2]: *** [gdbsupport/safe-strerror.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=163.402244
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-10-21 19:18 [binutils-gdb] gdb: Update comments that reference VEC or vec.h gdb-buildbot
@ 2019-10-21 19:30 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-10-21 19:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/967

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        791b7405f4627ad65fd636d57adb9e5749d0b9e7

Subject of commit:
        gdb: Update comments that reference VEC or vec.h

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    dll.o
  CXX    event-loop.o
  CXX    fork-child.o
  CXX    fork-inferior.o
  CXX    gdbsupport/agent.o
  CXX    gdbsupport/btrace-common.o
  CXX    gdbsupport/buffer.o
  CXX    gdbsupport/cleanups.o
  CXX    gdbsupport/common-debug.o
  CXX    gdbsupport/common-exceptions.o
  CXX    gdbsupport/common-inferior.o
  CXX    gdbsupport/common-regcache.o
  CXX    gdbsupport/common-utils.o
  CXX    gdbsupport/environ.o
  CXX    gdbsupport/errors.o
  CXX    gdbsupport/fileio.o
  CXX    gdbsupport/filestuff.o
  CXX    gdbsupport/format.o
  CXX    gdbsupport/gdb-dlfcn.o
  CXX    gdbsupport/gdb_tilde_expand.o
  CXX    gdbsupport/gdb_vecs.o
  CXX    gdbsupport/job-control.o
  CXX    gdbsupport/netstuff.o
  CXX    gdbsupport/new-op.o
  CXX    gdbsupport/pathstuff.o
  CXX    gdbsupport/posix-strerror.o
  CXX    gdbsupport/print-utils.o
  CXX    gdbsupport/ptid.o
  CXX    gdbsupport/rsp-low.o
  CXX    gdbsupport/selftest.o
  CXX    gdbsupport/signals-state-save-restore.o
  CXX    gdbsupport/signals.o
  CXX    gdbsupport/tdesc.o
  CXX    gdbsupport/xml-utils.o
  CXX    hostio-errno.o
  CXX    hostio.o
  CXX    inferiors.o
  CXX    linux-aarch32-low.o
  CXX    linux-aarch32-tdesc.o
  CXX    linux-aarch64-low.o
  CXX    linux-aarch64-tdesc.o
  CXX    linux-low.o
  CXX    linux-namespaces.o
  CXX    linux-osdata.o
  CXX    linux-personality.o
  CXX    linux-procfs.o
  CXX    linux-ptrace.o
  CXX    linux-waitpid.o
  CXX    mem-break.o
  CXX    notif.o
  CXX    proc-service.o
  CXX    regcache.o
  CXX    remote-utils.o
  CXX    server.o
  CXX    symbol.o
  CXX    target.o
  CXX    tdesc.o
  CXX    thread-db.o
  CXX    tracepoint.o
  CXX    utils.o
  CXX    version.o
  CXX    waitstatus.o
  CXX    gdbreplay.o
  CXX    alloc-ipa.o
  CXX    arch/aarch64-ipa.o
  CXX    ax-ipa.o
  CXX    gdbsupport/common-utils-ipa.o
  CXX    gdbsupport/errors-ipa.o
  CXX    gdbsupport/format-ipa.o
  CXX    gdbsupport/print-utils-ipa.o
  CXX    gdbsupport/rsp-low-ipa.o
  CXX    gdbsupport/tdesc-ipa.o
  CXX    linux-aarch64-ipa.o
  CXX    linux-aarch64-tdesc-ipa.o
  CXX    regcache-ipa.o
  CXX    remote-utils-ipa.o
  CXX    tdesc-ipa.o
  CXX    tracepoint-ipa.o
  CXX    utils-ipa.o
  CXXLD  gdbserver
  CXXLD  gdbreplay
  CXXLD  libinproctrace.so
g++: error: gdbsupport/vec-ipa.o: No such file or directory
Makefile:440: recipe for target 'libinproctrace.so' failed
make[4]: *** [libinproctrace.so] Error 1
make[4]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver'
Makefile:1985: recipe for target 'subdir_do' failed
make[3]: *** [subdir_do] Error 1
make[3]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:1630: recipe for target 'all' failed
make[2]: *** [all] Error 2
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=345.008736
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-10-21 19:12 [binutils-gdb] gdb: Remove vec.{c,h} and update code to not include vec.h gdb-buildbot
@ 2019-10-21 19:24 ` gdb-buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: gdb-buildbot @ 2019-10-21 19:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/966

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        0dc327459b19e6765c8fe80957f5c8620611628e

Subject of commit:
        gdb: Remove vec.{c,h} and update code to not include vec.h

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    dll.o
  CXX    event-loop.o
  CXX    fork-child.o
  CXX    fork-inferior.o
  CXX    gdbsupport/agent.o
  CXX    gdbsupport/btrace-common.o
  CXX    gdbsupport/buffer.o
  CXX    gdbsupport/cleanups.o
  CXX    gdbsupport/common-debug.o
  CXX    gdbsupport/common-exceptions.o
  CXX    gdbsupport/common-inferior.o
  CXX    gdbsupport/common-regcache.o
  CXX    gdbsupport/common-utils.o
  CXX    gdbsupport/environ.o
  CXX    gdbsupport/errors.o
  CXX    gdbsupport/fileio.o
  CXX    gdbsupport/filestuff.o
  CXX    gdbsupport/format.o
  CXX    gdbsupport/gdb-dlfcn.o
  CXX    gdbsupport/gdb_tilde_expand.o
  CXX    gdbsupport/gdb_vecs.o
  CXX    gdbsupport/job-control.o
  CXX    gdbsupport/netstuff.o
  CXX    gdbsupport/new-op.o
  CXX    gdbsupport/pathstuff.o
  CXX    gdbsupport/posix-strerror.o
  CXX    gdbsupport/print-utils.o
  CXX    gdbsupport/ptid.o
  CXX    gdbsupport/rsp-low.o
  CXX    gdbsupport/selftest.o
  CXX    gdbsupport/signals-state-save-restore.o
  CXX    gdbsupport/signals.o
  CXX    gdbsupport/tdesc.o
  CXX    gdbsupport/xml-utils.o
  CXX    hostio-errno.o
  CXX    hostio.o
  CXX    inferiors.o
  CXX    linux-aarch32-low.o
  CXX    linux-aarch32-tdesc.o
  CXX    linux-aarch64-low.o
  CXX    linux-aarch64-tdesc.o
  CXX    linux-low.o
  CXX    linux-namespaces.o
  CXX    linux-osdata.o
  CXX    linux-personality.o
  CXX    linux-procfs.o
  CXX    linux-ptrace.o
  CXX    linux-waitpid.o
  CXX    mem-break.o
  CXX    notif.o
  CXX    proc-service.o
  CXX    regcache.o
  CXX    remote-utils.o
  CXX    server.o
  CXX    symbol.o
  CXX    target.o
  CXX    tdesc.o
  CXX    thread-db.o
  CXX    tracepoint.o
  CXX    utils.o
  CXX    version.o
  CXX    waitstatus.o
  CXX    gdbreplay.o
  CXX    alloc-ipa.o
  CXX    arch/aarch64-ipa.o
  CXX    ax-ipa.o
  CXX    gdbsupport/common-utils-ipa.o
  CXX    gdbsupport/errors-ipa.o
  CXX    gdbsupport/format-ipa.o
  CXX    gdbsupport/print-utils-ipa.o
  CXX    gdbsupport/rsp-low-ipa.o
  CXX    gdbsupport/tdesc-ipa.o
  CXX    linux-aarch64-ipa.o
  CXX    linux-aarch64-tdesc-ipa.o
  CXX    regcache-ipa.o
  CXX    remote-utils-ipa.o
  CXX    tdesc-ipa.o
  CXX    tracepoint-ipa.o
  CXX    utils-ipa.o
  CXXLD  gdbserver
  CXXLD  gdbreplay
  CXXLD  libinproctrace.so
g++: error: gdbsupport/vec-ipa.o: No such file or directory
Makefile:440: recipe for target 'libinproctrace.so' failed
make[4]: *** [libinproctrace.so] Error 1
make[4]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver'
Makefile:1985: recipe for target 'subdir_do' failed
make[3]: *** [subdir_do] Error 1
make[3]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:1630: recipe for target 'all' failed
make[2]: *** [all] Error 2
make[2]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:9229: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/work/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:851: recipe for target 'all' failed
make: *** [all] Error 2
program finished with exit code 2
elapsedTime=344.233592
==============================================


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-01-16 22:52 [binutils-gdb] RISC-V: Support ELF attribute for gas and readelf sergiodj+buildbot
@ 2019-01-19 16:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2019-01-19 16:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/476>

Commit(s) tested:
	2dc8dd17cd595bd7a1b0824c83380af52e633fc1

Author(s) (in the same order as the commits):
	Jim Wilson <jimw@sifive.com>

Subject:
	RISC-V: Support ELF attribute for gas and readelf.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2d/2dc8dd17cd595bd7a1b0824c83380af52e633fc1/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-hppa.lo -MD -MP -MF .deps/elf32-hppa.Tpo -c ../../binutils-gdb/bfd/elf32-hppa.c -o elf32-hppa.o
mv -f .deps/elf32-dlx.Tpo .deps/elf32-dlx.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-ip2k.lo -MD -MP -MF .deps/elf32-ip2k.Tpo -c -o elf32-ip2k.lo ../../binutils-gdb/bfd/elf32-ip2k.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-i386.lo -MD -MP -MF .deps/elf32-i386.Tpo -c ../../binutils-gdb/bfd/elf32-i386.c -o elf32-i386.o
mv -f .deps/elf32-epiphany.Tpo .deps/elf32-epiphany.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-iq2000.lo -MD -MP -MF .deps/elf32-iq2000.Tpo -c -o elf32-iq2000.lo ../../binutils-gdb/bfd/elf32-iq2000.c
mv -f .deps/elf32-cr16.Tpo .deps/elf32-cr16.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-lm32.lo -MD -MP -MF .deps/elf32-lm32.Tpo -c -o elf32-lm32.lo ../../binutils-gdb/bfd/elf32-lm32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-ip2k.lo -MD -MP -MF .deps/elf32-ip2k.Tpo -c ../../binutils-gdb/bfd/elf32-ip2k.c -o elf32-ip2k.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-iq2000.lo -MD -MP -MF .deps/elf32-iq2000.Tpo -c ../../binutils-gdb/bfd/elf32-iq2000.c -o elf32-iq2000.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-lm32.lo -MD -MP -MF .deps/elf32-lm32.Tpo -c ../../binutils-gdb/bfd/elf32-lm32.c -o elf32-lm32.o
mv -f .deps/elf32-fr30.Tpo .deps/elf32-fr30.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m32c.lo -MD -MP -MF .deps/elf32-m32c.Tpo -c -o elf32-m32c.lo ../../binutils-gdb/bfd/elf32-m32c.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m32c.lo -MD -MP -MF .deps/elf32-m32c.Tpo -c ../../binutils-gdb/bfd/elf32-m32c.c -o elf32-m32c.o
mv -f .deps/elf32-avr.Tpo .deps/elf32-avr.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m32r.lo -MD -MP -MF .deps/elf32-m32r.Tpo -c -o elf32-m32r.lo ../../binutils-gdb/bfd/elf32-m32r.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m32r.lo -MD -MP -MF .deps/elf32-m32r.Tpo -c ../../binutils-gdb/bfd/elf32-m32r.c -o elf32-m32r.o
mv -f .deps/elf-m10300.Tpo .deps/elf-m10300.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m68hc11.lo -MD -MP -MF .deps/elf32-m68hc11.Tpo -c -o elf32-m68hc11.lo ../../binutils-gdb/bfd/elf32-m68hc11.c
mv -f .deps/elf32-am33lin.Tpo .deps/elf32-am33lin.Plo
mv -f .deps/elf32-cris.Tpo .deps/elf32-cris.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m68hc12.lo -MD -MP -MF .deps/elf32-m68hc12.Tpo -c -o elf32-m68hc12.lo ../../binutils-gdb/bfd/elf32-m68hc12.c
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m68hc1x.lo -MD -MP -MF .deps/elf32-m68hc1x.Tpo -c -o elf32-m68hc1x.lo ../../binutils-gdb/bfd/elf32-m68hc1x.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m68hc11.lo -MD -MP -MF .deps/elf32-m68hc11.Tpo -c ../../binutils-gdb/bfd/elf32-m68hc11.c -o elf32-m68hc11.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m68hc12.lo -MD -MP -MF .deps/elf32-m68hc12.Tpo -c ../../binutils-gdb/bfd/elf32-m68hc12.c -o elf32-m68hc12.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m68hc1x.lo -MD -MP -MF .deps/elf32-m68hc1x.Tpo -c ../../binutils-gdb/bfd/elf32-m68hc1x.c -o elf32-m68hc1x.o
mv -f .deps/elf32-ft32.Tpo .deps/elf32-ft32.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m68k.lo -MD -MP -MF .deps/elf32-m68k.Tpo -c -o elf32-m68k.lo ../../binutils-gdb/bfd/elf32-m68k.c
mv -f .deps/elf32-csky.Tpo .deps/elf32-csky.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-s12z.lo -MD -MP -MF .deps/elf32-s12z.Tpo -c -o elf32-s12z.lo ../../binutils-gdb/bfd/elf32-s12z.c
mv -f .deps/elf32-h8300.Tpo .deps/elf32-h8300.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-mcore.lo -MD -MP -MF .deps/elf32-mcore.Tpo -c -o elf32-mcore.lo ../../binutils-gdb/bfd/elf32-mcore.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m68k.lo -MD -MP -MF .deps/elf32-m68k.Tpo -c ../../binutils-gdb/bfd/elf32-m68k.c -o elf32-m68k.o
mv -f .deps/elf32-iq2000.Tpo .deps/elf32-iq2000.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-mep.lo -MD -MP -MF .deps/elf32-mep.Tpo -c -o elf32-mep.lo ../../binutils-gdb/bfd/elf32-mep.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-s12z.lo -MD -MP -MF .deps/elf32-s12z.Tpo -c ../../binutils-gdb/bfd/elf32-s12z.c -o elf32-s12z.o
mv -f .deps/elf32-bfin.Tpo .deps/elf32-bfin.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-metag.lo -MD -MP -MF .deps/elf32-metag.Tpo -c -o elf32-metag.lo ../../binutils-gdb/bfd/elf32-metag.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-mcore.lo -MD -MP -MF .deps/elf32-mcore.Tpo -c ../../binutils-gdb/bfd/elf32-mcore.c -o elf32-mcore.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-mep.lo -MD -MP -MF .deps/elf32-mep.Tpo -c ../../binutils-gdb/bfd/elf32-mep.c -o elf32-mep.o
mv -f .deps/elf32-ip2k.Tpo .deps/elf32-ip2k.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-microblaze.lo -MD -MP -MF .deps/elf32-microblaze.Tpo -c -o elf32-microblaze.lo ../../binutils-gdb/bfd/elf32-microblaze.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-metag.lo -MD -MP -MF .deps/elf32-metag.Tpo -c ../../binutils-gdb/bfd/elf32-metag.c -o elf32-metag.o
mv -f .deps/elf32-arc.Tpo .deps/elf32-arc.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-microblaze.lo -MD -MP -MF .deps/elf32-microblaze.Tpo -c ../../binutils-gdb/bfd/elf32-microblaze.c -o elf32-microblaze.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-moxie.lo -MD -MP -MF .deps/elf32-moxie.Tpo -c -o elf32-moxie.lo ../../binutils-gdb/bfd/elf32-moxie.c
mv -f .deps/elf32-m68hc12.Tpo .deps/elf32-m68hc12.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-msp430.lo -MD -MP -MF .deps/elf32-msp430.Tpo -c -o elf32-msp430.lo ../../binutils-gdb/bfd/elf32-msp430.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-moxie.lo -MD -MP -MF .deps/elf32-moxie.Tpo -c ../../binutils-gdb/bfd/elf32-moxie.c -o elf32-moxie.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-msp430.lo -MD -MP -MF .deps/elf32-msp430.Tpo -c ../../binutils-gdb/bfd/elf32-msp430.c -o elf32-msp430.o
mv -f .deps/elf32-m68hc11.Tpo .deps/elf32-m68hc11.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-mt.lo -MD -MP -MF .deps/elf32-mt.Tpo -c -o elf32-mt.lo ../../binutils-gdb/bfd/elf32-mt.c
mv -f .deps/elf32-m32c.Tpo .deps/elf32-m32c.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-nds32.lo -MD -MP -MF .deps/elf32-nds32.Tpo -c -o elf32-nds32.lo ../../binutils-gdb/bfd/elf32-nds32.c
mv -f .deps/elf32-lm32.Tpo .deps/elf32-lm32.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-nios2.lo -MD -MP -MF .deps/elf32-nios2.Tpo -c -o elf32-nios2.lo ../../binutils-gdb/bfd/elf32-nios2.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-mt.lo -MD -MP -MF .deps/elf32-mt.Tpo -c ../../binutils-gdb/bfd/elf32-mt.c -o elf32-mt.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-nds32.lo -MD -MP -MF .deps/elf32-nds32.Tpo -c ../../binutils-gdb/bfd/elf32-nds32.c -o elf32-nds32.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-nios2.lo -MD -MP -MF .deps/elf32-nios2.Tpo -c ../../binutils-gdb/bfd/elf32-nios2.c -o elf32-nios2.o
mv -f .deps/elf32-s12z.Tpo .deps/elf32-s12z.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-or1k.lo -MD -MP -MF .deps/elf32-or1k.Tpo -c -o elf32-or1k.lo ../../binutils-gdb/bfd/elf32-or1k.c
mv -f .deps/elf32-m68hc1x.Tpo .deps/elf32-m68hc1x.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-pj.lo -MD -MP -MF .deps/elf32-pj.Tpo -c -o elf32-pj.lo ../../binutils-gdb/bfd/elf32-pj.c
gcc: internal compiler error: Segmentation fault (program cc1)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-5/README.Bugs> for instructions.
Makefile:1598: recipe for target 'elf32-moxie.lo' failed
make[4]: *** [elf32-moxie.lo] Error 1
make[4]: *** Waiting for unfinished jobs....
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-or1k.lo -MD -MP -MF .deps/elf32-or1k.Tpo -c ../../binutils-gdb/bfd/elf32-or1k.c -o elf32-or1k.o
mv -f .deps/elf32-mcore.Tpo .deps/elf32-mcore.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-pj.lo -MD -MP -MF .deps/elf32-pj.Tpo -c ../../binutils-gdb/bfd/elf32-pj.c -o elf32-pj.o
mv -f .deps/elf32-i386.Tpo .deps/elf32-i386.Plo
mv -f .deps/elf32-mep.Tpo .deps/elf32-mep.Plo
mv -f .deps/elf32-m32r.Tpo .deps/elf32-m32r.Plo
mv -f .deps/elf32-hppa.Tpo .deps/elf32-hppa.Plo
mv -f .deps/elf32-mt.Tpo .deps/elf32-mt.Plo
mv -f .deps/elf32-pj.Tpo .deps/elf32-pj.Plo
mv -f .deps/elf32-frv.Tpo .deps/elf32-frv.Plo
mv -f .deps/elf32-m68k.Tpo .deps/elf32-m68k.Plo
mv -f .deps/elf32-metag.Tpo .deps/elf32-metag.Plo
mv -f .deps/elf32-msp430.Tpo .deps/elf32-msp430.Plo
mv -f .deps/elf32-microblaze.Tpo .deps/elf32-microblaze.Plo
mv -f .deps/elf32-or1k.Tpo .deps/elf32-or1k.Plo
mv -f .deps/elf32-nios2.Tpo .deps/elf32-nios2.Plo
mv -f .deps/elf32-nds32.Tpo .deps/elf32-nds32.Plo
make[4]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/bfd'
Makefile:1641: recipe for target 'all-recursive' failed
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/bfd'
Makefile:1167: recipe for target 'all' failed
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/bfd'
make[2]: *** [all] Error 2
Makefile:2689: recipe for target 'all-bfd' failed
make[1]: *** [all-bfd] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-01-10 17:12 [binutils-gdb] gdb: Improve scoped_switch_fork_info class sergiodj+buildbot
@ 2019-01-14 16:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2019-01-14 16:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/444>

Commit(s) tested:
	1ef8573cc77c91feeef3edab74d383d20809eb33

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	gdb: Improve scoped_switch_fork_info class

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1e/1ef8573cc77c91feeef3edab74d383d20809eb33/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    exceptions.o
  CXX    exec.o
  CXX    expprint.o
  CXX    extension.o
  CXX    f-exp.o
  CXX    f-lang.o
  CXX    f-typeprint.o
  CXX    f-valprint.o
  CXX    fbsd-tdep.o
  CXX    filename-seen-cache.o
  CXX    filesystem.o
  CXX    findcmd.o
  CXX    findvar.o
  CXX    fork-child.o
  CXX    frame-base.o
  CXX    frame-unwind.o
  CXX    frame.o
  CXX    frv-linux-tdep.o
  CXX    frv-tdep.o
  CXX    ft32-tdep.o
  CXX    gcore.o
  CXX    gdb-dlfcn.o
  CXX    gdb_bfd.o
  CXX    gdb_obstack.o
  CXX    gdb_regex.o
  CXX    gdb_usleep.o
  CXX    gdbarch-selftests.o
  CXX    gdbarch.o
  CXX    gdbtypes.o
  CXX    glibc-tdep.o
  CXX    gnu-v2-abi.o
  CXX    gnu-v3-abi.o
  CXX    go-exp.o
  CXX    go-lang.o
  CXX    go-typeprint.o
  CXX    go-valprint.o
  CXX    guile/guile.o
  CXX    h8300-tdep.o
  CXX    hppa-bsd-tdep.o
  CXX    hppa-linux-tdep.o
  CXX    hppa-nbsd-tdep.o
  CXX    hppa-obsd-tdep.o
  CXX    hppa-tdep.o
  CXX    i386-bsd-tdep.o
  CXX    i386-cygwin-tdep.o
  CXX    i386-darwin-tdep.o
  CXX    i386-dicos-tdep.o
  CXX    i386-fbsd-tdep.o
  CXX    i386-gnu-tdep.o
  CXX    i386-go32-tdep.o
  CXX    i386-linux-tdep.o
  CXX    i386-nbsd-tdep.o
  CXX    i386-nto-tdep.o
  CXX    i386-obsd-tdep.o
  CXX    i386-sol2-tdep.o
  CXX    i386-tdep.o
  CXX    i387-tdep.o
  CXX    ia64-linux-tdep.o
  CXX    ia64-tdep.o
  CXX    ia64-vms-tdep.o
  CXX    inf-child.o
  CXX    inf-loop.o
  CXX    inf-ptrace.o
  CXX    infcall.o
  CXX    infcmd.o
  CXX    inferior.o
  CXX    inflow.o
  CXX    infrun.o
  CXX    inline-frame.o
  CXX    interps.o
  CXX    iq2000-tdep.o
  CXX    jit.o
  CXX    language.o
  CXX    linespec.o
  CXX    linux-fork.o
  CXX    linux-nat.o
  CXX    linux-record.o
  CXX    linux-tdep.o
  CXX    linux-thread-db.o
  CXX    lm32-tdep.o
  CXX    location.o
  CXX    m2-exp.o
  CXX    m2-lang.o
  CXX    m2-typeprint.o
../../binutils-gdb/gdb/linux-fork.c: In destructor scoped_switch_fork_info::~scoped_switch_fork_info():
../../binutils-gdb/gdb/linux-fork.c:484:27: error: fp was not declared in this scope
        target_pid_to_str (fp->ptid), ex.message);
                           ^
  CXX    m2-valprint.o
  CXX    m32c-tdep.o
Makefile:1641: recipe for target 'linux-fork.o' failed
make[2]: *** [linux-fork.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-01-10  2:59 [binutils-gdb] Remove ALL_MSYMBOLS and ALL_OBJFILE_MSYMBOLS sergiodj+buildbot
@ 2019-01-11  6:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2019-01-11  6:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/421>

Commit(s) tested:
	5325b9bf1ee283c40f076334eb3ea66e1f0a6ade

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Remove ALL_MSYMBOLS and ALL_OBJFILE_MSYMBOLS

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/53/5325b9bf1ee283c40f076334eb3ea66e1f0a6ade/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    mips-tdep.o
  CXX    mips64-obsd-tdep.o
  CXX    mipsread.o
  CXX    mn10300-linux-tdep.o
  CXX    mn10300-tdep.o
  CXX    moxie-tdep.o
  CXX    msp430-tdep.o
  CXX    namespace.o
  CXX    nat/aarch64-linux-hw-point.o
  CXX    nat/aarch64-linux.o
  CXX    nat/aarch64-sve-linux-ptrace.o
  CXX    nat/fork-inferior.o
  CXX    nat/linux-namespaces.o
  CXX    nat/linux-osdata.o
  CXX    nat/linux-personality.o
  CXX    nat/linux-procfs.o
  CXX    nat/linux-ptrace.o
  CXX    nat/linux-waitpid.o
  CXX    nbsd-tdep.o
  CXX    nds32-tdep.o
  CXX    nios2-linux-tdep.o
  CXX    nios2-tdep.o
  CXX    nto-tdep.o
  CXX    objc-lang.o
  CXX    objfiles.o
  CXX    obsd-tdep.o
  CXX    observable.o
  CXX    opencl-lang.o
  CXX    or1k-linux-tdep.o
  CXX    or1k-tdep.o
  CXX    osabi.o
  CXX    osdata.o
  CXX    p-exp.o
  CXX    p-lang.o
  CXX    p-typeprint.o
  CXX    p-valprint.o
  CXX    parse.o
  CXX    posix-hdep.o
  CXX    ppc-fbsd-tdep.o
  CXX    ppc-linux-tdep.o
  CXX    ppc-nbsd-tdep.o
  CXX    ppc-obsd-tdep.o
  CXX    ppc-ravenscar-thread.o
  CXX    ppc-sysv-tdep.o
  CXX    ppc64-tdep.o
  CXX    printcmd.o
  CXX    probe.o
  CXX    proc-service.o
  CXX    process-stratum-target.o
  CXX    producer.o
  CXX    progspace-and-thread.o
  CXX    progspace.o
  CXX    prologue-value.o
  CXX    psymtab.o
  CXX    python/py-arch.o
  CXX    python/py-auto-load.o
  CXX    python/py-block.o
  CXX    python/py-bpevent.o
  CXX    python/py-breakpoint.o
  CXX    python/py-cmd.o
  CXX    python/py-continueevent.o
  CXX    python/py-event.o
  CXX    python/py-evtregistry.o
  CXX    python/py-evts.o
  CXX    python/py-exitedevent.o
  CXX    python/py-finishbreakpoint.o
  CXX    python/py-frame.o
  CXX    python/py-framefilter.o
  CXX    python/py-function.o
  CXX    python/py-gdb-readline.o
  CXX    python/py-inferior.o
  CXX    python/py-infevents.o
  CXX    python/py-infthread.o
  CXX    python/py-instruction.o
  CXX    python/py-lazy-string.o
  CXX    python/py-linetable.o
  CXX    python/py-newobjfileevent.o
  CXX    python/py-objfile.o
  CXX    python/py-param.o
  CXX    python/py-prettyprint.o
  CXX    python/py-progspace.o
  CXX    python/py-record-btrace.o
  CXX    python/py-record-full.o
  CXX    python/py-record.o
  CXX    python/py-signalevent.o
  CXX    python/py-stopevent.o
g++: internal compiler error: Segmentation fault (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-5/README.Bugs> for instructions.
Makefile:1641: recipe for target 'python/py-record.o' failed
make[2]: *** [python/py-record.o] Error 4
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-01-07 13:26 [binutils-gdb] Sync libiberty sources with master version in gcc repository. Updated stabs demangling and cxxfilt tests to match sergiodj+buildbot
@ 2019-01-08  6:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2019-01-08  6:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/401>

Commit(s) tested:
	053af8c9034f92d6e36a1180655ba22a65c56437

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Sync libiberty sources with master version in gcc repository.  Updated stabs demangling and cxxfilt tests to match.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/05/053af8c9034f92d6e36a1180655ba22a65c56437/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    std-regs.o
  CXX    symfile-debug.o
  CXX    symfile-mem.o
  CXX    symfile.o
  CXX    symmisc.o
  CXX    symtab.o
  CXX    target-dcache.o
  CXX    target-descriptions.o
  CXX    target-float.o
  CXX    target-memory.o
  CXX    target.o
  CXX    target/waitstatus.o
  CXX    test-target.o
  CXX    thread-fsm.o
  CXX    thread-iter.o
  CXX    thread.o
  CXX    tic6x-linux-tdep.o
  CXX    tic6x-tdep.o
  CXX    tid-parse.o
  CXX    tilegx-linux-tdep.o
  CXX    tilegx-tdep.o
  CXX    top.o
  CXX    tracefile-tfile.o
  CXX    tracefile.o
  CXX    tracepoint.o
  CXX    trad-frame.o
  CXX    tramp-frame.o
  CXX    typeprint.o
  CXX    ui-file.o
  CXX    ui-out.o
  CXX    ui-style.o
  CXX    unittests/array-view-selftests.o
  CXX    unittests/cli-utils-selftests.o
  CXX    unittests/common-utils-selftests.o
  CXX    unittests/copy_bitwise-selftests.o
  CXX    unittests/environ-selftests.o
  CXX    unittests/format_pieces-selftests.o
  CXX    unittests/function-view-selftests.o
  CXX    unittests/lookup_name_info-selftests.o
  CXX    unittests/memory-map-selftests.o
  CXX    unittests/memrange-selftests.o
  CXX    unittests/mkdir-recursive-selftests.o
  CXX    unittests/observable-selftests.o
  CXX    unittests/offset-type-selftests.o
  CXX    unittests/optional-selftests.o
  CXX    unittests/parse-connection-spec-selftests.o
  CXX    unittests/ptid-selftests.o
  CXX    unittests/rsp-low-selftests.o
  CXX    unittests/scoped_fd-selftests.o
  CXX    unittests/scoped_mmap-selftests.o
  CXX    unittests/scoped_restore-selftests.o
  CXX    unittests/string_view-selftests.o
  CXX    unittests/style-selftests.o
  CXX    unittests/tracepoint-selftests.o
  CXX    unittests/unpack-selftests.o
  CXX    unittests/utils-selftests.o
  CXX    unittests/xml-utils-selftests.o
  CXX    user-regs.o
  CXX    utils.o
  CXX    v850-tdep.o
  CXX    valarith.o
  CXX    valops.o
  CXX    valprint.o
  CXX    value.o
  CXX    varobj.o
  CXX    vax-nbsd-tdep.o
  CXX    vax-tdep.o
  CXX    version.o
  CXX    windows-tdep.o
  CXX    x86-tdep.o
  CXX    xcoffread.o
  CXX    xml-builtin.o
  CXX    xml-support.o
  CXX    xml-syscall.o
  CXX    xml-tdesc.o
  CXX    xstormy16-tdep.o
  CXX    xtensa-config.o
  CXX    xtensa-linux-tdep.o
  CXX    xtensa-tdep.o
  CXX    init.o
  CXXLD  gdb
gdbtypes.o: In function `check_stub_method_group(type*, int)':
/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/gdbtypes.c:2763: undefined reference to `cplus_demangle_opname'
/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/gdbtypes.c:2767: undefined reference to `cplus_demangle_opname'
linespec.o: In function `find_methods(type*, language, char const*, std::__debug::vector<char const*, std::allocator<char const*> >*, std::__debug::vector<type*, std::allocator<type*> >*)':
/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/linespec.c:1260: undefined reference to `cplus_demangle_opname'
/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/linespec.c:1262: undefined reference to `cplus_demangle_opname'
stabsread.o: In function `read_member_functions(field_info*, char const**, type*, objfile*)':
/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/stabsread.c:2713: undefined reference to `cplus_demangle_opname'
stabsread.o:/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/../../binutils-gdb/gdb/stabsread.c:2716: more undefined references to `cplus_demangle_opname' follow
collect2: error: ld returned 1 exit status
Makefile:1892: recipe for target 'gdb' failed
make[2]: *** [gdb] Error 1
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-01-02  6:29 [binutils-gdb] Fix year range in unittests/.../char/empty.cc copyright header sergiodj+buildbot
@ 2019-01-02  6:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2019-01-02  6:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/365>

Commit(s) tested:
	4ada3dfd5c07f0f1045a721a28fc905918ffbdfd

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Fix year range in unittests/.../char/empty.cc copyright header

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4a/4ada3dfd5c07f0f1045a721a28fc905918ffbdfd/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  GEN      arpa/inet.h
  GEN      signal.h
  GEN      math.h
  GEN      stdio.h
  GEN      stdlib.h
  GEN      string.h
  GEN      time.h
  GEN      sys/socket.h
  GEN      sys/stat.h
  GEN      sys/time.h
  GEN      unistd.h
  GEN      wchar.h
  GEN      wctype.h
make  all-recursive
make[9]: Entering directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-gnulib-gdbserver/import'
make[10]: Entering directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-gnulib-gdbserver/import'
  CC       cloexec.o
  CC       dirname-lgpl.o
  CC       basename-lgpl.o
  CC       stripslash.o
  CC       exitfail.o
  CC       fd-hook.o
  CC       filenamecat-lgpl.o
  CC       getprogname.o
  CC       hard-locale.o
  CC       localcharset.o
  CC       malloca.o
  CC       math.o
  CC       openat-die.o
  CC       save-cwd.o
In file included from ../../../../../binutils-gdb/gdb/gdbserver/../gnulib/import/cloexec.c:20:0:
../config.h:2056:19: error: two or more data types in declaration specifiers
 #define socklen_t unsigned int
                   ^
../config.h:2056:28: error: two or more data types in declaration specifiers
 #define socklen_t unsigned int
                            ^
In file included from ../../../../../binutils-gdb/gdb/gdbserver/../gnulib/import/openat-die.c:18:0:
../config.h:2056:19: error: two or more data types in declaration specifiers
 #define socklen_t unsigned int
                   ^
../config.h:2056:28: error: two or more data types in declaration specifiers
 #define socklen_t unsigned int
                            ^
  CC       strnlen1.o
Makefile:1762: recipe for target 'cloexec.o' failed
make[10]: *** [cloexec.o] Error 1
make[10]: *** Waiting for unfinished jobs....
In file included from ../../../../../binutils-gdb/gdb/gdbserver/../gnulib/import/save-cwd.c:21:0:
../config.h:2056:19: error: two or more data types in declaration specifiers
 #define socklen_t unsigned int
                   ^
../config.h:2056:28: error: two or more data types in declaration specifiers
 #define socklen_t unsigned int
                            ^
In file included from ../../../../../binutils-gdb/gdb/gdbserver/../gnulib/import/localcharset.c:20:0:
../config.h:2056:19: error: two or more data types in declaration specifiers
 #define socklen_t unsigned int
                   ^
../config.h:2056:28: error: two or more data types in declaration specifiers
 #define socklen_t unsigned int
                            ^
Makefile:1762: recipe for target 'openat-die.o' failed
make[10]: *** [openat-die.o] Error 1
Makefile:1762: recipe for target 'save-cwd.o' failed
make[10]: *** [save-cwd.o] Error 1
Makefile:1762: recipe for target 'localcharset.o' failed
make[10]: *** [localcharset.o] Error 1
make[10]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-gnulib-gdbserver/import'
Makefile:1782: recipe for target 'all-recursive' failed
make[9]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-gnulib-gdbserver/import'
make[9]: *** [all-recursive] Error 1
Makefile:1612: recipe for target 'all' failed
make[8]: *** [all] Error 2
make[8]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-gnulib-gdbserver/import'
Makefile:161: recipe for target 'subdir_do' failed
make[7]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-gnulib-gdbserver'
make[7]: *** [subdir_do] Error 1
Makefile:116: recipe for target 'all' failed
make[6]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-gnulib-gdbserver'
make[6]: *** [all] Error 2
Makefile:477: recipe for target 'subdir_do' failed
make[5]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver'
make[5]: *** [subdir_do] Error 1
Makefile:406: recipe for target 'all-lib' failed
make[4]: *** [all-lib] Error 2
make[4]: *** Waiting for unfinished jobs....
make[4]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver'
Makefile:1998: recipe for target 'subdir_do' failed
make[3]: *** [subdir_do] Error 1
make[3]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:1636: recipe for target 'all' failed
make[2]: *** [all] Error 2
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2018-12-28 23:52 [binutils-gdb] Fix a crash in jit.c sergiodj+buildbot
@ 2018-12-30 12:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2018-12-30 12:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/349>

Commit(s) tested:
	2cd8cc0b66ca297bce4d08e4f712f86d9f1a2fb6

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Fix a crash in jit.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2c/2cd8cc0b66ca297bce4d08e4f712f86d9f1a2fb6/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    python/py-exitedevent.o
  CXX    python/py-finishbreakpoint.o
  CXX    python/py-frame.o
  CXX    python/py-framefilter.o
  CXX    python/py-function.o
  CXX    python/py-gdb-readline.o
  CXX    python/py-inferior.o
  CXX    python/py-infevents.o
  CXX    python/py-infthread.o
  CXX    python/py-instruction.o
  CXX    python/py-lazy-string.o
  CXX    python/py-linetable.o
  CXX    python/py-newobjfileevent.o
  CXX    python/py-objfile.o
  CXX    python/py-param.o
  CXX    python/py-prettyprint.o
  CXX    python/py-progspace.o
  CXX    python/py-record-btrace.o
  CXX    python/py-record-full.o
  CXX    python/py-record.o
  CXX    python/py-signalevent.o
  CXX    python/py-stopevent.o
  CXX    python/py-symbol.o
  CXX    python/py-symtab.o
  CXX    python/py-threadevent.o
  CXX    python/py-type.o
  CXX    python/py-unwind.o
  CXX    python/py-utils.o
  CXX    python/py-value.o
  CXX    python/py-varobj.o
  CXX    python/py-xmethods.o
  CXX    python/python.o
  CXX    ravenscar-thread.o
  CXX    record-btrace.o
  CXX    record-full.o
  CXX    record.o
  CXX    regcache-dump.o
  CXX    regcache.o
  CXX    reggroups.o
  CXX    registry.o
  CXX    remote-fileio.o
  CXX    remote-notif.o
  CXX    remote.o
  CXX    reverse.o
  CXX    riscv-fbsd-tdep.o
  CXX    riscv-linux-tdep.o
  CXX    riscv-tdep.o
  CXX    rl78-tdep.o
  CXX    rs6000-aix-tdep.o
  CXX    rs6000-lynx178-tdep.o
  CXX    rs6000-tdep.o
  CXX    rust-exp.o
  CXX    rust-lang.o
  CXX    rx-tdep.o
  CXX    s12z-tdep.o
  CXX    s390-linux-tdep.o
  CXX    s390-tdep.o
  CXX    score-tdep.o
  CXX    selftest-arch.o
  CXX    sentinel-frame.o
  CXX    ser-base.o
  CXX    ser-event.o
  CXX    ser-pipe.o
  CXX    ser-tcp.o
  CXX    ser-uds.o
  CXX    ser-unix.o
  CXX    serial.o
  CXX    sh-linux-tdep.o
  CXX    sh-nbsd-tdep.o
  CXX    sh-tdep.o
  CXX    skip.o
  CXX    sol2-tdep.o
  CXX    solib-aix.o
  CXX    solib-darwin.o
  CXX    solib-dsbt.o
  CXX    solib-frv.o
  CXX    solib-spu.o
  CXX    solib-svr4.o
  CXX    solib-target.o
  CXX    solib.o
  CXX    source-cache.o
  CXX    source.o
  CXX    sparc-linux-tdep.o
  CXX    sparc-nbsd-tdep.o
  CXX    sparc-obsd-tdep.o
../../binutils-gdb/gdb/source-cache.c:115:1: error: const char* get_language_name(language) defined but not used [-Werror=unused-function]
 get_language_name (enum language lang)
 ^
cc1plus: all warnings being treated as errors
  CXX    sparc-ravenscar-thread.o
Makefile:1641: recipe for target 'source-cache.o' failed
make[2]: *** [source-cache.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2018-12-28 23:46 [binutils-gdb] Document the "set style" commands sergiodj+buildbot
@ 2018-12-30 10:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2018-12-30 10:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/348>

Commit(s) tested:
	140a4bc099820c909da0eac1df0f56ec468ad3dd

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Document the "set style" commands

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/14/140a4bc099820c909da0eac1df0f56ec468ad3dd/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    python/py-exitedevent.o
  CXX    python/py-finishbreakpoint.o
  CXX    python/py-frame.o
  CXX    python/py-framefilter.o
  CXX    python/py-function.o
  CXX    python/py-gdb-readline.o
  CXX    python/py-inferior.o
  CXX    python/py-infevents.o
  CXX    python/py-infthread.o
  CXX    python/py-instruction.o
  CXX    python/py-lazy-string.o
  CXX    python/py-linetable.o
  CXX    python/py-newobjfileevent.o
  CXX    python/py-objfile.o
  CXX    python/py-param.o
  CXX    python/py-prettyprint.o
  CXX    python/py-progspace.o
  CXX    python/py-record-btrace.o
  CXX    python/py-record-full.o
  CXX    python/py-record.o
  CXX    python/py-signalevent.o
  CXX    python/py-stopevent.o
  CXX    python/py-symbol.o
  CXX    python/py-symtab.o
  CXX    python/py-threadevent.o
  CXX    python/py-type.o
  CXX    python/py-unwind.o
  CXX    python/py-utils.o
  CXX    python/py-value.o
  CXX    python/py-varobj.o
  CXX    python/py-xmethods.o
  CXX    python/python.o
  CXX    ravenscar-thread.o
  CXX    record-btrace.o
  CXX    record-full.o
  CXX    record.o
  CXX    regcache-dump.o
  CXX    regcache.o
  CXX    reggroups.o
  CXX    registry.o
  CXX    remote-fileio.o
  CXX    remote-notif.o
  CXX    remote.o
  CXX    reverse.o
  CXX    riscv-fbsd-tdep.o
  CXX    riscv-linux-tdep.o
  CXX    riscv-tdep.o
  CXX    rl78-tdep.o
  CXX    rs6000-aix-tdep.o
  CXX    rs6000-lynx178-tdep.o
  CXX    rs6000-tdep.o
  CXX    rust-exp.o
  CXX    rust-lang.o
  CXX    rx-tdep.o
  CXX    s12z-tdep.o
  CXX    s390-linux-tdep.o
  CXX    s390-tdep.o
  CXX    score-tdep.o
  CXX    selftest-arch.o
  CXX    sentinel-frame.o
  CXX    ser-base.o
  CXX    ser-event.o
  CXX    ser-pipe.o
  CXX    ser-tcp.o
  CXX    ser-uds.o
  CXX    ser-unix.o
  CXX    serial.o
  CXX    sh-linux-tdep.o
  CXX    sh-nbsd-tdep.o
  CXX    sh-tdep.o
  CXX    skip.o
  CXX    sol2-tdep.o
  CXX    solib-aix.o
  CXX    solib-darwin.o
  CXX    solib-dsbt.o
  CXX    solib-frv.o
  CXX    solib-spu.o
  CXX    solib-svr4.o
  CXX    solib-target.o
  CXX    solib.o
  CXX    source-cache.o
  CXX    source.o
  CXX    sparc-linux-tdep.o
  CXX    sparc-nbsd-tdep.o
  CXX    sparc-obsd-tdep.o
../../binutils-gdb/gdb/source-cache.c:115:1: error: const char* get_language_name(language) defined but not used [-Werror=unused-function]
 get_language_name (enum language lang)
 ^
cc1plus: all warnings being treated as errors
Makefile:1641: recipe for target 'source-cache.o' failed
make[2]: *** [source-cache.o] Error 1
make[2]: *** Waiting for unfinished jobs....
  CXX    sparc-ravenscar-thread.o
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2018-12-28 23:31 [binutils-gdb] Highlight source code using GNU Source Highlight sergiodj+buildbot
@ 2018-12-30 10:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2018-12-30 10:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/347>

Commit(s) tested:
	62f29fda90cf1d5a1899f57ef78452471c707fd6

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Highlight source code using GNU Source Highlight

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/62f29fda90cf1d5a1899f57ef78452471c707fd6/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    python/py-evts.o
  CXX    python/py-exitedevent.o
  CXX    python/py-finishbreakpoint.o
  CXX    python/py-frame.o
  CXX    python/py-framefilter.o
  CXX    python/py-function.o
  CXX    python/py-gdb-readline.o
  CXX    python/py-inferior.o
  CXX    python/py-infevents.o
  CXX    python/py-infthread.o
  CXX    python/py-instruction.o
  CXX    python/py-lazy-string.o
  CXX    python/py-linetable.o
  CXX    python/py-newobjfileevent.o
  CXX    python/py-objfile.o
  CXX    python/py-param.o
  CXX    python/py-prettyprint.o
  CXX    python/py-progspace.o
  CXX    python/py-record-btrace.o
  CXX    python/py-record-full.o
  CXX    python/py-record.o
  CXX    python/py-signalevent.o
  CXX    python/py-stopevent.o
  CXX    python/py-symbol.o
  CXX    python/py-symtab.o
  CXX    python/py-threadevent.o
  CXX    python/py-type.o
  CXX    python/py-unwind.o
  CXX    python/py-utils.o
  CXX    python/py-value.o
  CXX    python/py-varobj.o
  CXX    python/py-xmethods.o
  CXX    python/python.o
  CXX    ravenscar-thread.o
  CXX    record-btrace.o
  CXX    record-full.o
  CXX    record.o
  CXX    regcache-dump.o
  CXX    regcache.o
  CXX    reggroups.o
  CXX    registry.o
  CXX    remote-fileio.o
  CXX    remote-notif.o
  CXX    remote.o
  CXX    reverse.o
  CXX    riscv-fbsd-tdep.o
  CXX    riscv-linux-tdep.o
  CXX    riscv-tdep.o
  CXX    rl78-tdep.o
  CXX    rs6000-aix-tdep.o
  CXX    rs6000-lynx178-tdep.o
  CXX    rs6000-tdep.o
  CXX    rust-exp.o
  CXX    rust-lang.o
  CXX    rx-tdep.o
  CXX    s12z-tdep.o
  CXX    s390-linux-tdep.o
  CXX    s390-tdep.o
  CXX    score-tdep.o
  CXX    selftest-arch.o
  CXX    sentinel-frame.o
  CXX    ser-base.o
  CXX    ser-event.o
  CXX    ser-pipe.o
  CXX    ser-tcp.o
  CXX    ser-uds.o
  CXX    ser-unix.o
  CXX    serial.o
  CXX    sh-linux-tdep.o
  CXX    sh-nbsd-tdep.o
  CXX    sh-tdep.o
  CXX    skip.o
  CXX    sol2-tdep.o
  CXX    solib-aix.o
  CXX    solib-darwin.o
  CXX    solib-dsbt.o
  CXX    solib-frv.o
  CXX    solib-spu.o
  CXX    solib-svr4.o
  CXX    solib-target.o
  CXX    solib.o
  CXX    source-cache.o
  CXX    source.o
  CXX    sparc-linux-tdep.o
  CXX    sparc-nbsd-tdep.o
  CXX    sparc-obsd-tdep.o
../../binutils-gdb/gdb/source-cache.c:115:1: error: const char* get_language_name(language) defined but not used [-Werror=unused-function]
 get_language_name (enum language lang)
 ^
cc1plus: all warnings being treated as errors
Makefile:1641: recipe for target 'source-cache.o' failed
make[2]: *** [source-cache.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2018-12-04 15:19 [binutils-gdb] x86: Don't remove empty GNU_PROPERTY_X86_UINT32_OR_AND properties sergiodj+buildbot
@ 2018-12-04 15:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2018-12-04 15:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/235>

Commit(s) tested:
	fde51dd189a1f8a63896bcb845ef36ea5e1917d5

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Don't remove empty GNU_PROPERTY_X86_UINT32_OR_AND properties

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fde51dd189a1f8a63896bcb845ef36ea5e1917d5/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE  ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xstrerror.c -o pic/xstrerror.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xstrdup.c -o xstrdup.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE   ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xstrerror.c -o noasan/xstrerror.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE  ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xstrndup.c -o pic/xstrndup.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xstrerror.c -o xstrerror.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE  ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xvasprintf.c -o pic/xvasprintf.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE   ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xstrndup.c -o noasan/xstrndup.o; \
else true; fi
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE   ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xvasprintf.c -o noasan/xvasprintf.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xstrndup.c -o xstrndup.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE  ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/setproctitle.c -o pic/setproctitle.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xvasprintf.c -o xvasprintf.o
if [ x"" != x ]; then \
  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE   ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/setproctitle.c -o noasan/setproctitle.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/setproctitle.c -o setproctitle.o
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 ./rust-demangle.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 ./rust-demangle.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 ./rust-demangle.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[6]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-libiberty-gdbserver'
make[5]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver'
  CXX    aarch64-linux-hw-point.o
  CXX    aarch64-linux.o
  CXX    aarch64-sve-linux-ptrace.o
  CXX    aarch64.o
  CXX    arch/aarch64-insn.o
  CXX    arch/aarch64.o
  CXX    arch/arm.o
  CXX    arm-with-neon.o
  CXX    ax.o
  CXX    common/agent.o
  CXX    common/btrace-common.o
  CXX    common/buffer.o
  CXX    common/cleanups.o
  CXX    common/common-debug.o
  CXX    common/common-exceptions.o
  CXX    common/common-regcache.o
../../../binutils-gdb/gdb/gdbserver/../common/agent.c: In function int gdb_connect_sync_socket(int):
../../../binutils-gdb/gdb/gdbserver/../common/agent.c:164:16: error: close was not declared in this scope
       close (fd);
                ^
../../../binutils-gdb/gdb/gdbserver/../common/agent.c:174:16: error: close was not declared in this scope
       close (fd);
                ^
../../../binutils-gdb/gdb/gdbserver/../common/agent.c: In function int agent_run_command(int, const char*, int):
../../../binutils-gdb/gdb/gdbserver/../common/agent.c:220:27: error: write was not declared in this scope
    ret = write (fd, buf, 1);
                           ^
../../../binutils-gdb/gdb/gdbserver/../common/agent.c:227:26: error: read was not declared in this scope
    ret = read (fd, buf, 1);
                          ^
../../../binutils-gdb/gdb/gdbserver/../common/agent.c:230:16: error: close was not declared in this scope
       close (fd);
                ^
  CXX    common/common-utils.o
  CXX    common/environ.o
Makefile:601: recipe for target 'common/agent.o' failed
make[4]: *** [common/agent.o] Error 1
make[4]: *** Waiting for unfinished jobs....
make[4]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver'
Makefile:2020: recipe for target 'subdir_do' failed
make[3]: *** [subdir_do] Error 1
make[3]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:1627: recipe for target 'all' failed
make[2]: *** [all] Error 2
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2018-11-20 16:57 [binutils-gdb] Avoid "Invalid parameter passed to C runtime function" warning sergiodj+buildbot
@ 2018-11-20 17:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2018-11-20 17:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/167>

Commit(s) tested:
	970d89d8fdd84b31decaf3bd84e785aad057ea32

Author(s) (in the same order as the commits):
	Eli Zaretskii <eliz@gnu.org>

Subject:
	Avoid "Invalid parameter passed to C runtime function" warning

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/97/970d89d8fdd84b31decaf3bd84e785aad057ea32/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    amd64-obsd-tdep.o
  CXX    amd64-sol2-tdep.o
  CXX    amd64-tdep.o
  CXX    amd64-windows-tdep.o
  CXX    annotate.o
  CXX    arc-tdep.o
  CXX    arch-utils.o
  CXX    arch/aarch64-insn.o
  CXX    arch/aarch64.o
  CXX    arch/amd64.o
  CXX    arch/arm-get-next-pcs.o
  CXX    arch/arm-linux.o
  CXX    arch/arm.o
  CXX    arch/i386.o
  CXX    arch/ppc-linux-common.o
  CXX    arm-bsd-tdep.o
  CXX    arm-fbsd-tdep.o
  CXX    arm-linux-tdep.o
  CXX    arm-nbsd-tdep.o
  CXX    arm-obsd-tdep.o
  CXX    arm-pikeos-tdep.o
  CXX    arm-symbian-tdep.o
  CXX    arm-tdep.o
  CXX    arm-wince-tdep.o
  CXX    auto-load.o
  CXX    auxv.o
  CXX    avr-tdep.o
  CXX    ax-gdb.o
  CXX    ax-general.o
  CXX    bcache.o
  CXX    bfd-target.o
  CXX    bfin-linux-tdep.o
  CXX    bfin-tdep.o
  CXX    block.o
  CXX    blockframe.o
  CXX    break-catch-sig.o
  CXX    break-catch-syscall.o
  CXX    break-catch-throw.o
  CXX    breakpoint.o
  CXX    bsd-uthread.o
  CXX    btrace.o
  CXX    build-id.o
  CXX    buildsym-legacy.o
  CXX    buildsym.o
  CXX    c-exp.o
  CXX    c-lang.o
  CXX    c-typeprint.o
  CXX    c-valprint.o
  CXX    c-varobj.o
  CXX    charset.o
  CXX    cli-out.o
  CXX    cli/cli-cmds.o
  CXX    cli/cli-decode.o
  CXX    cli/cli-dump.o
  CXX    cli/cli-interp.o
  CXX    cli/cli-logging.o
  CXX    cli/cli-script.o
  CXX    cli/cli-setshow.o
  CXX    cli/cli-utils.o
  CXX    coff-pe-read.o
  CXX    coffread.o
  CXX    common/agent.o
  CXX    common/btrace-common.o
  CXX    common/buffer.o
  CXX    common/cleanups.o
  CXX    common/common-debug.o
  CXX    common/common-exceptions.o
  CXX    common/common-regcache.o
  CXX    common/common-utils.o
  CXX    common/environ.o
  CXX    common/errors.o
  CXX    common/fileio.o
  CXX    common/filestuff.o
  CXX    common/format.o
  CXX    common/gdb_tilde_expand.o
  CXX    common/gdb_vecs.o
  CXX    common/job-control.o
  CXX    common/netstuff.o
  CXX    common/new-op.o
  CXX    common/pathstuff.o
  CXX    common/posix-strerror.o
  CXX    common/print-utils.o
  CXX    common/ptid.o
../../binutils-gdb/gdb/common/filestuff.c: In function gdb_file_up gdb_fopen_cloexec(const char*, const char*):
../../binutils-gdb/gdb/common/filestuff.c:306:36: error: O_NOINHERIT was not declared in this scope
     O_CLOEXEC == 0 || O_CLOEXEC == O_NOINHERIT;
                                    ^
  CXX    common/rsp-low.o
  CXX    common/run-time-clock.o
  CXX    common/scoped_mmap.o
Makefile:1627: recipe for target 'common/filestuff.o' failed
make[2]: *** [common/filestuff.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2018-11-09 15:43 [binutils-gdb] [ARC] More fixes for TLS sergiodj+buildbot
@ 2018-11-10 11:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2018-11-10 11:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/127>

Commit(s) tested:
	d07b621f4cc585607c7eee7cc58ce54a7dde52f5

Author(s) (in the same order as the commits):
	Cupertino Miranda <cmiranda@synopsys.com>

Subject:
	[ARC] More fixes for TLS.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d0/d07b621f4cc585607c7eee7cc58ce54a7dde52f5/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

mv -f .deps/coff-rs6000.Tpo .deps/coff-rs6000.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-csky.lo -MD -MP -MF .deps/elf32-csky.Tpo -c -o elf32-csky.lo ../../binutils-gdb/bfd/elf32-csky.c
mv -f .deps/coff-z8k.Tpo .deps/coff-z8k.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-cr16c.lo -MD -MP -MF .deps/elf32-cr16c.Tpo -c ../../binutils-gdb/bfd/elf32-cr16c.c -o elf32-cr16c.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-d10v.lo -MD -MP -MF .deps/elf32-d10v.Tpo -c -o elf32-d10v.lo ../../binutils-gdb/bfd/elf32-d10v.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-cris.lo -MD -MP -MF .deps/elf32-cris.Tpo -c ../../binutils-gdb/bfd/elf32-cris.c -o elf32-cris.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-crx.lo -MD -MP -MF .deps/elf32-crx.Tpo -c ../../binutils-gdb/bfd/elf32-crx.c -o elf32-crx.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-csky.lo -MD -MP -MF .deps/elf32-csky.Tpo -c ../../binutils-gdb/bfd/elf32-csky.c -o elf32-csky.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-d10v.lo -MD -MP -MF .deps/elf32-d10v.Tpo -c ../../binutils-gdb/bfd/elf32-d10v.c -o elf32-d10v.o
mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-d30v.lo -MD -MP -MF .deps/elf32-d30v.Tpo -c -o elf32-d30v.lo ../../binutils-gdb/bfd/elf32-d30v.c
mv -f .deps/ecofflink.Tpo .deps/ecofflink.Plo
mv -f .deps/coffgen.Tpo .deps/coffgen.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-dlx.lo -MD -MP -MF .deps/elf32-dlx.Tpo -c -o elf32-dlx.lo ../../binutils-gdb/bfd/elf32-dlx.c
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-epiphany.lo -MD -MP -MF .deps/elf32-epiphany.Tpo -c -o elf32-epiphany.lo ../../binutils-gdb/bfd/elf32-epiphany.c
../../binutils-gdb/bfd/elf32-arc.c: In function arc_create_forced_local_got_entries_for_tls:
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-d30v.lo -MD -MP -MF .deps/elf32-d30v.Tpo -c ../../binutils-gdb/bfd/elf32-d30v.c -o elf32-d30v.o
../../binutils-gdb/bfd/elf32-arc.c:2534:19: error: passing argument 4 of create_got_dynrelocs_for_single_entry from incompatible pointer type [-Werror=incompatible-pointer-types]
        tmp->info, h);
                   ^
In file included from ../../binutils-gdb/bfd/elf32-arc.c:177:0:
../../binutils-gdb/bfd/arc-got.h:436:1: note: expected struct elf_link_hash_entry * but argument is of type struct elf_arc_link_hash_entry *
 create_got_dynrelocs_for_single_entry (struct got_entry *list,
 ^
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-dlx.lo -MD -MP -MF .deps/elf32-dlx.Tpo -c ../../binutils-gdb/bfd/elf32-dlx.c -o elf32-dlx.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-epiphany.lo -MD -MP -MF .deps/elf32-epiphany.Tpo -c ../../binutils-gdb/bfd/elf32-epiphany.c -o elf32-epiphany.o
mv -f .deps/elf-m10200.Tpo .deps/elf-m10200.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-fr30.lo -MD -MP -MF .deps/elf32-fr30.Tpo -c -o elf32-fr30.lo ../../binutils-gdb/bfd/elf32-fr30.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-fr30.lo -MD -MP -MF .deps/elf32-fr30.Tpo -c ../../binutils-gdb/bfd/elf32-fr30.c -o elf32-fr30.o
mv -f .deps/ecoff.Tpo .deps/ecoff.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-frv.lo -MD -MP -MF .deps/elf32-frv.Tpo -c -o elf32-frv.lo ../../binutils-gdb/bfd/elf32-frv.c
mv -f .deps/elf32-d10v.Tpo .deps/elf32-d10v.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-ft32.lo -MD -MP -MF .deps/elf32-ft32.Tpo -c -o elf32-ft32.lo ../../binutils-gdb/bfd/elf32-ft32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-frv.lo -MD -MP -MF .deps/elf32-frv.Tpo -c ../../binutils-gdb/bfd/elf32-frv.c -o elf32-frv.o
mv -f .deps/elf32-cr16c.Tpo .deps/elf32-cr16c.Plo
mv -f .deps/elf32-crx.Tpo .deps/elf32-crx.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-h8300.lo -MD -MP -MF .deps/elf32-h8300.Tpo -c -o elf32-h8300.lo ../../binutils-gdb/bfd/elf32-h8300.c
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-hppa.lo -MD -MP -MF .deps/elf32-hppa.Tpo -c -o elf32-hppa.lo ../../binutils-gdb/bfd/elf32-hppa.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-ft32.lo -MD -MP -MF .deps/elf32-ft32.Tpo -c ../../binutils-gdb/bfd/elf32-ft32.c -o elf32-ft32.o
mv -f .deps/elf32-d30v.Tpo .deps/elf32-d30v.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-h8300.lo -MD -MP -MF .deps/elf32-h8300.Tpo -c ../../binutils-gdb/bfd/elf32-h8300.c -o elf32-h8300.o
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-i386.lo -MD -MP -MF .deps/elf32-i386.Tpo -c -o elf32-i386.lo ../../binutils-gdb/bfd/elf32-i386.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-hppa.lo -MD -MP -MF .deps/elf32-hppa.Tpo -c ../../binutils-gdb/bfd/elf32-hppa.c -o elf32-hppa.o
mv -f .deps/elf32-dlx.Tpo .deps/elf32-dlx.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-ip2k.lo -MD -MP -MF .deps/elf32-ip2k.Tpo -c -o elf32-ip2k.lo ../../binutils-gdb/bfd/elf32-ip2k.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-i386.lo -MD -MP -MF .deps/elf32-i386.Tpo -c ../../binutils-gdb/bfd/elf32-i386.c -o elf32-i386.o
mv -f .deps/elf32-epiphany.Tpo .deps/elf32-epiphany.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-iq2000.lo -MD -MP -MF .deps/elf32-iq2000.Tpo -c -o elf32-iq2000.lo ../../binutils-gdb/bfd/elf32-iq2000.c
mv -f .deps/elf32-cr16.Tpo .deps/elf32-cr16.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-lm32.lo -MD -MP -MF .deps/elf32-lm32.Tpo -c -o elf32-lm32.lo ../../binutils-gdb/bfd/elf32-lm32.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-ip2k.lo -MD -MP -MF .deps/elf32-ip2k.Tpo -c ../../binutils-gdb/bfd/elf32-ip2k.c -o elf32-ip2k.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-iq2000.lo -MD -MP -MF .deps/elf32-iq2000.Tpo -c ../../binutils-gdb/bfd/elf32-iq2000.c -o elf32-iq2000.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-lm32.lo -MD -MP -MF .deps/elf32-lm32.Tpo -c ../../binutils-gdb/bfd/elf32-lm32.c -o elf32-lm32.o
mv -f .deps/elf32-avr.Tpo .deps/elf32-avr.Plo
mv -f .deps/elf32-fr30.Tpo .deps/elf32-fr30.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m32c.lo -MD -MP -MF .deps/elf32-m32c.Tpo -c -o elf32-m32c.lo ../../binutils-gdb/bfd/elf32-m32c.c
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m32r.lo -MD -MP -MF .deps/elf32-m32r.Tpo -c -o elf32-m32r.lo ../../binutils-gdb/bfd/elf32-m32r.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m32c.lo -MD -MP -MF .deps/elf32-m32c.Tpo -c ../../binutils-gdb/bfd/elf32-m32c.c -o elf32-m32c.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m32r.lo -MD -MP -MF .deps/elf32-m32r.Tpo -c ../../binutils-gdb/bfd/elf32-m32r.c -o elf32-m32r.o
mv -f .deps/elf-m10300.Tpo .deps/elf-m10300.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m68hc11.lo -MD -MP -MF .deps/elf32-m68hc11.Tpo -c -o elf32-m68hc11.lo ../../binutils-gdb/bfd/elf32-m68hc11.c
mv -f .deps/elf32-am33lin.Tpo .deps/elf32-am33lin.Plo
mv -f .deps/elf32-cris.Tpo .deps/elf32-cris.Plo
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m68hc12.lo -MD -MP -MF .deps/elf32-m68hc12.Tpo -c -o elf32-m68hc12.lo ../../binutils-gdb/bfd/elf32-m68hc12.c
/bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd  -DBINDIR='"/usr/local/bin"' -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include  -DHAVE_all_vecs   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -MT elf32-m68hc1x.lo -MD -MP -MF .deps/elf32-m68hc1x.Tpo -c -o elf32-m68hc1x.lo ../../binutils-gdb/bfd/elf32-m68hc1x.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m68hc11.lo -MD -MP -MF .deps/elf32-m68hc11.Tpo -c ../../binutils-gdb/bfd/elf32-m68hc11.c -o elf32-m68hc11.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m68hc1x.lo -MD -MP -MF .deps/elf32-m68hc1x.Tpo -c ../../binutils-gdb/bfd/elf32-m68hc1x.c -o elf32-m68hc1x.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../binutils-gdb/bfd -DBINDIR=\"/usr/local/bin\" -I. -I../../binutils-gdb/bfd -I../../binutils-gdb/bfd/../include -DHAVE_all_vecs -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -MT elf32-m68hc12.lo -MD -MP -MF .deps/elf32-m68hc12.Tpo -c ../../binutils-gdb/bfd/elf32-m68hc12.c -o elf32-m68hc12.o
cc1: all warnings being treated as errors
Makefile:1598: recipe for target 'elf32-arc.lo' failed
make[4]: *** [elf32-arc.lo] Error 1
make[4]: *** Waiting for unfinished jobs....
mv -f .deps/elf32-ft32.Tpo .deps/elf32-ft32.Plo
mv -f .deps/elf32-csky.Tpo .deps/elf32-csky.Plo
mv -f .deps/elf32-h8300.Tpo .deps/elf32-h8300.Plo
mv -f .deps/elf32-iq2000.Tpo .deps/elf32-iq2000.Plo
mv -f .deps/elf32-bfin.Tpo .deps/elf32-bfin.Plo
mv -f .deps/elf32-ip2k.Tpo .deps/elf32-ip2k.Plo
mv -f .deps/elf32-m68hc12.Tpo .deps/elf32-m68hc12.Plo
mv -f .deps/elf32-m68hc11.Tpo .deps/elf32-m68hc11.Plo
mv -f .deps/elf32-m32c.Tpo .deps/elf32-m32c.Plo
mv -f .deps/elf32-lm32.Tpo .deps/elf32-lm32.Plo
mv -f .deps/elf32-m68hc1x.Tpo .deps/elf32-m68hc1x.Plo
mv -f .deps/elf32-m32r.Tpo .deps/elf32-m32r.Plo
mv -f .deps/elf32-i386.Tpo .deps/elf32-i386.Plo
mv -f .deps/elf32-hppa.Tpo .deps/elf32-hppa.Plo
mv -f .deps/elf32-frv.Tpo .deps/elf32-frv.Plo
make[4]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/bfd'
Makefile:1641: recipe for target 'all-recursive' failed
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/bfd'
Makefile:1167: recipe for target 'all' failed
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/bfd'
make[2]: *** [all] Error 2
Makefile:2689: recipe for target 'all-bfd' failed
make[1]: *** [all-bfd] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2018-11-07 11:08 [binutils-gdb] rx: Add target rx-*-linux sergiodj+buildbot
@ 2018-11-08 16:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 95+ messages in thread
From: sergiodj+buildbot @ 2018-11-08 16:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu16-aarch64

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-Aarch64-native-extended-gdbserver-m64/builds/109>

Commit(s) tested:
	8d3c78e473c2af54c8117808f2459a408f9f6327

Author(s) (in the same order as the commits):
	Yoshinori Sato <ysato@users.sourceforge.jp>

Subject:
	rx: Add target rx-*-linux.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8d/8d3c78e473c2af54c8117808f2459a408f9f6327/>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE   ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/setproctitle.c -o noasan/setproctitle.o; \
else true; fi
gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/xvasprintf.c -o xvasprintf.o
gcc -c -DHAVE_CONFIG_H -g -D_GLIBCXX_DEBUG   -I. -I../../../../binutils-gdb/gdb/gdbserver/../../libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  -D_GNU_SOURCE ../../../../binutils-gdb/gdb/gdbserver/../../libiberty/setproctitle.c -o setproctitle.o
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 ./rust-demangle.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 ./rust-demangle.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 ./rust-demangle.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[6]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver/build-libiberty-gdbserver'
make[5]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver'
  CXX    aarch64-linux-hw-point.o
  CXX    aarch64-linux.o
  CXX    aarch64-sve-linux-ptrace.o
  CXX    aarch64.o
  CXX    arch/aarch64-insn.o
  CXX    arch/aarch64.o
  CXX    arch/arm.o
  CXX    arm-with-neon.o
  CXX    ax.o
  CXX    common/agent.o
  CXX    common/btrace-common.o
  CXX    common/buffer.o
  CXX    common/cleanups.o
  CXX    common/common-debug.o
  CXX    common/common-exceptions.o
  CXX    common/common-regcache.o
  CXX    common/common-utils.o
  CXX    common/environ.o
  CXX    common/errors.o
  CXX    common/fileio.o
  CXX    common/filestuff.o
  CXX    common/format.o
  CXX    common/gdb_tilde_expand.o
  CXX    common/gdb_vecs.o
  CXX    common/job-control.o
  CXX    common/netstuff.o
  CXX    common/new-op.o
  CXX    common/pathstuff.o
  CXX    common/posix-strerror.o
  CXX    common/print-utils.o
  CXX    common/ptid.o
  CXX    common/rsp-low.o
  CXX    common/selftest.o
  CXX    common/signals-state-save-restore.o
  CXX    common/signals.o
  CXX    common/tdesc.o
  CXX    common/vec.o
  CXX    common/xml-utils.o
  CXX    debug.o
  CXX    dll.o
  CXX    event-loop.o
  CXX    fork-child.o
  CXX    fork-inferior.o
  CXX    hostio-errno.o
  CXX    hostio.o
  CXX    inferiors.o
  CXX    linux-aarch32-low.o
  CXX    linux-aarch64-low.o
  CXX    linux-aarch64-tdesc-selftest.o
  CXX    linux-aarch64-tdesc.o
  CXX    linux-low.o
  CXX    linux-namespaces.o
  CXX    linux-osdata.o
  CXX    linux-personality.o
  CXX    linux-procfs.o
  CXX    linux-ptrace.o
g++: internal compiler error: Segmentation fault (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-5/README.Bugs> for instructions.
Makefile:613: recipe for target 'linux-namespaces.o' failed
make[4]: *** [linux-namespaces.o] Error 4
make[4]: *** Waiting for unfinished jobs....
make[4]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb/gdbserver'
Makefile:2014: recipe for target 'subdir_do' failed
make[3]: *** [subdir_do] Error 1
make[3]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:1621: recipe for target 'all' failed
make[2]: *** [all] Error 2
make[2]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build/gdb'
Makefile:8792: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb_buildbot/ubuntu16-aarch64/ubuntu-aarch64-native-extended-gdbserver-m64/build'
Makefile:849: recipe for target 'all' failed
make: *** [all] Error 2
============================




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

end of thread, other threads:[~2020-05-19 23:49 UTC | newest]

Thread overview: 95+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-11 19:56 [binutils-gdb] Make bfd_get_8 return a bfd_vma like other bfd_get_* functions gdb-buildbot
2019-12-11 19:59 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-12-11 20:04 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-11 20:08 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2019-12-12 11:04 ` *** COMPILATION FAILED *** Failures on Fedora-i686, " gdb-buildbot
2019-12-12 11:09 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-12-12 11:11 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-12-12 11:14 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-12-12 11:18 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-12-12 11:24 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-12 11:39 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-12-12 11:41 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  -- strict thread matches above, loose matches on Subject: below --
2020-05-19 18:28 [binutils-gdb] gdb: fix off-by-one error in quirk_rust_enum gdb-buildbot
2020-05-19 23:49 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-05-19 17:51 [binutils-gdb] Make exec-file-mismatch compare build IDs gdb-buildbot
2020-05-19 23:40 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-05-19 17:51 [binutils-gdb] Eliminate target_fileio_open_warn_if_slow gdb-buildbot
2020-05-19 23:31 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-04-29 16:04 [binutils-gdb] Implement event-loop glue for gdbserver gdb-buildbot
2020-05-04  8:38 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-04-22  9:37 [binutils-gdb] Handle complex error type in read_base_type gdb-buildbot
2020-04-26 22:21 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-04-22  8:58 [binutils-gdb] Add signal number conversions for NetBSD gdb-buildbot
2020-04-26 22:15 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-02-24  3:04 [binutils-gdb] Remove the TUI annotation hack gdb-buildbot
2020-03-08  0:09 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-02-24  2:28 [binutils-gdb] Change how TUI windows are instantiated gdb-buildbot
2020-03-07 23:49 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-02-24  2:28 [binutils-gdb] Remove tui_set_win_with_focus gdb-buildbot
2020-03-07 23:59 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-15  1:03 [binutils-gdb] Move gdbsupport to the top level gdb-buildbot
2020-01-15  1:12 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-09 13:25 [binutils-gdb] Add support for debuginfod to the binutils (disable by default, enabled via a configure time option) gdb-buildbot
2020-01-09 13:25 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-09 11:53 [binutils-gdb] Fix compile time warnings about comparisons always being false gdb-buildbot
2020-01-09 11:53 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-09 10:45 [binutils-gdb] x86: SYSENTER/SYSEXIT are unavailable in 64-bit mode on AMD gdb-buildbot
2020-01-09 10:47 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-08 22:44 [binutils-gdb] Change section_offsets to a std::vector gdb-buildbot
2020-01-08 22:46 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-08 18:44 [binutils-gdb] Use std::string in dwarf2read.c gdb-buildbot
2020-01-08 18:46 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-08 18:37 [binutils-gdb] Use std::vector in abbrev_table_read_table gdb-buildbot
2020-01-08 18:39 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-08 18:31 [binutils-gdb] Use unique_xmalloc_ptr in fixup_go_packaging gdb-buildbot
2020-01-08 18:33 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-08 18:24 [binutils-gdb] Remove some explicit memory management from dwarf2read.c gdb-buildbot
2020-01-08 18:24 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-08 13:09 [binutils-gdb] ubsan: z8k: index 10 out of bounds for type 'unsigned int const[10]' gdb-buildbot
2020-01-08 13:11 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-08 13:02 [binutils-gdb] PR25351 .ARM.attributes not found for symbol gdb-buildbot
2020-01-08 13:04 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-07 16:49 [binutils-gdb] Add constructor to stap_static_probe_ops gdb-buildbot
2020-01-07 16:49 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-07 13:51 [binutils-gdb] Enable styling by default on Cygwin gdb-buildbot
2020-01-07 13:51 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-07 13:40 [binutils-gdb] [ARC] Add finer details for LLOCK and SCOND gdb-buildbot
2020-01-07 13:40 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 23:42 [binutils-gdb] RISC-V: Fix weak function call reloc overflow on llvm build gdb-buildbot
2020-01-06 23:44 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 22:00 [binutils-gdb] gdb: Fix backtrace with disassemble-next-line on gdb-buildbot
2020-01-06 22:00 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 20:03 [binutils-gdb] Fix MinGW native compilation of gdb/gdbsupport/gdb_wait.c gdb-buildbot
2020-01-06 20:05 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 19:56 [binutils-gdb] GDB: Fix the overflow in addr/line_is_displayed() gdb-buildbot
2020-01-06 19:56 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 19:30 [binutils-gdb] Mention the recent fix of $_exitsignal on MS-Windows in gdb/NEWS gdb-buildbot
2020-01-06 19:30 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 18:36 [binutils-gdb] Fix a crash with a malformed PE header gdb-buildbot
2020-01-06 18:38 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 18:27 [binutils-gdb] Fix a typo in gdb/windows-tdep.c gdb-buildbot
2020-01-06 18:27 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 16:20 [binutils-gdb] Fix search in TUI gdb-buildbot
2020-01-06 16:20 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 13:50 [binutils-gdb] GDB: Remove trailing spaces in tui-disasm.c gdb-buildbot
2020-01-06 13:52 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 12:31 [binutils-gdb] Improve process exit status macros on MinGW gdb-buildbot
2020-01-06 12:33 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 12:24 [binutils-gdb] bfd_check_format: ignore errors from coff_real_object_p gdb-buildbot
2020-01-06 12:26 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 12:18 [binutils-gdb] alpha-vms: don't exit on stack underflow/overflow gdb-buildbot
2020-01-06 12:20 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 12:11 [binutils-gdb] ubsan: m32c: left shift of negative value gdb-buildbot
2020-01-06 12:13 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 12:04 [binutils-gdb] som_bfd_fill_in_ar_symbols buffer overflow gdb-buildbot
2020-01-06 12:07 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 11:58 [binutils-gdb] Basic error checking for mach-o gdb-buildbot
2020-01-06 12:00 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-06 11:50 [binutils-gdb] PR25344, z80 disassembler recursion gdb-buildbot
2020-01-06 11:50 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-05 22:09 [binutils-gdb] gdb: use tui_set_layout not show_layout to fix window focus gdb-buildbot
2020-01-05 22:09 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-05 12:03 [binutils-gdb] [AArch64] Fix erroneous use of spu architecture bfd gdb-buildbot
2020-01-05 12:03 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-05  5:54 [binutils-gdb] libctf: Add configure check for asprintf (for MinGW) gdb-buildbot
2020-01-05  5:54 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-04  9:40 [binutils-gdb] Release bfd_alloc memory in bfd_check_format_matches gdb-buildbot
2020-01-04  9:42 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-04  9:33 [binutils-gdb] mmo tdata leak gdb-buildbot
2020-01-04  9:35 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-04  9:26 [binutils-gdb] ubsan: m32r: left shift of negative value gdb-buildbot
2020-01-04  9:29 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-04  9:20 [binutils-gdb] ubsan: cr16: left shift cannot be represented in type 'int' gdb-buildbot
2020-01-04  9:22 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-04  9:13 [binutils-gdb] ubsan: crx: left shift cannot be represented in type 'int' gdb-buildbot
2020-01-04  9:16 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-04  9:07 [binutils-gdb] ubsan: d30v: left shift cannot be represented in type 'int' gdb-buildbot
2020-01-04  9:09 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-04  8:59 [binutils-gdb] coff: free malloc'd memory on successful target match too gdb-buildbot
2020-01-04  8:59 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03 20:43 [binutils-gdb] Ensure GDB warnings are styled gdb-buildbot
2020-01-03 20:43 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03 17:12 [binutils-gdb] solib_target_free_so memory leak gdb-buildbot
2020-01-03 17:14 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03 17:05 [binutils-gdb] windows_clear_solib memory leak gdb-buildbot
2020-01-03 17:08 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03 16:23 [binutils-gdb] Fix potential illegal memory access when parsing a corrupt PEF format file gdb-buildbot
2020-01-03 16:23 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03 14:45 [binutils-gdb] Fix potential illegal memory access failures in the BFD library by ensuring that the return value from bfd_malloc() is checked before it is used gdb-buildbot
2020-01-03 14:45 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03 11:27 [binutils-gdb] Fix ld/PR25316 for the ia64 target by refusing to support binary merging gdb-buildbot
2020-01-03 11:27 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03  9:47 [binutils-gdb] Arm64: correct address index operands for LD1RO{H,W,D} gdb-buildbot
2020-01-03  9:49 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03  9:41 [binutils-gdb] Arm64: correct {su,us}dot SIMD encodings gdb-buildbot
2020-01-03  9:43 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03  9:34 [binutils-gdb] Arm64: correct uzp{1,2} mnemonics gdb-buildbot
2020-01-03  9:36 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03  9:28 [binutils-gdb] Arm64: correct 64-bit element fmmla encoding gdb-buildbot
2020-01-03  9:31 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03  9:21 [binutils-gdb] Mach-O: misc build adjustments gdb-buildbot
2020-01-03  9:21 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03  8:37 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
2020-01-03  8:37 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-03  2:20 [binutils-gdb] Remove stale references to Cell BE gdb-buildbot
2020-01-03  2:20 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2020-01-02 15:04 [binutils-gdb] Add support for the GBZ80, Z180, and eZ80 variants of the Z80 architecure. Add an ELF based target for these as well gdb-buildbot
2020-01-02 15:04 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
2019-12-15 23:42 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-12-13  0:56 [binutils-gdb] Store objfiles on a std::list gdb-buildbot
2019-12-15 23:33 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-12-12 12:19 [binutils-gdb] Fix unused function error gdb-buildbot
2019-12-12 12:59 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-12-11 20:15 [binutils-gdb] Remove more shifts for sign/zero extension gdb-buildbot
2019-12-11 20:18 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-12-11 20:02 [binutils-gdb] bfd signed overflow fixes gdb-buildbot
2019-12-11 20:07 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-12-10 19:28 [binutils-gdb] Replace the remaining uses of strerror with safe_strerror gdb-buildbot
2019-12-10 19:28 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-10-21 19:18 [binutils-gdb] gdb: Update comments that reference VEC or vec.h gdb-buildbot
2019-10-21 19:30 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-10-21 19:12 [binutils-gdb] gdb: Remove vec.{c,h} and update code to not include vec.h gdb-buildbot
2019-10-21 19:24 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-01-16 22:52 [binutils-gdb] RISC-V: Support ELF attribute for gas and readelf sergiodj+buildbot
2019-01-19 16:33 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2019-01-10 17:12 [binutils-gdb] gdb: Improve scoped_switch_fork_info class sergiodj+buildbot
2019-01-14 16:47 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2019-01-10  2:59 [binutils-gdb] Remove ALL_MSYMBOLS and ALL_OBJFILE_MSYMBOLS sergiodj+buildbot
2019-01-11  6:13 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2019-01-07 13:26 [binutils-gdb] Sync libiberty sources with master version in gcc repository. Updated stabs demangling and cxxfilt tests to match sergiodj+buildbot
2019-01-08  6:53 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2019-01-02  6:29 [binutils-gdb] Fix year range in unittests/.../char/empty.cc copyright header sergiodj+buildbot
2019-01-02  6:29 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2018-12-28 23:52 [binutils-gdb] Fix a crash in jit.c sergiodj+buildbot
2018-12-30 12:41 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2018-12-28 23:46 [binutils-gdb] Document the "set style" commands sergiodj+buildbot
2018-12-30 10:38 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2018-12-28 23:31 [binutils-gdb] Highlight source code using GNU Source Highlight sergiodj+buildbot
2018-12-30 10:14 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2018-12-04 15:19 [binutils-gdb] x86: Don't remove empty GNU_PROPERTY_X86_UINT32_OR_AND properties sergiodj+buildbot
2018-12-04 15:07 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2018-11-20 16:57 [binutils-gdb] Avoid "Invalid parameter passed to C runtime function" warning sergiodj+buildbot
2018-11-20 17:04 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2018-11-09 15:43 [binutils-gdb] [ARC] More fixes for TLS sergiodj+buildbot
2018-11-10 11:26 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2018-11-07 11:08 [binutils-gdb] rx: Add target rx-*-linux sergiodj+buildbot
2018-11-08 16:14 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).