public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-16 23:47 [binutils-gdb] Fix some spelling errors gdb-buildbot
@ 2020-01-16 23:38 ` gdb-buildbot
  2020-01-17 16:36 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-w64-mingw32, branch master *** BREAKAGE *** gdb-buildbot
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: gdb-buildbot @ 2020-01-16 23:38 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/1766

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        40c940992759aba79013a2c590c29f03ea754e77

Subject of commit:
        Fix some spelling errors.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/40/40c940992759aba79013a2c590c29f03ea754e77/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.table.gz>


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

* [binutils-gdb] Fix some spelling errors.
@ 2020-01-16 23:47 gdb-buildbot
  2020-01-16 23:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: gdb-buildbot @ 2020-01-16 23:47 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 40c940992759aba79013a2c590c29f03ea754e77 ***

commit 40c940992759aba79013a2c590c29f03ea754e77
Author:     Christian Biesinger <cbiesinger@google.com>
AuthorDate: Thu Jan 16 16:41:53 2020 -0600
Commit:     Christian Biesinger <cbiesinger@google.com>
CommitDate: Thu Jan 16 16:46:25 2020 -0600

    Fix some spelling errors.
    
    I noticed those from a lintian run:
    https://salsa.debian.org/cbiesinger-guest/gdb/-/jobs/514119
    
    gdb/ChangeLog:
    
    2020-01-16  Christian Biesinger  <cbiesinger@google.com>
    
            * btrace.c (btrace_compute_ftrace_1): Fix spelling error (Unkown).
            (btrace_stitch_trace): Likewise.
            * charset.c (intermediate_encoding): Likewise (vaild).
            * nat/linux-btrace.c (linux_read_pt): Likewise (Unkown).
            * python/py-record-btrace.c (struct PyMethodDef): Likewise (occurences).
            * record-btrace.c (record_btrace_print_conf): Likewise (unkown).
    
    gdb/testsuite/ChangeLog:
    
    2020-01-16  Christian Biesinger  <cbiesinger@google.com>
    
            * lib/gdb.exp: Fix spelling error (seperatelly).
    
    Change-Id: I2a44936bac295020f217fb6c78b99b0a8d09cf9a

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cc3a43cf2d..5301385ecb 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,12 @@
+2020-01-16  Christian Biesinger  <cbiesinger@google.com>
+
+	* btrace.c (btrace_compute_ftrace_1): Fix spelling error (Unkown).
+	(btrace_stitch_trace): Likewise.
+	* charset.c (intermediate_encoding): Likewise (vaild).
+	* nat/linux-btrace.c (linux_read_pt): Likewise (Unkown).
+	* python/py-record-btrace.c (struct PyMethodDef): Likewise (occurences).
+	* record-btrace.c (record_btrace_print_conf): Likewise (unkown).
+
 2020-01-16  Hannes Domani  <ssbssa@yahoo.de>
 
 	* windows-tdep.c (windows_get_tlb_type):
diff --git a/gdb/btrace.c b/gdb/btrace.c
index 0c7becd349..bbf8749649 100644
--- a/gdb/btrace.c
+++ b/gdb/btrace.c
@@ -1533,7 +1533,7 @@ btrace_compute_ftrace_1 (struct thread_info *tp,
       return;
     }
 
-  internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
+  internal_error (__FILE__, __LINE__, _("Unknown branch trace format."));
 }
 
 static void
@@ -1791,7 +1791,7 @@ btrace_stitch_trace (struct btrace_data *btrace, struct thread_info *tp)
       return -1;
     }
 
-  internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
+  internal_error (__FILE__, __LINE__, _("Unknown branch trace format."));
 }
 
 /* Clear the branch trace histories in BTINFO.  */
diff --git a/gdb/charset.c b/gdb/charset.c
index 480ed366a4..5cfd2d8030 100644
--- a/gdb/charset.c
+++ b/gdb/charset.c
@@ -989,7 +989,7 @@ intermediate_encoding (void)
   /* Not valid, free the allocated memory.  */
   xfree (result);
   /* No valid charset found, generate error here.  */
-  error (_("Unable to find a vaild charset for string conversions"));
+  error (_("Unable to find a valid charset for string conversions"));
 }
 
 #endif /* USE_INTERMEDIATE_ENCODING_FUNCTION */
diff --git a/gdb/nat/linux-btrace.c b/gdb/nat/linux-btrace.c
index 03fc85e2ec..e972a07227 100644
--- a/gdb/nat/linux-btrace.c
+++ b/gdb/nat/linux-btrace.c
@@ -889,7 +889,7 @@ linux_read_pt (struct btrace_data_pt *btrace,
       return BTRACE_ERR_NONE;
     }
 
-  internal_error (__FILE__, __LINE__, _("Unkown btrace read type."));
+  internal_error (__FILE__, __LINE__, _("Unknown btrace read type."));
 }
 
 /* See linux-btrace.h.  */
diff --git a/gdb/python/py-record-btrace.c b/gdb/python/py-record-btrace.c
index a3c3a546d7..08613a856d 100644
--- a/gdb/python/py-record-btrace.c
+++ b/gdb/python/py-record-btrace.c
@@ -808,7 +808,7 @@ recpy_bt_goto (PyObject *self, PyObject *args)
 
 struct PyMethodDef btpy_list_methods[] =
 {
-  { "count", btpy_list_count, METH_O, "count number of occurences"},
+  { "count", btpy_list_count, METH_O, "count number of occurrences"},
   { "index", btpy_list_index, METH_O, "index of entry"},
   {NULL}
 };
diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c
index 33ee4e9d81..619ecde025 100644
--- a/gdb/record-btrace.c
+++ b/gdb/record-btrace.c
@@ -541,7 +541,7 @@ record_btrace_print_conf (const struct btrace_config *conf)
       return;
     }
 
-  internal_error (__FILE__, __LINE__, _("Unkown branch trace format."));
+  internal_error (__FILE__, __LINE__, _("Unknown branch trace format."));
 }
 
 /* The info_record method of target record-btrace.  */
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index c35afbd13f..c4a760ef51 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2020-01-16  Christian Biesinger  <cbiesinger@google.com>
+
+	* lib/gdb.exp: Fix spelling error (seperatelly).
+
 2020-01-14  Tom Tromey  <tom@tromey.com>
 
 	PR symtab/12535:
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index cb5a3f7aea..2d230b791e 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -3877,7 +3877,7 @@ proc gdb_compile {source dest type options} {
 	    # Force output to unbuffered mode, by linking in an object file
 	    # with a global contructor that calls setvbuf.
 	    #
-	    # Compile the special object seperatelly for two reasons:
+	    # Compile the special object separately for two reasons:
 	    #  1) Insulate it from $options.
 	    #  2) Avoid compiling it for every gdb_compile invocation,
 	    #  which is time consuming, especially if we're remote


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-w64-mingw32, branch master *** BREAKAGE ***
  2020-01-16 23:47 [binutils-gdb] Fix some spelling errors gdb-buildbot
  2020-01-16 23:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
@ 2020-01-17 16:36 ` gdb-buildbot
  2020-01-17 17:24 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch master gdb-buildbot
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: gdb-buildbot @ 2020-01-17 16:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-w64-mingw32

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/23/builds/1654

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        40c940992759aba79013a2c590c29f03ea754e77

