public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Move free_all_objfiles to program_space
@ 2019-12-13  1:00 gdb-buildbot
  2019-12-13  1:11 ` *** COMPILATION FAILED *** Failures on Solaris11-sparcv9-m64, branch master *** BREAKAGE *** gdb-buildbot
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-13  1:00 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 343cc95202fce70383551053f2efab09c5e02366 ***

commit 343cc95202fce70383551053f2efab09c5e02366
Author:     Tom Tromey <tom@tromey.com>
AuthorDate: Fri Nov 1 21:02:38 2019 -0600
Commit:     Tom Tromey <tom@tromey.com>
CommitDate: Thu Dec 12 15:50:56 2019 -0700

    Move free_all_objfiles to program_space
    
    This changes free_all_objfiles to be a method on program_space, in
    line with the other changes to treat program_space as a container for
    objfiles.
    
    gdb/ChangeLog
    2019-12-12  Tom Tromey  <tom@tromey.com>
    
            * symfile.c (symbol_file_clear): Update.
            * progspace.h (struct program_space) <free_all_objfiles>: Declare
            method.
            * progspace.c (program_space::free_all_objfiles): New method.
            * objfiles.h (free_all_objfiles): Don't declare.
            * objfiles.c (free_all_objfiles): Move to program_space.
    
    Change-Id: I908b549d2981b6005f7ca181fc0e6d24fc8b7b6f

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 9b96f3d8fd..9c1322d2a0 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,12 @@
+2019-12-12  Tom Tromey  <tom@tromey.com>
+
+	* symfile.c (symbol_file_clear): Update.
+	* progspace.h (struct program_space) <free_all_objfiles>: Declare
+	method.
+	* progspace.c (program_space::free_all_objfiles): New method.
+	* objfiles.h (free_all_objfiles): Don't declare.
+	* objfiles.c (free_all_objfiles): Move to program_space.
+
 2019-12-12  Tom Tromey  <tom@tromey.com>
 
 	* progspace.c (program_space::add_objfile)
diff --git a/gdb/objfiles.c b/gdb/objfiles.c
index 31265c1653..56854cc5c6 100644
--- a/gdb/objfiles.c
+++ b/gdb/objfiles.c
@@ -618,21 +618,6 @@ objfile::~objfile ()
   get_objfile_pspace_data (pspace)->section_map_dirty = 1;
 }
 
-/* Free all the object files at once and clean up their users.  */
-
-void
-free_all_objfiles (void)
-{
-  struct so_list *so;
-
-  /* Any objfile reference would become stale.  */
-  for (so = master_so_list (); so; so = so->next)
-    gdb_assert (so->objfile == NULL);
-
-  for (objfile *objfile : current_program_space->objfiles_safe ())
-    objfile->unlink ();
-  clear_symtab_users (0);
-}
 \f
 /* A helper function for objfile_relocate1 that relocates a single
    symbol.  */
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
index f9bf102bc8..34240558da 100644
--- a/gdb/objfiles.h
+++ b/gdb/objfiles.h
@@ -662,8 +662,6 @@ extern void build_objfile_section_table (struct objfile *);
 
 extern void free_objfile_separate_debug (struct objfile *);
 
-extern void free_all_objfiles (void);
-
 extern void objfile_relocate (struct objfile *, const struct section_offsets *);
 extern void objfile_rebase (struct objfile *, CORE_ADDR);
 
diff --git a/gdb/progspace.c b/gdb/progspace.c
index d1bf0c6aba..3cb0d4c61e 100644
--- a/gdb/progspace.c
+++ b/gdb/progspace.c
@@ -23,6 +23,7 @@
 #include "arch-utils.h"
 #include "gdbcore.h"
 #include "solib.h"
+#include "solist.h"
 #include "gdbthread.h"
 #include "inferior.h"
 #include <algorithm>
@@ -156,6 +157,23 @@ program_space::~program_space ()
 
 /* See progspace.h.  */
 
+void
+program_space::free_all_objfiles ()
+{
+  struct so_list *so;
+
+  /* Any objfile reference would become stale.  */
+  for (so = master_so_list (); so; so = so->next)
+    gdb_assert (so->objfile == NULL);
+
+  while (!objfiles_list.empty ())
+    objfiles_list.front ()->unlink ();
+
+  clear_symtab_users (0);
+}
+
+/* See progspace.h.  */
+
 void
 program_space::add_objfile (struct objfile *objfile, struct objfile *before)
 {
diff --git a/gdb/progspace.h b/gdb/progspace.h
index a731eb6e24..6945e38eb9 100644
--- a/gdb/progspace.h
+++ b/gdb/progspace.h
@@ -179,6 +179,9 @@ struct program_space
     return objfiles_list.size () > 1;
   }
 
+  /* Free all the objfiles associated with this program space.  */
+  void free_all_objfiles ();
+
 
   /* Pointer to next in linked list.  */
   struct program_space *next = NULL;
diff --git a/gdb/symfile.c b/gdb/symfile.c
index 965237191a..8852e2893a 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -1251,7 +1251,7 @@ symbol_file_clear (int from_tty)
      objfiles get stale by free_all_objfiles.  */
   no_shared_libraries (NULL, from_tty);
 
-  free_all_objfiles ();
+  current_program_space->free_all_objfiles ();
 
   gdb_assert (symfile_objfile == NULL);
   if (from_tty)


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

* *** COMPILATION FAILED *** Failures on Solaris11-sparcv9-m64, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
@ 2019-12-13  1:11 ` gdb-buildbot
  2019-12-13  1:19 ` *** COMPILATION FAILED *** Failures on Solaris11-amd64-m64, " gdb-buildbot
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-13  1:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Solaris11-sparcv9-m64

Worker:
        solaris11-sparcv9

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

  ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: note:   template argument deduction/substitution failed:
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, std::__cxx1998::_List_iterator<objfile*> >::__value, std::__debug::list<objfile*> >::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::__debug::list<objfile*> >
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:158:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(_Safe_iterator&& __x) noexcept
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:158:7: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> > to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&&
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:140:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:140:7: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> > to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:128:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, const _Safe_sequence_base* __seq)
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:128:7: note:   candidate expects 2 arguments, 1 provided
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:119:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator() _GLIBCXX_NOEXCEPT : _Iter_base() { }
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:119:7: note:   candidate expects 0 arguments, 1 provided
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:104:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, _Safe_sequence_base* __seq,
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:104:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29:0,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >)
       m_end (std::forward<Arg> (arg2))
                                      ^
In file included from /usr/gcc/7/include/c++/7.3.0/debug/vector:38:0,
                 from /usr/gcc/7/include/c++/7.3.0/vector:73,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, typename _Sequence::iterator::iterator_type>::__value, _Sequence>::__type>&)
  _Safe_iterator(
  ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: note:   template argument deduction/substitution failed:
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, std::__cxx1998::_List_iterator<objfile*> >::__value, std::__debug::list<objfile*> >::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::__debug::list<objfile*> >
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:158:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(_Safe_iterator&& __x) noexcept
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:158:7: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> > to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&&
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:140:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:140:7: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> > to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:128:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, const _Safe_sequence_base* __seq)
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:128:7: note:   candidate expects 2 arguments, 1 provided
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:119:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator() _GLIBCXX_NOEXCEPT : _Iter_base() { }
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:119:7: note:   candidate expects 0 arguments, 1 provided
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:104:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, _Safe_sequence_base* __seq,
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:104:7: note:   candidate expects 3 arguments, 1 provided
gmake[2]: *** [Makefile:1660: jit.o] Error 1
gmake[2]: *** Waiting for unfinished jobs....
In file included from ../../binutils-gdb/gdb/infrun.c:26:0:
../../binutils-gdb/gdb/inferior.h: In function void handle_vfork_child_exec_or_exit(int):
../../binutils-gdb/gdb/inferior.h:584:26: warning: *((void*)(& maybe_restore_inferior)+40).scoped_restore_current_inferior::m_saved_inf may be used uninitialized in this function [-Wmaybe-uninitialized]
   { set_current_inferior (m_saved_inf); }
     ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
../../binutils-gdb/gdb/infrun.c:927:6: note: *((void*)(& maybe_restore_inferior)+40).scoped_restore_current_inferior::m_saved_inf was declared here
      maybe_restore_inferior;
      ^~~~~~~~~~~~~~~~~~~~~~
In file included from ../../binutils-gdb/gdb/inferior.h:49:0,
                 from ../../binutils-gdb/gdb/infrun.c:26:
../../binutils-gdb/gdb/progspace.h:326:31: warning: *((void*)(& maybe_restore_inferior)+32).scoped_restore_current_program_space::m_saved_pspace may be used uninitialized in this function [-Wmaybe-uninitialized]
   { set_current_program_space (m_saved_pspace); }
     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../binutils-gdb/gdb/infrun.c:927:6: note: *((void*)(& maybe_restore_inferior)+32).scoped_restore_current_program_space::m_saved_pspace was declared here
      maybe_restore_inferior;
      ^~~~~~~~~~~~~~~~~~~~~~
gmake[2]: Leaving directory '/opt/gdb-buildbot/home/solaris11-sparcv9/solaris11-sparcv9-m64/build/gdb'
gmake[1]: *** [Makefile:9229: all-gdb] Error 2
gmake[1]: Leaving directory '/opt/gdb-buildbot/home/solaris11-sparcv9/solaris11-sparcv9-m64/build'
gmake: *** [Makefile:851: all] Error 2
program finished with exit code 2
elapsedTime=216.835619
==============================================


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

* *** COMPILATION FAILED *** Failures on Solaris11-amd64-m64, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
  2019-12-13  1:11 ` *** COMPILATION FAILED *** Failures on Solaris11-sparcv9-m64, branch master *** BREAKAGE *** gdb-buildbot
