This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gdb and binutils branch master updated. 278289d5d70324b580cb5faf663a8398e4710816


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  278289d5d70324b580cb5faf663a8398e4710816 (commit)
       via  e01e2baa693e8d623e04dd66a55a75a2102bb7cb (commit)
       via  f0c00af8b494001e2a49a2f9ee2df7f340f80f0d (commit)
       via  0cae13bb02b69af6713fc0133eb705ca0ea8b084 (commit)
       via  9c232dda88ade649e92be7a6c9917e0a80ea54c8 (commit)
       via  00d7f58fd4e59c9ffe375f3a6edbe918fd7b5645 (commit)
       via  6068ad5d49cb80f5f2934bc100fffdc856e7e9be (commit)
      from  5d921cbd81554867007e903b634acc6bc8281f9f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=278289d5d70324b580cb5faf663a8398e4710816

commit 278289d5d70324b580cb5faf663a8398e4710816
Author: Yao Qi <yao@codesourcery.com>
Date:   Fri Nov 21 22:05:42 2014 +0800

    Import errno explicitly
    
    errno.h is included in common/common-defs.h, and gnulib errno module
    was imported to gdb.  This patch is to import it explicitly.
    
    gdb:
    
    	* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
    	errno.
    	* gnulib/import/Makefile.am: Re-generated.
    	* gnulib/import/Makefile.in: Likewise.
    	* gnulib/import/m4/gnulib-cache.m4: Likewise.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=e01e2baa693e8d623e04dd66a55a75a2102bb7cb

commit e01e2baa693e8d623e04dd66a55a75a2102bb7cb
Author: Yao Qi <yao@codesourcery.com>
Date:   Fri Nov 21 22:05:41 2014 +0800

    Include wchar.h and wctype.h unconditionally
    
    As gnulib modules wchar and wctype is imported, we can include wchar.h
    and wctype.h unconditionally.  This patch is also to remove HAVE_WCHAR_H
    check.
    
    gdb:
    
    2014-11-21  Yao Qi  <yao@codesourcery.com>
    
    	* gdb_wchar.h: Include wchar.h and wctype.h.
    	[HAVE_ICONV && HAVE_BTOWC]: Don't check HAVE_WCHAR_T and don't
    	include wchar.h and wctype.h.
    	Don't check HAVE_WCHAR_H.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=f0c00af8b494001e2a49a2f9ee2df7f340f80f0d

commit f0c00af8b494001e2a49a2f9ee2df7f340f80f0d
Author: Yao Qi <yao@codesourcery.com>
Date:   Fri Nov 21 22:05:41 2014 +0800

    Import wchar and wctype-h explicitly
    
    gnulib module wchar and wctype-h was imported as a dependency, but
    they are used by gdb_wchar.h too.  This patch is to import them
    explicitly.
    
    gdb:
    
    	* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add wchar
    	and wctype-h.
    	* gnulib/import/Makefile.am: Re-generated.
    	* gnulib/import/Makefile.in: Likewise.
    	* gnulib/import/m4/gnulib-cache.m4: Likewise.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=0cae13bb02b69af6713fc0133eb705ca0ea8b084

commit 0cae13bb02b69af6713fc0133eb705ca0ea8b084
Author: Yao Qi <yao@codesourcery.com>
Date:   Fri Nov 21 22:05:41 2014 +0800

    Import memchr explicitly
    
    memchr has been used in gdb source and gnulib memchr module was
    imported as a dependency.  This patch is to import it explicitly.
    
    gdb:
    
    	* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
    	memchr.
    	* gnulib/import/Makefile.am: Re-generated.
    	* gnulib/import/Makefile.in: Likewise.
    	* gnulib/import/m4/gnulib-cache.m4: Likewise.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=9c232dda88ade649e92be7a6c9917e0a80ea54c8