Subject of commit:
        Fix some spelling errors.

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

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

mv -f .deps/cpu-rs6000.Tpo .deps/cpu-rs6000.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-riscv.lo -MD -MP -MF .deps/cpu-riscv.Tpo -c -o cpu-riscv.lo ../../binutils-gdb/bfd/cpu-riscv.c
mv -f .deps/cpu-pru.Tpo .deps/cpu-pru.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-rl78.lo -MD -MP -MF .deps/cpu-rl78.Tpo -c -o cpu-rl78.lo ../../binutils-gdb/bfd/cpu-rl78.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-riscv.lo -MD -MP -MF .deps/cpu-riscv.Tpo -c ../../binutils-gdb/bfd/cpu-riscv.c -o cpu-riscv.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-rl78.lo -MD -MP -MF .deps/cpu-rl78.Tpo -c ../../binutils-gdb/bfd/cpu-rl78.c -o cpu-rl78.o
mv -f .deps/cpu-riscv.Tpo .deps/cpu-riscv.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-rx.lo -MD -MP -MF .deps/cpu-rx.Tpo -c -o cpu-rx.lo ../../binutils-gdb/bfd/cpu-rx.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-rx.lo -MD -MP -MF .deps/cpu-rx.Tpo -c ../../binutils-gdb/bfd/cpu-rx.c -o cpu-rx.o
mv -f .deps/cpu-rl78.Tpo .deps/cpu-rl78.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-s390.lo -MD -MP -MF .deps/cpu-s390.Tpo -c -o cpu-s390.lo ../../binutils-gdb/bfd/cpu-s390.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-s390.lo -MD -MP -MF .deps/cpu-s390.Tpo -c ../../binutils-gdb/bfd/cpu-s390.c -o cpu-s390.o
mv -f .deps/cpu-rx.Tpo .deps/cpu-rx.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-score.lo -MD -MP -MF .deps/cpu-score.Tpo -c -o cpu-score.lo ../../binutils-gdb/bfd/cpu-score.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-score.lo -MD -MP -MF .deps/cpu-score.Tpo -c ../../binutils-gdb/bfd/cpu-score.c -o cpu-score.o
mv -f .deps/cpu-score.Tpo .deps/cpu-score.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-sh.lo -MD -MP -MF .deps/cpu-sh.Tpo -c -o cpu-sh.lo ../../binutils-gdb/bfd/cpu-sh.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-sh.lo -MD -MP -MF .deps/cpu-sh.Tpo -c ../../binutils-gdb/bfd/cpu-sh.c -o cpu-sh.o
mv -f .deps/cpu-sh.Tpo .deps/cpu-sh.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-sparc.lo -MD -MP -MF .deps/cpu-sparc.Tpo -c -o cpu-sparc.lo ../../binutils-gdb/bfd/cpu-sparc.c
mv -f .deps/cpu-s390.Tpo .deps/cpu-s390.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-spu.lo -MD -MP -MF .deps/cpu-spu.Tpo -c -o cpu-spu.lo ../../binutils-gdb/bfd/cpu-spu.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-sparc.lo -MD -MP -MF .deps/cpu-sparc.Tpo -c ../../binutils-gdb/bfd/cpu-sparc.c -o cpu-sparc.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-spu.lo -MD -MP -MF .deps/cpu-spu.Tpo -c ../../binutils-gdb/bfd/cpu-spu.c -o cpu-spu.o
mv -f .deps/cpu-sparc.Tpo .deps/cpu-sparc.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-tic30.lo -MD -MP -MF .deps/cpu-tic30.Tpo -c -o cpu-tic30.lo ../../binutils-gdb/bfd/cpu-tic30.c
mv -f .deps/cpu-spu.Tpo .deps/cpu-spu.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-tic4x.lo -MD -MP -MF .deps/cpu-tic4x.Tpo -c -o cpu-tic4x.lo ../../binutils-gdb/bfd/cpu-tic4x.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-tic30.lo -MD -MP -MF .deps/cpu-tic30.Tpo -c ../../binutils-gdb/bfd/cpu-tic30.c -o cpu-tic30.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-tic4x.lo -MD -MP -MF .deps/cpu-tic4x.Tpo -c ../../binutils-gdb/bfd/cpu-tic4x.c -o cpu-tic4x.o
mv -f .deps/cpu-tic4x.Tpo .deps/cpu-tic4x.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-tic54x.lo -MD -MP -MF .deps/cpu-tic54x.Tpo -c -o cpu-tic54x.lo ../../binutils-gdb/bfd/cpu-tic54x.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-tic54x.lo -MD -MP -MF .deps/cpu-tic54x.Tpo -c ../../binutils-gdb/bfd/cpu-tic54x.c -o cpu-tic54x.o
mv -f .deps/cpu-tic30.Tpo .deps/cpu-tic30.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-tic6x.lo -MD -MP -MF .deps/cpu-tic6x.Tpo -c -o cpu-tic6x.lo ../../binutils-gdb/bfd/cpu-tic6x.c
mv -f .deps/cpu-tic54x.Tpo .deps/cpu-tic54x.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-tilegx.lo -MD -MP -MF .deps/cpu-tilegx.Tpo -c -o cpu-tilegx.lo ../../binutils-gdb/bfd/cpu-tilegx.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-tic6x.lo -MD -MP -MF .deps/cpu-tic6x.Tpo -c ../../binutils-gdb/bfd/cpu-tic6x.c -o cpu-tic6x.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-tilegx.lo -MD -MP -MF .deps/cpu-tilegx.Tpo -c ../../binutils-gdb/bfd/cpu-tilegx.c -o cpu-tilegx.o
mv -f .deps/cpu-tilegx.Tpo .deps/cpu-tilegx.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-tilepro.lo -MD -MP -MF .deps/cpu-tilepro.Tpo -c -o cpu-tilepro.lo ../../binutils-gdb/bfd/cpu-tilepro.c
mv -f .deps/cpu-tic6x.Tpo .deps/cpu-tic6x.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-v850.lo -MD -MP -MF .deps/cpu-v850.Tpo -c -o cpu-v850.lo ../../binutils-gdb/bfd/cpu-v850.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-tilepro.lo -MD -MP -MF .deps/cpu-tilepro.Tpo -c ../../binutils-gdb/bfd/cpu-tilepro.c -o cpu-tilepro.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-v850.lo -MD -MP -MF .deps/cpu-v850.Tpo -c ../../binutils-gdb/bfd/cpu-v850.c -o cpu-v850.o
mv -f .deps/cpu-v850.Tpo .deps/cpu-v850.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-v850_rh850.lo -MD -MP -MF .deps/cpu-v850_rh850.Tpo -c -o cpu-v850_rh850.lo ../../binutils-gdb/bfd/cpu-v850_rh850.c
mv -f .deps/cpu-tilepro.Tpo .deps/cpu-tilepro.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-vax.lo -MD -MP -MF .deps/cpu-vax.Tpo -c -o cpu-vax.lo ../../binutils-gdb/bfd/cpu-vax.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-v850_rh850.lo -MD -MP -MF .deps/cpu-v850_rh850.Tpo -c ../../binutils-gdb/bfd/cpu-v850_rh850.c -o cpu-v850_rh850.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-vax.lo -MD -MP -MF .deps/cpu-vax.Tpo -c ../../binutils-gdb/bfd/cpu-vax.c -o cpu-vax.o
mv -f .deps/cpu-v850_rh850.Tpo .deps/cpu-v850_rh850.Plo
mv -f .deps/cpu-vax.Tpo .deps/cpu-vax.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-visium.lo -MD -MP -MF .deps/cpu-visium.Tpo -c -o cpu-visium.lo ../../binutils-gdb/bfd/cpu-visium.c
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-wasm32.lo -MD -MP -MF .deps/cpu-wasm32.Tpo -c -o cpu-wasm32.lo ../../binutils-gdb/bfd/cpu-wasm32.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-visium.lo -MD -MP -MF .deps/cpu-visium.Tpo -c ../../binutils-gdb/bfd/cpu-visium.c -o cpu-visium.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-wasm32.lo -MD -MP -MF .deps/cpu-wasm32.Tpo -c ../../binutils-gdb/bfd/cpu-wasm32.c -o cpu-wasm32.o
mv -f .deps/cpu-visium.Tpo .deps/cpu-visium.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-xc16x.lo -MD -MP -MF .deps/cpu-xc16x.Tpo -c -o cpu-xc16x.lo ../../binutils-gdb/bfd/cpu-xc16x.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-xc16x.lo -MD -MP -MF .deps/cpu-xc16x.Tpo -c ../../binutils-gdb/bfd/cpu-xc16x.c -o cpu-xc16x.o
mv -f .deps/cpu-wasm32.Tpo .deps/cpu-wasm32.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-xgate.lo -MD -MP -MF .deps/cpu-xgate.Tpo -c -o cpu-xgate.lo ../../binutils-gdb/bfd/cpu-xgate.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-xgate.lo -MD -MP -MF .deps/cpu-xgate.Tpo -c ../../binutils-gdb/bfd/cpu-xgate.c -o cpu-xgate.o
mv -f .deps/cpu-xgate.Tpo .deps/cpu-xgate.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-xstormy16.lo -MD -MP -MF .deps/cpu-xstormy16.Tpo -c -o cpu-xstormy16.lo ../../binutils-gdb/bfd/cpu-xstormy16.c
mv -f .deps/cpu-xc16x.Tpo .deps/cpu-xc16x.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-xtensa.lo -MD -MP -MF .deps/cpu-xtensa.Tpo -c -o cpu-xtensa.lo ../../binutils-gdb/bfd/cpu-xtensa.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-xstormy16.lo -MD -MP -MF .deps/cpu-xstormy16.Tpo -c ../../binutils-gdb/bfd/cpu-xstormy16.c -o cpu-xstormy16.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-xtensa.lo -MD -MP -MF .deps/cpu-xtensa.Tpo -c ../../binutils-gdb/bfd/cpu-xtensa.c -o cpu-xtensa.o
mv -f .deps/cpu-xstormy16.Tpo .deps/cpu-xstormy16.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-z80.lo -MD -MP -MF .deps/cpu-z80.Tpo -c -o cpu-z80.lo ../../binutils-gdb/bfd/cpu-z80.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-z80.lo -MD -MP -MF .deps/cpu-z80.Tpo -c ../../binutils-gdb/bfd/cpu-z80.c -o cpu-z80.o
mv -f .deps/cpu-z80.Tpo .deps/cpu-z80.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT cpu-z8k.lo -MD -MP -MF .deps/cpu-z8k.Tpo -c -o cpu-z8k.lo ../../binutils-gdb/bfd/cpu-z8k.c
mv -f .deps/cpu-xtensa.Tpo .deps/cpu-xtensa.Plo
/bin/sh ./libtool  --tag=CC   --mode=compile x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS -MT archive64.lo -MD -MP -MF .deps/archive64.Tpo -c -o archive64.lo ../../binutils-gdb/bfd/archive64.c
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT cpu-z8k.lo -MD -MP -MF .deps/cpu-z8k.Tpo -c ../../binutils-gdb/bfd/cpu-z8k.c -o cpu-z8k.o
libtool: compile:  x86_64-w64-mingw32-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 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG -D__USE_MINGW_ACCESS -MT archive64.lo -MD -MP -MF .deps/archive64.Tpo -c ../../binutils-gdb/bfd/archive64.c -o archive64.o
mv -f .deps/cpu-z8k.Tpo .deps/cpu-z8k.Plo
mv -f .deps/archive64.Tpo .deps/archive64.Plo
/bin/sh ./libtool  --tag=CC   --mode=link x86_64-w64-mingw32-gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -Wno-format -Werror -I../../binutils-gdb/bfd/../zlib -g -D_GLIBCXX_DEBUG  -D__USE_MINGW_ACCESS  -release `cat libtool-soversion`  -Wl,--stack,12582912 -o libbfd.la -rpath /usr/local/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo `cat ofiles`   -L./../zlib -lz 
libtool: link: warning: undefined symbols not allowed in x86_64-w64-mingw32 shared libraries
libtool: link: x86_64-w64-mingw32-ar rc .libs/libbfd.a  archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coff-bfd.o compress.o corefile.o elf-properties.o format.o hash.o init.o libbfd.o linker.o merge.o opncls.o reloc.o section.o simple.o stab-syms.o stabs.o syms.o targets.o binary.o ihex.o srec.o tekhex.o verilog.o pe-x86_64.o pex64igen.o cofflink.o coffgen.o dwarf2.o pei-x86_64.o elf64-x86-64.o elfxx-x86.o elf-ifunc.o elf-nacl.o elf-vxworks.o elf64.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o pe-i386.o peigen.o pei-i386.o elf32-i386.o elf32.o elf64-gen.o elf32-gen.o plugin.o elf32-aarch64.o elf64-aarch64.o elfxx-aarch64.o aix5ppc-core.o aout64.o coff-alpha.o coff-x86_64.o coff64-rs6000.o elf32-ia64.o elf32-mips.o elf32-score.o elf32-score7.o elf64-alpha.o elf64-hppa.o elf64-ia64.o elf64-ia64-vms.o elfxx-ia64.o elfn32-mips.o elf64-mips.o elfxx-mips.o elf64-mmix.o elf64-nfp.o elf64-ppc.o elf32-riscv.o elf64-riscv.o elfxx-riscv.o elf64-s390.o elf64-sparc.o elf64-tilegx.o elf64-bpf.o mach-o-aarch64.o mach-o-x86-64.o mmo.o pei-ia64.o pepigen.o vms-alpha.o aout-cris.o aout-ns32k.o aout-tic30.o aout32.o cf-i386lynx.o coff-go32.o coff-i386.o coff-mips.o coff-rs6000.o coff-sh.o coff-stgo32.o coff-tic30.o coff-tic4x.o coff-tic54x.o coff-z80.o coff-z8k.o ecoff.o ecofflink.o elf-m10200.o elf-m10300.o elf32-am33lin.o elf32-arc.o elf32-arm.o elf32-avr.o elf32-bfin.o elf32-cr16.o elf32-cris.o elf32-crx.o elf32-csky.o elf32-d10v.o elf32-d30v.o elf32-dlx.o elf32-epiphany.o elf32-fr30.o elf32-frv.o elf32-ft32.o elf32-h8300.o elf32-hppa.o elf32-ip2k.o elf32-iq2000.o elf32-lm32.o elf32-m32c.o elf32-m32r.o elf32-m68hc11.o elf32-m68hc12.o elf32-m68hc1x.o elf32-m68k.o elf32-s12z.o elf32-mcore.o elf32-mep.o elf32-metag.o elf32-microblaze.o elf32-moxie.o elf32-msp430.o elf32-mt.o elf32-nds32.o elf32-nios2.o elf32-or1k.o elf32-pj.o elf32-ppc.o elf32-pru.o elf32-rl78.o elf32-rx.o elf32-s390.o elf32-sh.o elf32-sparc.o elf32-spu.o elf32-tic6x.o elf32-tilegx.o elf32-tilepro.o elf32-v850.o elf32-vax.o elf32-visium.o elf32-wasm32.o elf32-xc16x.o elf32-xgate.o elf32-xstormy16.o elf32-xtensa.o elf32-z80.o elfxx-sparc.o elfxx-tilegx.o i386aout.o i386bsd.o i386lynx.o i386msdos.o mach-o.o mach-o-i386.o mach-o-arm.o ns32knetbsd.o pc532-mach.o pdp11.o pe-arm-wince.o pe-arm.o pe-mcore.o pe-ppc.o pe-sh.o pef.o pei-arm-wince.o pei-arm.o pei-mcore.o pei-ppc.o pei-sh.o ppcboot.o reloc16.o som.o vax1knetbsd.o vaxnetbsd.o vms-lib.o vms-misc.o wasm-module.o xcofflink.o xsym.o xtensa-isa.o xtensa-modules.o cpu-i386.o cpu-iamcu.o cpu-l1om.o cpu-k1om.o cpu-aarch64.o cpu-alpha.o cpu-arc.o cpu-arm.o cpu-avr.o cpu-bfin.o cpu-bpf.o cpu-cr16.o cpu-cris.o cpu-crx.o cpu-csky.o cpu-d10v.o cpu-d30v.o cpu-dlx.o cpu-epiphany.o cpu-fr30.o cpu-frv.o cpu-ft32.o cpu-h8300.o cpu-hppa.o cpu-ia64.o cpu-ip2k.o cpu-iq2000.o cpu-lm32.o cpu-m10200.o cpu-m10300.o cpu-m32c.o cpu-m32r.o cpu-m68hc11.o cpu-m68hc12.o cpu-m9s12x.o cpu-s12z.o cpu-m9s12xg.o cpu-m68k.o cpu-mcore.o cpu-mep.o cpu-metag.o cpu-microblaze.o cpu-mips.o cpu-mmix.o cpu-moxie.o cpu-msp430.o cpu-mt.o cpu-nds32.o cpu-nfp.o cpu-nios2.o cpu-ns32k.o cpu-or1k.o cpu-pdp11.o cpu-pj.o cpu-plugin.o cpu-powerpc.o cpu-pru.o cpu-rs6000.o cpu-riscv.o cpu-rl78.o cpu-rx.o cpu-s390.o cpu-score.o cpu-sh.o cpu-sparc.o cpu-spu.o cpu-tic30.o cpu-tic4x.o cpu-tic54x.o cpu-tic6x.o cpu-tilegx.o cpu-tilepro.o cpu-v850.o cpu-v850_rh850.o cpu-vax.o cpu-visium.o cpu-wasm32.o cpu-xc16x.o cpu-xgate.o cpu-xstormy16.o cpu-xtensa.o cpu-z80.o cpu-z8k.o archive64.o
libtool: link: x86_64-w64-mingw32-ranlib .libs/libbfd.a
libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
libtooldir=`/bin/sh ./libtool --config | /usr/bin/sed -n -e 's/^objdir=//p'`; \
if [ -f $libtooldir/libbfd.a ]; then \
  cp $libtooldir/libbfd.a libbfd.tmp; \
  x86_64-w64-mingw32-ranlib libbfd.tmp; \
  /bin/sh ../../binutils-gdb/bfd/../move-if-change libbfd.tmp libbfd.a; \
