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. e1d2394b50c7b174f48e38efb398034d75e67c99


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  e1d2394b50c7b174f48e38efb398034d75e67c99 (commit)
      from  eea6dad2b3ae91189caa91145dd133bae0398d21 (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=e1d2394b50c7b174f48e38efb398034d75e67c99

commit e1d2394b50c7b174f48e38efb398034d75e67c99
Author: Marcus Shawcroft <marcus.shawcroft@arm.com>
Date:   Fri Jun 20 11:48:15 2014 +0100

    Fix gdbserver cross build.
    
    The recent libiberty patch caused issues when cross building
    gdbserver.  The Makefile ends invoking the build machine's "ar"
    instead of the --host version:
    
      ar  ./libiberty.a \
    	    ./regex.o (...)
    
      ar: illegal option -- .
      Usage: ar [emulation options] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...
    	 ar -M [<mri-script]
    
    The libiberty configure script does probe for and finds an appropriate
    AR.  However, gdbserver's configure does not probe for AR and
    overrides the AR used in the libiberty build by explicitly passing AR
    to the sub-builds.
    
    gdb/gdbserver/
    2014-06-20  Marcus Shawcroft  <marcus.shawcroft@arm.com>
    
    	* configure.ac: Invoke. AC_CHECK_TOOL(AR, ar).
    	* Makefile.in (AR, AR_FLAGS): Define.
    	* configure: Regenerate.

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

Summary of changes:
 gdb/gdbserver/ChangeLog    |    6 +++
 gdb/gdbserver/Makefile.in  |    2 +
 gdb/gdbserver/configure    |   93 ++++++++++++++++++++++++++++++++++++++++++++
 gdb/gdbserver/configure.ac |    1 +
 4 files changed, 102 insertions(+), 0 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]