public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Add destructor to tui_win_info
@ 2019-06-25 16:56 gdb-buildbot
  2019-06-25 17:00 ` Failures on Fedora-i686, branch master gdb-buildbot
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-06-25 16:56 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT e7e11af42dca6482302833c4106974176aa66052 ***

commit e7e11af42dca6482302833c4106974176aa66052
Author:     Tom Tromey <tom@tromey.com>
AuthorDate: Sun Jun 16 09:43:21 2019 -0600
Commit:     Tom Tromey <tom@tromey.com>
CommitDate: Tue Jun 25 07:48:24 2019 -0600

    Add destructor to tui_win_info
    
    This changes tui_free_window into a destructor for tui_free_window and
    then updates the users.
    
    gdb/ChangeLog
    2019-06-25  Tom Tromey  <tom@tromey.com>
    
            * tui/tui-win.c (tui_resize_all): Use delete.
            * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
            destructor.
            (tui_free_window): Don't declare.
            * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
            Update.

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b4395c0138..537c70bebd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,14 @@
 2019-06-25  Tom Tromey  <tom@tromey.com>
 
+	* tui/tui-win.c (tui_resize_all): Use delete.
+	* tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
+	destructor.
+	(tui_free_window): Don't declare.
+	* tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
+	Update.
+
+2019-06-25  Tom Tromey  <tom@tromey.com>
+
 	* tui/tui-data.h (struct tui_win_info): Add constructor.
 	* tui/tui-data.c (tui_alloc_win_info): Use new.
 	(tui_free_window): Use delete.
diff --git a/gdb/tui/tui-data.c b/gdb/tui/tui-data.c
index 117bda3c20..1c96fc1c07 100644
--- a/gdb/tui/tui-data.c
+++ b/gdb/tui/tui-data.c
@@ -603,21 +603,20 @@ tui_add_content_elements (struct tui_gen_win_info *win_info,
   return index_start;
 }
 
-void
-tui_free_window (struct tui_win_info *win_info)
+tui_win_info::~tui_win_info ()
 {
   struct tui_gen_win_info *generic_win;
 
-  switch (win_info->generic.type)
+  switch (generic.type)
     {
     case SRC_WIN:
     case DISASSEM_WIN:
-      if (win_info->detail.source_info.fullname)
+      if (detail.source_info.fullname)
         {
-          xfree (win_info->detail.source_info.fullname);
-          win_info->detail.source_info.fullname = NULL;
+          xfree (detail.source_info.fullname);
+          detail.source_info.fullname = NULL;
         }
-      generic_win = win_info->detail.source_info.execution_info;
+      generic_win = detail.source_info.execution_info;
       if (generic_win != NULL)
 	{
 	  tui_delete_win (generic_win->handle);
@@ -626,34 +625,33 @@ tui_free_window (struct tui_win_info *win_info)
 	}
       break;
     case DATA_WIN:
-      if (win_info->generic.content != NULL)
+      if (generic.content != NULL)
 	{
-	  tui_free_data_content (win_info->detail.data_display_info.regs_content,
-				 win_info->detail.data_display_info.regs_content_count);
-	  win_info->detail.data_display_info.regs_content = NULL;
-	  win_info->detail.data_display_info.regs_content_count = 0;
-	  tui_free_data_content (win_info->detail.data_display_info.data_content,
-				 win_info->detail.data_display_info.data_content_count);
-	  win_info->detail.data_display_info.data_content = NULL;
-	  win_info->detail.data_display_info.data_content_count = 0;
-	  win_info->detail.data_display_info.regs_column_count = 1;
-	  win_info->detail.data_display_info.display_regs = FALSE;
-	  win_info->generic.content = NULL;
-	  win_info->generic.content_size = 0;
+	  tui_free_data_content (detail.data_display_info.regs_content,
+				 detail.data_display_info.regs_content_count);
+	  detail.data_display_info.regs_content = NULL;
+	  detail.data_display_info.regs_content_count = 0;
+	  tui_free_data_content (detail.data_display_info.data_content,
+				 detail.data_display_info.data_content_count);
+	  detail.data_display_info.data_content = NULL;
+	  detail.data_display_info.data_content_count = 0;
+	  detail.data_display_info.regs_column_count = 1;
+	  detail.data_display_info.display_regs = FALSE;
+	  generic.content = NULL;
+	  generic.content_size = 0;
 	}
       break;
     default:
       break;
     }
-  if (win_info->generic.handle != NULL)
+  if (generic.handle != NULL)
     {
-      tui_delete_win (win_info->generic.handle);
-      win_info->generic.handle = NULL;
-      tui_free_win_content (&win_info->generic);
+      tui_delete_win (generic.handle);
+      generic.handle = NULL;
+      tui_free_win_content (&generic);
     }
-  if (win_info->generic.title)
-    xfree (win_info->generic.title);
-  delete win_info;
+  if (generic.title)
+    xfree (generic.title);
 }
 
 
diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h
index 047ee35d98..c5c2c2b278 100644
--- a/gdb/tui/tui-data.h
+++ b/gdb/tui/tui-data.h
@@ -276,6 +276,8 @@ struct tui_win_info
     generic.type = type;
   }
 
+  ~tui_win_info ();
+
   DISABLE_COPY_AND_ASSIGN (tui_win_info);
 
   struct tui_gen_win_info generic;	/* General window information.  */
@@ -313,7 +315,6 @@ extern void tui_init_generic_part (struct tui_gen_win_info *);
 extern tui_win_content tui_alloc_content (int, enum tui_win_type);
 extern int tui_add_content_elements (struct tui_gen_win_info *, 
 				     int);
-extern void tui_free_window (struct tui_win_info *);
 extern void tui_free_win_content (struct tui_gen_win_info *);
 extern void tui_free_data_content (tui_win_content, int);
 extern void tui_free_all_source_wins_content (void);
diff --git a/gdb/tui/tui-win.c b/gdb/tui/tui-win.c
index a1329e54a8..a69e0878ef 100644
--- a/gdb/tui/tui-win.c
+++ b/gdb/tui/tui-win.c
@@ -785,7 +785,7 @@ tui_resize_all (void)
 	      && (tui_win_list[win_type] != NULL)
 	      && !tui_win_list[win_type]->generic.is_visible)
 	    {
-	      tui_free_window (tui_win_list[win_type]);
+	      delete tui_win_list[win_type];
 	      tui_win_list[win_type] = NULL;
 	    }
 	}


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

* Failures on Fedora-i686, branch master
  2019-06-25 16:56 [binutils-gdb] Add destructor to tui_win_info gdb-buildbot
@ 2019-06-25 17:00 ` gdb-buildbot
  2019-06-25 17:06 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-06-25 17:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e7e11af42dca6482302833c4106974176aa66052