else true; fi
touch stamp-lib
make[4]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-mingw32/build/bfd'
make[3]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-mingw32/build/bfd'
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-mingw32/build/bfd'
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-mingw32/build'
make: *** [Makefile:860: all] Error 2
program finished with exit code 2
elapsedTime=148.752862
==============================================


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2020-01-16 23:47 [binutils-gdb] Fix some spelling errors gdb-buildbot
  2020-01-16 23:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
  2020-01-17 16:36 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-w64-mingw32, branch master *** BREAKAGE *** gdb-buildbot
@ 2020-01-17 17:24 ` gdb-buildbot
  2020-01-17 17:24 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  2020-01-17 17:40 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
  4 siblings, 0 replies; 6+ messages in thread
From: gdb-buildbot @ 2020-01-17 17:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-3

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

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        40c940992759aba79013a2c590c29f03ea754e77

Subject of commit:
        Fix some spelling errors.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/40/40c940992759aba79013a2c590c29f03ea754e77/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2020-01-16 23:47 [binutils-gdb] Fix some spelling errors gdb-buildbot
                   ` (2 preceding siblings ...)
  2020-01-17 17:24 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch master gdb-buildbot
@ 2020-01-17 17:24 ` gdb-buildbot
  2020-01-17 17:40 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
  4 siblings, 0 replies; 6+ messages in thread
From: gdb-buildbot @ 2020-01-17 17:24 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/1868

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        40c940992759aba79013a2c590c29f03ea754e77

Subject of commit:
        Fix some spelling errors.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/40/40c940992759aba79013a2c590c29f03ea754e77/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/continue-all-already-running.exp: breakpoint hit
PASS -> FAIL: gdb.base/coredump-filter.exp: saving corefile for DoNotDump-DumpExcluded: p set_coredump_filter
PASS -> FAIL: gdb.base/coredump-filter.exp: saving corefile for DoNotDump-DumpExcluded: save corefile
PASS -> FAIL: gdb.base/coredump-filter.exp: saving corefile for DoNotDump-DumpExcluded: set dump-excluded-mappings off
PASS -> FAIL: gdb.base/coredump-filter.exp: saving corefile for DoNotDump-DumpExcluded: set dump-excluded-mappings on
PASS -> FAIL: gdb.base/coredump-filter.exp: saving corefile for DoNotDump: save corefile
PASS -> FAIL: gdb.base/coredump-filter.exp: saving corefile for non-Private-Shared-Anon-File: p set_coredump_filter
PASS -> FAIL: gdb.base/coredump-filter.exp: saving corefile for non-Private-Shared-Anon-File: save corefile
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply level 0 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print -"
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
PASS -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.table.gz>


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2020-01-16 23:47 [binutils-gdb] Fix some spelling errors gdb-buildbot
                   ` (3 preceding siblings ...)
  2020-01-17 17:24 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
