[PATCH] Add --with-system-zlib in gdb

H.J. Lu hjl.tools@gmail.com
Tue Mar 31 14:56:00 GMT 2015


On Tue, Mar 31, 2015 at 7:01 AM, Pedro Alves <palves@redhat.com> wrote:
> On 03/31/2015 02:46 PM, H.J. Lu wrote:
>> --- a/gdb/acinclude.m4
>> +++ b/gdb/acinclude.m4
>> @@ -467,7 +467,11 @@ AC_DEFUN([GDB_AC_CHECK_BFD], [
>>    CFLAGS="-I${srcdir}/../include -I../bfd -I${srcdir}/../bfd $CFLAGS"
>>    LDFLAGS="-L../bfd -L../libiberty $LDFLAGS"
>>    intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'`
>> -  LIBS="-lbfd -liberty $intl $LIBS"
>> +  if test -f ../zlib/Makefile; then
>> +    LIBS="-lbfd -L../zlib -lz -liberty $intl $LIBS"
>> +  else
>> +    LIBS="-lbfd -lz -liberty $intl $LIBS"
>> +  fi
>
> Seems quite fragile to have to configure and generate the zlib
> Makefile first.  Why isn't this simply:
>
>    LDFLAGS="-L../bfd -L../libiberty $zlibdir $LDFLAGS"
>
> ?

It works.  Here is the updated patch for gdb.  OK for master?

Thanks.


-- 
H.J.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0002-Add-with-system-zlib-in-gdb.patch
Type: text/x-patch
Size: 9264 bytes
Desc: not available
URL: <http://sourceware.org/pipermail/gdb-patches/attachments/20150331/0d8eec3a/attachment.bin>


More information about the Gdb-patches mailing list