Subject of commit:
        Add destructor to tui_win_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e7/e7e11af42dca6482302833c4106974176aa66052

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** 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-i686/e7/e7e11af42dca6482302833c4106974176aa66052/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-i686/e7/e7e11af42dca6482302833c4106974176aa66052/xfail.table.gz>


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2019-06-25 16:56 [binutils-gdb] Add destructor to tui_win_info gdb-buildbot
  2019-06-25 17:00 ` Failures on Fedora-i686, branch master gdb-buildbot
@ 2019-06-25 17:06 ` gdb-buildbot
  2019-06-25 17:19 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-06-25 17:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-2

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e7e11af42dca6482302833c4106974176aa66052

Subject of commit:
        Add destructor to tui_win_info

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** 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/e7/e7e11af42dca6482302833c4106974176aa66052/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/e7/e7e11af42dca6482302833c4106974176aa66052/xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2019-06-25 16:56 [binutils-gdb] Add destructor to tui_win_info gdb-buildbot
  2019-06-25 17:00 ` Failures on Fedora-i686, branch master gdb-buildbot
  2019-06-25 17:06 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-06-25 17:19 ` gdb-buildbot
  2019-06-25 17:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-06-25 17:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-4

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e7e11af42dca6482302833c4106974176aa66052

Subject of commit:
        Add destructor to tui_win_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/e7/e7e11af42dca6482302833c4106974176aa66052

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** 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-m32/e7/e7e11af42dca6482302833c4106974176aa66052/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-m32/e7/e7e11af42dca6482302833c4106974176aa66052/xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2019-06-25 16:56 [binutils-gdb] Add destructor to tui_win_info gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-06-25 17:19 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-06-25 17:27 ` gdb-buildbot
  2019-06-25 17:39 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2019-07-09 17:11 ` *** COMPILATION FAILED *** Failures on NetBSD-x86_64-m64, branch master *** BREAKAGE *** gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-06-25 17:27 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-1

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e7e11af42dca6482302833c4106974176aa66052