commit 9c232dda88ade649e92be7a6c9917e0a80ea54c8
Author: Yao Qi <yao@codesourcery.com>
Date:   Fri Nov 21 22:05:41 2014 +0800

    Include alloca.h unconditionally
    
    Since gnulib alloca module was imported, we can include alloca.h in
    both gdb and gdbserver unconditionally, so this patch adds inclusion
    of alloca.h in common-defs.h.  This patch also removes AC_FUNC_ALLOCA
    in configure.ac because we don't need to check alloca any more.
    
    This patch below is removed in fact.
    
      [RFA/commit] include alloca.h if available.
      https://www.sourceware.org/ml/gdb-patches/2010-08/msg00566.html
    
    Since alloca.h is from gnulib now, we don't have to check malloc.h in
    configure and include malloc.h in code.  This patch also remove them
    too.
    
    gdb:
    
    2014-11-21  Yao Qi  <yao@codesourcery.com>
    
    	* common/common-defs.h: Include alloca.h
    	* configure.ac: Don't invoke AC_FUNC_ALLOCA.
    	* configure: Re-generated.
    	* defs.h: Remove code handling alloca.
    	* utils.c (gdb_realpath): Don't check HAVE_ALLOCA is defined
    	or not.
    
    gdb/gdbserver:
    
    2014-11-21  Yao Qi  <yao@codesourcery.com>
    
    	* configure.ac: Don't invoke AC_FUNC_ALLOCA.
    	(AC_CHECK_HEADERS): Remove malloc.h.
    	* configure: Re-generated.
    	* config.in: Re-generated.
    	* server.h: Don't include alloca.h and malloc.h.
    	* gdbreplay.c: Don't check HAVE_ALLOCA_H is defined.
    	Don't include malloc.h.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=00d7f58fd4e59c9ffe375f3a6edbe918fd7b5645

commit 00d7f58fd4e59c9ffe375f3a6edbe918fd7b5645
Author: Yao Qi <yao@codesourcery.com>
Date:   Fri Nov 21 22:05:41 2014 +0800

    Import alloca explicitly
    
    gnulib's alloca module was imported to gdb, and alloca is used.  This
    patch is to explicitly import it.
    
    gdb:
    
    	* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULE): Add
    	alloca.
    	* gnulib/import/Makefile.am: Re-generated.
    	* gnulib/import/Makefile.in: Likewise..
    	* gnulib/import/m4/gnulib-cache.m4: Likewise.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=6068ad5d49cb80f5f2934bc100fffdc856e7e9be

commit 6068ad5d49cb80f5f2934bc100fffdc856e7e9be
Author: Yao Qi <yao@codesourcery.com>
Date:   Fri Nov 21 22:05:41 2014 +0800

    Make IMPORTED_GNULIB_MODULES in alphabetical order
    
    Since we'll add more modules in this list, better to keep them in
    alphabetical order.
    
    gdb:
    
    	* gnulib/update-gnulib.sh: Make IMPORTED_GNULIB_MODULES in
    	alphabetical order.

-----------------------------------------------------------------------

Summary of changes:
 gdb/ChangeLog                        |   53 +++++++++
 gdb/common/common-defs.h             |    1 +
 gdb/configure                        |  190 ---------------------------------
 gdb/configure.ac                     |    1 -
 gdb/defs.h                           |   21 ----
 gdb/gdb_wchar.h                      |   10 +-
 gdb/gdbserver/ChangeLog              |   10 ++
 gdb/gdbserver/config.in              |    3 -
 gdb/gdbserver/configure              |  195 +---------------------------------
 gdb/gdbserver/configure.ac           |    4 +-
 gdb/gdbserver/gdbreplay.c            |    7 +-
 gdb/gdbserver/server.h               |    9 --
 gdb/gnulib/import/Makefile.am        |    2 +-
 gdb/gnulib/import/Makefile.in        |    2 +-
 gdb/gnulib/import/m4/gnulib-cache.m4 |    7 +-
 gdb/gnulib/update-gnulib.sh          |   11 ++-
 gdb/utils.c                          |    2 +-
 17 files changed, 91 insertions(+), 437 deletions(-)


hooks/post-receive
-- 
gdb and binutils


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]