@ 2019-12-13  1:19 ` gdb-buildbot
  2019-12-15 23:39 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-m64, " gdb-buildbot
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-13  1:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Solaris11-amd64-m64

Worker:
        solaris11-amd64

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

  ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: note:   template argument deduction/substitution failed:
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, std::__cxx1998::_List_iterator<objfile*> >::__value, std::__debug::list<objfile*> >::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::__debug::list<objfile*> >
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:158:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(_Safe_iterator&& __x) noexcept
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:158:7: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> > to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&&
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:140:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:140:7: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> > to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:128:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, const _Safe_sequence_base* __seq)
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:128:7: note:   candidate expects 2 arguments, 1 provided
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:119:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator() _GLIBCXX_NOEXCEPT : _Iter_base() { }
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:119:7: note:   candidate expects 0 arguments, 1 provided
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:104:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, _Safe_sequence_base* __seq,
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:104:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29:0,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >)
       m_end (std::forward<Arg> (arg2))
                                      ^
In file included from /usr/gcc/7/include/c++/7.3.0/debug/vector:38:0,
                 from /usr/gcc/7/include/c++/7.3.0/vector:73,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, typename _Sequence::iterator::iterator_type>::__value, _Sequence>::__type>&)
  _Safe_iterator(
  ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: note:   template argument deduction/substitution failed:
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, typename __gnu_cxx::__enable_if<std::__are_same<_MutableIterator, std::__cxx1998::_List_iterator<objfile*> >::__value, std::__debug::list<objfile*> >::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:178:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::__debug::list<objfile*> >
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> >; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> > >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:158:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(_Safe_iterator&& __x) noexcept
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:158:7: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> > to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&&
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:140:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:140:7: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*> > to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*> >&
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:128:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, const _Safe_sequence_base* __seq)
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:128:7: note:   candidate expects 2 arguments, 1 provided
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:119:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator() _GLIBCXX_NOEXCEPT : _Iter_base() { }
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:119:7: note:   candidate expects 0 arguments, 1 provided
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:104:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Safe_iterator(const _Iterator&, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
       _Safe_iterator(const _Iterator& __i, _Safe_sequence_base* __seq,
       ^~~~~~~~~~~~~~
/usr/gcc/7/include/c++/7.3.0/debug/safe_iterator.h:104:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/infrun.c:26:0:
../../binutils-gdb/gdb/inferior.h: In function void handle_vfork_child_exec_or_exit(int):
../../binutils-gdb/gdb/inferior.h:584:26: warning: *((void*)(& maybe_restore_inferior)+40).scoped_restore_current_inferior::m_saved_inf may be used uninitialized in this function [-Wmaybe-uninitialized]
   { set_current_inferior (m_saved_inf); }
     ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
../../binutils-gdb/gdb/infrun.c:927:6: note: *((void*)(& maybe_restore_inferior)+40).scoped_restore_current_inferior::m_saved_inf was declared here
      maybe_restore_inferior;
      ^~~~~~~~~~~~~~~~~~~~~~
In file included from ../../binutils-gdb/gdb/inferior.h:49:0,
                 from ../../binutils-gdb/gdb/infrun.c:26:
../../binutils-gdb/gdb/progspace.h:326:31: warning: *((void*)(& maybe_restore_inferior)+32).scoped_restore_current_program_space::m_saved_pspace may be used uninitialized in this function [-Wmaybe-uninitialized]
   { set_current_program_space (m_saved_pspace); }
     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../binutils-gdb/gdb/infrun.c:927:6: note: *((void*)(& maybe_restore_inferior)+32).scoped_restore_current_program_space::m_saved_pspace was declared here
      maybe_restore_inferior;
      ^~~~~~~~~~~~~~~~~~~~~~
gmake[2]: *** [Makefile:1660: jit.o] Error 1
gmake[2]: *** Waiting for unfinished jobs....
gmake[2]: Leaving directory '/opt/gdb-buildbot/home/solaris11-amd64/solaris11-amd64-m64/build/gdb'
gmake[1]: *** [Makefile:9229: all-gdb] Error 2
gmake[1]: Leaving directory '/opt/gdb-buildbot/home/solaris11-amd64/solaris11-amd64-m64/build'
gmake: *** [Makefile:851: all] Error 2
program finished with exit code 2
elapsedTime=370.166999
==============================================


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

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

Buildername:
        Ubuntu-Aarch64-m64

Worker:
        ubuntu-aarch64

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

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


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

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

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

Worker:
        ubuntu-aarch64

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

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


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

* *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-12-15 23:42 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-15 23:55 ` gdb-buildbot
  2019-12-17  0:19 ` *** COMPILATION FAILED *** Failures on Fedora-i686, " gdb-buildbot
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-15 23:55 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/1433

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

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


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

* *** COMPILATION FAILED *** Failures on Fedora-i686, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-12-15 23:55 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2019-12-17  0:19 ` gdb-buildbot
  2019-12-17  0:23 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  0:19 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/1539

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
make[2]: *** [Makefile:1662: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-i686/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make: *** [Makefile:852: all] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-i686/build'
program finished with exit code 2
elapsedTime=334.388828
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (5 preceding siblings ...)
  2019-12-17  0:19 ` *** COMPILATION FAILED *** Failures on Fedora-i686, " gdb-buildbot
@ 2019-12-17  0:23 ` gdb-buildbot
  2019-12-17  0:30 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  0:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-1

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
make[2]: *** [Makefile:1662: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-cc-with-index/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-cc-with-index/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=303.697855
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (6 preceding siblings ...)
  2019-12-17  0:23 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-12-17  0:30 ` gdb-buildbot
  2019-12-17  0:36 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  0:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-1

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
make[2]: *** [Makefile:1662: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-m32/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-m32/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=236.383547
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (7 preceding siblings ...)
  2019-12-17  0:30 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-12-17  0:36 ` gdb-buildbot
  2019-12-17  0:41 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  0:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m64

Worker:
        fedora-x86-64-1

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
  CXX    linespec.o
make[2]: *** [Makefile:1662: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64/build/gdb'
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64/build'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=350.035418
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (8 preceding siblings ...)
  2019-12-17  0:36 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-12-17  0:41 ` gdb-buildbot
  2019-12-17  0:50 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-w64-mingw32, " gdb-buildbot
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  0:41 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/1536

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
make[2]: *** [Makefile:1662: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build/gdb'
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=344.662287
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-w64-mingw32, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (9 preceding siblings ...)
  2019-12-17  0:41 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-12-17  0:50 ` gdb-buildbot
  2019-12-17  1:44 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  0:50 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/1324

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/vector:43,
                 from /usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:535:2: note: candidate: 'template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)'
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h: In substitution of 'template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:535:2: error: no type named '__type' in 'struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:527:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]'
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>' to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&'
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:521:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]'
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>' to 'const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&'
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:513:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]'
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:504:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]'
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:497:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]'
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)'
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/vector:43,
                 from /usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:535:2: note: candidate: 'template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)'
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h: In substitution of 'template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:535:2: error: no type named '__type' in 'struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>'
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of 'basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]':
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from 'basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]'
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:527:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]'
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>' to '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&'
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:521:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]'
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from '__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>' to 'const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&'
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:513:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]'
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:504:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]'
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:497:7: note: candidate: '__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]'
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/x86_64-w64-mingw32/sys-root/mingw/include/c++/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
make[2]: *** [Makefile:1658: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-mingw32/build/gdb'
make[1]: *** [Makefile:8917: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-mingw32/build'
make: *** [Makefile:859: all] Error 2
program finished with exit code 2
elapsedTime=276.144263
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (10 preceding siblings ...)
  2019-12-17  0:50 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-w64-mingw32, " gdb-buildbot
@ 2019-12-17  1:44 ` gdb-buildbot
  2019-12-17  2:02 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
  2019-12-17  2:47 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  1:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-4

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
make[2]: *** [Makefile:1662: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-gdbserver-m32/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-gdbserver-m32/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=208.676583
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (11 preceding siblings ...)
  2019-12-17  1:44 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-12-17  2:02 ` gdb-buildbot
  2019-12-17  2:47 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  2:02 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-2

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
make[2]: *** [Makefile:1662: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-extended-gdbserver/build/gdb'
make[1]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-2/fedora-x86-64-native-extended-gdbserver/build'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=347.259983
==============================================


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

* *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, branch master *** BREAKAGE ***
  2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
                   ` (12 preceding siblings ...)
  2019-12-17  2:02 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-17  2:47 ` gdb-buildbot
  13 siblings, 0 replies; 15+ messages in thread
From: gdb-buildbot @ 2019-12-17  2:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m64

Worker:
        fedora-x86-64-3

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        343cc95202fce70383551053f2efab09c5e02366

Subject of commit:
        Move free_all_objfiles to program_space

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

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

In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
In file included from ../../binutils-gdb/gdb/progspace.h:29,
                 from ../../binutils-gdb/gdb/exec.h:24,
                 from ../../binutils-gdb/gdb/gdbcore.h:29,
                 from ../../binutils-gdb/gdb/jit.c:31:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38: error: no matching function for call to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>)
   68 |       m_end (std::forward<Arg> (arg2))
      |                                      ^
In file included from /usr/include/c++/9/debug/vector:43,
                 from /usr/include/c++/9/vector:76,
                 from ../../binutils-gdb/gdb/gdbsupport/common-utils.h:24,
                 from ../../binutils-gdb/gdb/gdbsupport/common-defs.h:127,
                 from ../../binutils-gdb/gdb/defs.h:28,
                 from ../../binutils-gdb/gdb/jit.c:20:
/usr/include/c++/9/debug/safe_iterator.h:535:2: note: candidate: template<class _MutableIterator> __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, _Sequence, typename __gnu_cxx::__enable_if<(typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_IsConstant::__value && std::__are_same<_MutableIterator, typename __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::forward_iterator_tag>::_OtherIterator>::__value), std::bidirectional_iterator_tag>::__type>&)
  535 |  _Safe_iterator(
      |  ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:535:2: note:   template argument deduction/substitution failed:
/usr/include/c++/9/debug/safe_iterator.h: In substitution of template<class _MutableIterator> __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_MutableIterator, std::__debug::list<objfile*>, typename __gnu_cxx::__enable_if<(std::__are_same<std::__cxx1998::_List_const_iterator<objfile*>, std::__cxx1998::_List_iterator<objfile*> >::__value && std::__are_same<_MutableIterator, std::__cxx1998::_List_const_iterator<objfile*> >::__value), std::bidirectional_iterator_tag>::__type>&) [with _MutableIterator = std::__cxx1998::_List_const_iterator<objfile*>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:68:38:   required from basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:535:2: error: no type named __type in struct __gnu_cxx::__enable_if<false, std::bidirectional_iterator_tag>
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h: In instantiation of basic_safe_iterator<Iterator>::basic_safe_iterator(Arg&&, Arg&&) [with Arg = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>; Iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]:
../../binutils-gdb/gdb/gdbsupport/safe-iterator.h:122:12:   required from basic_safe_range<Range>::iterator basic_safe_range<Range>::begin() const [with Range = std::__debug::list<objfile*>; basic_safe_range<Range>::iterator = basic_safe_iterator<__gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> >; typename Range::iterator = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>]
../../binutils-gdb/gdb/jit.c:1365:62:   required from here
/usr/include/c++/9/debug/safe_iterator.h:527:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(__gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:527:22: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&&
  527 |       _Safe_iterator(_Safe_iterator&&) = default;
      |                      ^~~~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(const __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>&) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:521:44: note:   no known conversion for argument 1 from __gnu_debug::_Safe_iterator<std::__cxx1998::_List_const_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag> to const __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::bidirectional_iterator_tag>&
  521 |       _Safe_iterator(const _Safe_iterator& __x) _GLIBCXX_NOEXCEPT
      |                      ~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, const __gnu_debug::_Safe_sequence_base*) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  513 |       _Safe_iterator(_Iterator __i, const _Safe_sequence_base* __seq)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:513:7: note:   candidate expects 2 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:504:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator() [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>]
  504 |       _Safe_iterator() _GLIBCXX_NOEXCEPT { }
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:504:7: note:   candidate expects 0 arguments, 1 provided
/usr/include/c++/9/debug/safe_iterator.h:497:7: note: candidate: __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Safe_iterator(_Iterator, __gnu_debug::_Safe_sequence_base*, __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single) [with _Iterator = std::__cxx1998::_List_iterator<objfile*>; _Sequence = std::__debug::list<objfile*>; __gnu_debug::_Safe_iterator<_Iterator, _Sequence, std::bidirectional_iterator_tag>::_Attach_single = __gnu_debug::_Safe_iterator<std::__cxx1998::_List_iterator<objfile*>, std::__debug::list<objfile*>, std::forward_iterator_tag>::_Attach_single]
  497 |       _Safe_iterator(_Iterator __i, _Safe_sequence_base* __seq, _Attach_single)
      |       ^~~~~~~~~~~~~~
/usr/include/c++/9/debug/safe_iterator.h:497:7: note:   candidate expects 3 arguments, 1 provided
make[2]: *** [Makefile:1662: jit.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver/build/gdb'
make[1]: *** [Makefile:9230: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver/build'
make: *** [Makefile:852: all] Error 2
program finished with exit code 2
elapsedTime=241.990751
==============================================


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

end of thread, other threads:[~2019-12-17  2:45 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-13  1:00 [binutils-gdb] Move free_all_objfiles to program_space gdb-buildbot
2019-12-13  1:11 ` *** COMPILATION FAILED *** Failures on Solaris11-sparcv9-m64, branch master *** BREAKAGE *** gdb-buildbot
2019-12-13  1:19 ` *** COMPILATION FAILED *** Failures on Solaris11-amd64-m64, " gdb-buildbot
2019-12-15 23:39 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-m64, " gdb-buildbot
2019-12-15 23:42 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-15 23:55 ` *** COMPILATION FAILED *** Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2019-12-17  0:19 ` *** COMPILATION FAILED *** Failures on Fedora-i686, " gdb-buildbot
2019-12-17  0:23 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-12-17  0:30 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-12-17  0:36 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-12-17  0:41 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-12-17  0:50 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-w64-mingw32, " gdb-buildbot
2019-12-17  1:44 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-12-17  2:02 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-17  2:47 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, " 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).