@ 2020-01-17 17:40 ` gdb-buildbot
  4 siblings, 0 replies; 6+ messages in thread
From: gdb-buildbot @ 2020-01-17 17:40 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/1818

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        40c940992759aba79013a2c590c29f03ea754e77

Subject of commit:
        Fix some spelling errors.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/40/40c940992759aba79013a2c590c29f03ea754e77/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new KFAIL: gdb.base/argv0-symlink.exp: kept directory symbolic link name
new FAIL: gdb.base/async.exp: finish&
new FAIL: gdb.base/async.exp: nexti&
new FAIL: gdb.base/async.exp: stepi&
new FAIL: gdb.base/consecutive.exp: stopped at bp, 2nd instr
new FAIL: gdb.base/float128.exp: print large128
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/shlib-call.exp: step into mainshr1
new FAIL: gdb.base/shlib-call.exp: step out of shr2 epilogue to main
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new FAIL: gdb.base/watchpoint-reuse-slot.exp: hw-watch: always-inserted off: watch x watch: : width 1, iter 0: base + 0: stepi advanced
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: basics: with language ada -- print g_s
new FAIL: gdb.base/with.exp: repeat: reinvoke with language
new FAIL: gdb.base/with.exp: user-defined: with language ada -- usercmd
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code
new FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_e
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.MAGIC
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.len
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.ua
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.MAGIC
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.len
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.ua
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code
new FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_e
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.MAGIC
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.len
new KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.ua
new FAIL: gdb.compile/compile-cplus-member.exp: compile code A::ATYPE i = 10; var = i;
new FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_
new FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_ = E_B; var = A::s_private_;
new FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_protected_
new FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_protected_ = N::NB; var = A::s_protected_;
new FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_public_
new FAIL: gdb.compile/compile-cplus-member.exp: compile code ATYPE i;
new FAIL: gdb.compile/compile-cplus-member.exp: compile code N::ANON_NE ae = N::ND; var = ae;
new FAIL: gdb.compile/compile-cplus-member.exp: compile code N::ANON_NE nse = E_A
new FAIL: gdb.compile/compile-cplus-member.exp: compile code a.*pmi
new FAIL: gdb.compile/compile-cplus-member.exp: compile code a.public_ = 2; var = a.*pmi; a.public_ = 1
new FAIL: gdb.compile/compile-cplus-member.exp: compile code a.s_public_ = E_B
new FAIL: gdb.compile/compile-cplus-member.exp: compile code g_e
new FAIL: gdb.compile/compile-cplus-member.exp: compile code get_values
new FAIL: gdb.compile/compile-cplus-member.exp: compile code myenum me = E_B; var = me;
new FAIL: gdb.compile/compile-cplus-member.exp: compile print A::s_private_
new FAIL: gdb.compile/compile-cplus-member.exp: compile print A::s_protected_
new FAIL: gdb.compile/compile-cplus-member.exp: compile print A::s_public_
new FAIL: gdb.compile/compile-cplus-member.exp: compile print a.*pmi
new FAIL: gdb.compile/compile-cplus-member.exp: compile print g_e
new FAIL: gdb.compile/compile-cplus-member.exp: compile print get_values
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code A::ATYPE i = 10; var = i;
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code A::s_private_
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code A::s_private_ = E_B; var = A::s_private_;
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code A::s_protected_
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code A::s_protected_ = N::NB; var = A::s_protected_;
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code A::s_public_
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code N::ANON_NE ae = N::ND; var = ae;
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code a.*pmi
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code a.public_ = 2; var = a.*pmi; a.public_ = 1
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code g_e
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code get_values
new FAIL: gdb.compile/compile-cplus-member.exp: result of compile code myenum me = E_B; var = me;
new FAIL: gdb.compile/compile-cplus-method.exp: compile code
new FAIL: gdb.compile/compile-cplus-method.exp: compile code A::get_1
new FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var
new FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var1
new FAIL: gdb.compile/compile-cplus-method.exp: compile code a->get_var2
new FAIL: gdb.compile/compile-cplus-method.exp: compile code pmf = &A::get_var1; var =
new FAIL: gdb.compile/compile-cplus-method.exp: result of compile code
new FAIL: gdb.compile/compile-cplus-method.exp: result of compile code A::get_1
new FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var
new FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var1
new FAIL: gdb.compile/compile-cplus-method.exp: result of compile code a->get_var2
new FAIL: gdb.compile/compile-cplus-method.exp: result of compile code pmf = &A::get_var1; var =
new KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararray@3
new KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararrayp@3
new KFAIL: gdb.compile/compile-cplus-print.exp: compile print main
new FAIL: gdb.compile/compile-cplus-virtual.exp: compile code ap->doit
new FAIL: gdb.compile/compile-cplus-virtual.exp: compile code ap->doit2
new FAIL: gdb.compile/compile-cplus.exp: Test compile file and raw option without a filename
new FAIL: gdb.compile/compile-cplus.exp: Test compile file with unknown argument
new FAIL: gdb.compile/compile-cplus.exp: bt
new KFAIL: gdb.compile/compile-cplus.exp: call func_nodebug
new KFAIL: gdb.compile/compile-cplus.exp: call func_nodebug indirectly
new FAIL: gdb.compile/compile-cplus.exp: compile code -z
new FAIL: gdb.compile/compile-cplus.exp: compile code localvar =
new KFAIL: gdb.compile/compile-cplus.exp: expect -75
new KFAIL: gdb.compile/compile-cplus.exp: expect -76
new FAIL: gdb.compile/compile-cplus.exp: p localvar
new FAIL: gdb.compile/compile-cplus.exp: print 'compile-cplus.c'::globalshadow
new FAIL: gdb.compile/compile-cplus.exp: print globalshadow second time
new KFAIL: gdb.compile/compile-print.exp: compile print *vararray@3
new KFAIL: gdb.compile/compile-print.exp: compile print *vararrayp@3
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new FAIL: gdb.dwarf2/dup-psym.exp: info sources should contain only one reference to file1.txt
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.dwarf2/main-subprogram.exp: stopped at mymain
new KFAIL: gdb.fortran/derived-type-striding.exp: p point_dimension
new KFAIL: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
new KFAIL: gdb.fortran/function-calls.exp: p one_arg_value
new FAIL: gdb.go/methods.exp: setting breakpoint at
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=1: follow_exec_mode=new: continue across exec that changes architecture
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KPASS: gdb.opt/inline-locals.exp: info locals above bar 2
new KPASS: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp, 2nd instr
new FAIL: gdb.reverse/consecutive-reverse.exp: stopped at bp, 2nd instr
new KFAIL: gdb.reverse/fstatat-reverse.exp: continue to breakpoint: marker2
new KFAIL: gdb.reverse/getresuid-reverse.exp: continue to breakpoint: marker2
new KFAIL: gdb.reverse/pipe-reverse.exp: continue to breakpoint: marker2
new KFAIL: gdb.reverse/readv-reverse.exp: continue to breakpoint: marker2
new KFAIL: gdb.reverse/recvmsg-reverse.exp: continue to breakpoint: marker2
new KFAIL: gdb.reverse/sigall-precsave.exp: run to end of main
new KFAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ABRT
new KFAIL: gdb.reverse/solib-precsave.exp: run to end of main
new KFAIL: gdb.reverse/solib-reverse.exp: run until end part one
new FAIL: gdb.reverse/step-precsave.exp: reverse next over call
new FAIL: gdb.reverse/step-precsave.exp: reverse next test 1
new FAIL: gdb.reverse/step-precsave.exp: reverse next test 2
new FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
new FAIL: gdb.reverse/step-precsave.exp: reverse step test 1
new FAIL: gdb.reverse/step-precsave.exp: reverse step test 2
new FAIL: gdb.reverse/step-precsave.exp: reverse stepi from a function call
new KFAIL: gdb.reverse/step-precsave.exp: run to end of main
new FAIL: gdb.reverse/step-precsave.exp: simple reverse stepi
new FAIL: gdb.reverse/step-reverse.exp: reverse next over call
new FAIL: gdb.reverse/step-reverse.exp: reverse next test 1
new FAIL: gdb.reverse/step-reverse.exp: reverse next test 2
new FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
new FAIL: gdb.reverse/step-reverse.exp: reverse step test 1
new FAIL: gdb.reverse/step-reverse.exp: reverse step test 2
new FAIL: gdb.reverse/step-reverse.exp: reverse stepi from a function call
new FAIL: gdb.reverse/step-reverse.exp: simple reverse stepi
new KFAIL: gdb.reverse/time-reverse.exp: continue to breakpoint: marker2
new KFAIL: gdb.reverse/until-precsave.exp: run to end of main
new KFAIL: gdb.reverse/until-reverse.exp: advance factorial
new KFAIL: gdb.reverse/waitpid-reverse.exp: continue to breakpoint: marker2
new FAIL: gdb.rust/generics.exp: print identity::< Hold<i32> >
new FAIL: gdb.rust/generics.exp: print identity::<Hold<i32>>
new FAIL: gdb.rust/generics.exp: print identity::<f64>
new FAIL: gdb.rust/generics.exp: print identity::<generics::Hold<i32> >
new FAIL: gdb.rust/generics.exp: print identity::<u32>
new FAIL: gdb.rust/generics.exp: ptype identity::<f64>
new FAIL: gdb.rust/generics.exp: ptype identity::<u32>
new FAIL: gdb.threads/create-fail.exp: iteration 10: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 1: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 2: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 3: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 4: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 5: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 6: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 7: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 8: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 9: run till end
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
new KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
new KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
new KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k
new KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r
new KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z
new KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print k
new KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print r
new KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print z
new KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 1st stop: print i
new KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 1st stop: print j
new KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: print i
new KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: print j
new KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print i
new KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print j
new KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.table.gz>


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

end of thread, other threads:[~2020-01-17 17:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16 23:47 [binutils-gdb] Fix some spelling errors gdb-buildbot
2020-01-16 23:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-17 16:36 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-w64-mingw32, branch master *** BREAKAGE *** gdb-buildbot
2020-01-17 17:24 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch master gdb-buildbot
2020-01-17 17:24 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
2020-01-17 17:40 ` Failures on Fedora-x86_64-cc-with-index, " gdb-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).