Subject of commit:
        Add destructor to tui_win_info

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/corefile.exp: core-file warning-free
FAIL -> UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
FAIL -> UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
FAIL -> UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
FAIL -> UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** 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-extended-gdbserver-m32/e7/e7e11af42dca6482302833c4106974176aa66052/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-extended-gdbserver-m32/e7/e7e11af42dca6482302833c4106974176aa66052/xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2019-06-25 16:56 [binutils-gdb] Add destructor to tui_win_info gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-06-25 17:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-06-25 17:39 ` gdb-buildbot
  2019-07-09 17:11 ` *** COMPILATION FAILED *** Failures on NetBSD-x86_64-m64, branch master *** BREAKAGE *** gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-06-25 17: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/20

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e7e11af42dca6482302833c4106974176aa66052

Subject of commit:
        Add destructor to tui_win_info

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/corefile.exp: core-file warning-free
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** 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/e7/e7e11af42dca6482302833c4106974176aa66052/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/e7/e7e11af42dca6482302833c4106974176aa66052/xfail.table.gz>


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

* *** COMPILATION FAILED *** Failures on NetBSD-x86_64-m64, branch master *** BREAKAGE ***
  2019-06-25 16:56 [binutils-gdb] Add destructor to tui_win_info gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-06-25 17:39 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-07-09 17:11 ` gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-07-09 17:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        NetBSD-x86_64-m64

Worker:
        gdb-amd64-netbsd

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e7e11af42dca6482302833c4106974176aa66052

Subject of commit:
        Add destructor to tui_win_info

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

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

  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  ./mempcpy.o ./strverscmp.o; \
  ranlib ./libiberty.a; \
  cd ..; \
else true; fi
echo ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./d-demangle.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./vprintf-support.o ./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 > required-list
gmake[3]: Entering directory '/data/motusgdb/gdbosci/netbsd-x86_64/build/libiberty/testsuite'
gmake[3]: Nothing to be done for 'all'.
gmake[3]: Leaving directory '/data/motusgdb/gdbosci/netbsd-x86_64/build/libiberty/testsuite'
gmake[2]: Leaving directory '/data/motusgdb/gdbosci/netbsd-x86_64/build/libiberty'
gmake[2]: Entering directory '/data/motusgdb/gdbosci/netbsd-x86_64/build/intl'
rm -f stamp-h1
/bin/sh ./config.status config.h
config.status: creating config.h
config.status: config.h is unchanged
test -f config.h || (rm -f stamp-h1 && gmake stamp-h1)
cp ../../binutils-gdb/intl/libgnuintl.h libintl.h
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/bindtextdom.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/dcgettext.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/dgettext.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/gettext.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/finddomain.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/loadmsgcat.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H -DLOCALE_ALIAS_PATH="\"/usr/local/share/locale\"" -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/localealias.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/textdomain.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/l10nflist.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/explodename.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H -DLOCALEDIR="\"/usr/local/share/locale\"" -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/dcigettext.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/dcngettext.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/dngettext.c
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl ../../binutils-gdb/intl/ngettext.c
bison -y --name-prefix=__gettext --output plural.c ../../binutils-gdb/intl/plural.y
../../binutils-gdb/intl/plural.y:46.1-12: warning: deprecated directive, use '%pure-parser' [-Wdeprecated]
 %pure_parser
 ^^^^^^^^^^^^
rm -f plural.h
gcc -c  -g -D_GLIBCXX_DEBUG  -DHAVE_CONFIG_H  -I. -I../../binutils-gdb/intl plural.c
In file included from ../../binutils-gdb/intl/plural.y:35:0:
../../binutils-gdb/intl/plural-exp.h:102:23: error: conflicting types for 'libintl_gettextparse'
 # define PLURAL_PARSE libintl_gettextparse
                       ^
../../binutils-gdb/intl/plural.y:40:25: note: in expansion of macro 'PLURAL_PARSE'
 # define __gettextparse PLURAL_PARSE
                         ^
plural.c:184:5: note: in expansion of macro '__gettextparse'
 int __gettextparse (void);
     ^
../../binutils-gdb/intl/plural-exp.h:102:23: note: previous declaration of 'libintl_gettextparse' was here
 # define PLURAL_PARSE libintl_gettextparse
                       ^
../../binutils-gdb/intl/plural-exp.h:114:12: note: in expansion of macro 'PLURAL_PARSE'
 extern int PLURAL_PARSE PARAMS ((void *arg));
            ^
../../binutils-gdb/intl/plural-exp.h:102:23: error: conflicting types for 'libintl_gettextparse'
 # define PLURAL_PARSE libintl_gettextparse
                       ^
../../binutils-gdb/intl/plural.y:40:25: note: in expansion of macro 'PLURAL_PARSE'
 # define __gettextparse PLURAL_PARSE
                         ^
plural.c:63:25: note: in expansion of macro '__gettextparse'
 #define yyparse         __gettextparse
                         ^
plural.c:1129:1: note: in expansion of macro 'yyparse'
 yyparse (void)
 ^
../../binutils-gdb/intl/plural-exp.h:102:23: note: previous declaration of 'libintl_gettextparse' was here
 # define PLURAL_PARSE libintl_gettextparse
                       ^
../../binutils-gdb/intl/plural-exp.h:114:12: note: in expansion of macro 'PLURAL_PARSE'
 extern int PLURAL_PARSE PARAMS ((void *arg));
            ^
plural.c: In function 'libintl_gettextparse':
plural.c:64:25: error: too few arguments to function '__gettextlex'
 #define yylex           __gettextlex
                         ^
plural.c:1298:16: note: in expansion of macro 'yylex'
       yychar = yylex (&yylval);
                ^
plural.c:64:25: note: declared here
 #define yylex           __gettextlex
                         ^
../../binutils-gdb/intl/plural.y:69:12: note: in expansion of macro 'yylex'
 static int yylex PARAMS ((YYSTYPE *lval, const char **pexp));
            ^
../../binutils-gdb/intl/plural.y:178:29: error: 'arg' undeclared (first use in this function)
      ((struct parse_args *) arg)->res = $1;
                             ^
../../binutils-gdb/intl/plural.y:178:29: note: each undeclared identifier is reported only once for each function it appears in
Makefile:133: recipe for target 'plural.o' failed
gmake[2]: Leaving directory '/data/motusgdb/gdbosci/netbsd-x86_64/build/intl'
gmake[2]: *** [plural.o] Error 1
Makefile:5629: recipe for target 'all-intl' failed
gmake[1]: *** [all-intl] Error 2
gmake[1]: Leaving directory '/data/motusgdb/gdbosci/netbsd-x86_64/build'
Makefile:850: recipe for target 'all' failed
gmake: *** [all] Error 2
program finished with exit code 2
elapsedTime=52.001991
==============================================


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

end of thread, other threads:[~2019-07-09 17:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-25 16:56 [binutils-gdb] Add destructor to tui_win_info gdb-buildbot
2019-06-25 17:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2019-06-25 17:06 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-06-25 17:19 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-06-25 17:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-06-25 17:39 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-07-09 17:11 ` *** COMPILATION FAILED *** Failures on NetBSD-x86_64-m64, branch master *** BREAKAGE *** 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).