This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


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

Re: GNU C extension introduced in common code


   Date: Sun, 23 Jan 2000 15:20:03 -0600
   From: Robert Lipe <robertl@sco.com>

   The patch in:

	   http://sourceware.cygnus.com/ml/binutils/2000-01/msg00079.html

   makes use of a GNU C extension and therefore breaks compilation on other
   compilers.

   This might be OK if it's a conscious decision to do so, but there probably
   needs to be a better justification.

   Since we always link against libiberty, Replacing
		   char buff[bfd_coff_filhsz (abfd)];
   with
		   char *buff = alloca(bfd_coff_filhsz (abfd));
   is probably adequate if this really is desirable.

BFD should not use alloca.  That is because on a system which does not
provide native support for alloca, the C replacement routine will
crash if memory is not available.

This needs to be fixed to call bfd_malloc.

Ian

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