bfd/
2011-03-31 Tristan Gingold <gingold@adacore.com> * vms-alpha.c (vms_get_remaining_object_record): Fix dec-c warning. (_bfd_vms_write_etir): Ditto. (_bfd_vms_slurp_etir): Avoid to use intptr_t * configure.com: Generate bfd_stdint.h binutils/ 2011-03-31 Tristan Gingold <gingold@adacore.com> * makefile.vms (DEBUG_OBJS): Add elfcomm.obj. libiberty/ 2011-03-31 Tristan Gingold <gingold@adacore.com> * makefile.vms (OBJS): Add filename_cmp.obj
This commit is contained in:
parent
ac14530735
commit
083faca904
7 changed files with 28 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
2011-03-31 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* vms-alpha.c (vms_get_remaining_object_record): Fix dec-c warning.
|
||||
(_bfd_vms_write_etir): Ditto.
|
||||
(_bfd_vms_slurp_etir): Avoid to use intptr_t
|
||||
* configure.com: Generate bfd_stdint.h
|
||||
|
||||
2011-03-31 Bernd Schmidt <bernds@codesourcery.com>
|
||||
|
||||
* elf32-tic6x.h (struct elf32_tic6x_params): New.
|
||||
|
|
|
@ -257,6 +257,13 @@ $DECK
|
|||
$ EOD
|
||||
$!
|
||||
$!
|
||||
$! create bfd_stdint.h
|
||||
$!
|
||||
$ write sys$output "Generate `bfd_stdint.h'"
|
||||
$ create []bfd_stdint.h
|
||||
#include <inttypes.h>
|
||||
$!
|
||||
$!
|
||||
$! create targmatch.h
|
||||
$!
|
||||
$ write sys$output "Generate `targmatch.h'"
|
||||
|
|
|
@ -801,7 +801,7 @@ vms_get_remaining_object_record (bfd *abfd, int read_so_far)
|
|||
/* Extract record size. */
|
||||
PRIV (recrd.rec_size) = bfd_getl16 (PRIV (recrd.rec) + 2);
|
||||
|
||||
if (PRIV (recrd.rec_size) <= 0)
|
||||
if (PRIV (recrd.rec_size) == 0)
|
||||
{
|
||||
bfd_set_error (bfd_error_file_truncated);
|
||||
return 0;
|
||||
|
@ -1709,7 +1709,7 @@ _bfd_vms_slurp_etir (bfd *abfd, struct bfd_link_info *info)
|
|||
#if VMS_DEBUG
|
||||
_bfd_vms_debug (4, "etir: %s(%d)\n",
|
||||
_bfd_vms_etir_name (cmd), cmd);
|
||||
_bfd_hexdump (8, ptr, cmd_length - 4, (intptr_t) ptr);
|
||||
_bfd_hexdump (8, ptr, cmd_length - 4, 0);
|
||||
#endif
|
||||
|
||||
switch (cmd)
|
||||
|
@ -3752,7 +3752,7 @@ _bfd_vms_write_etir (bfd * abfd, int objtype ATTRIBUTE_UNUSED)
|
|||
int pass2_in_progress = 0;
|
||||
unsigned int irel;
|
||||
|
||||
if (section->reloc_count <= 0)
|
||||
if (section->reloc_count == 0)
|
||||
(*_bfd_error_handler)
|
||||
(_("SEC_RELOC with no relocs in section %s"), section->name);
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2011-03-31 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* makefile.vms (DEBUG_OBJS): Add elfcomm.obj.
|
||||
|
||||
2011-03-31 Bernd Schmidt <bernds@codesourcery.com>
|
||||
|
||||
* readelf.c (get_symbol_index_type): Handle SCOM for TIC6X.
|
||||
|
|
|
@ -27,7 +27,8 @@ LIBIBERTY = [-.libiberty]libiberty.olb/lib
|
|||
OPCODES_DEP = [-.opcodes]libopcodes.olb
|
||||
OPCODES = [-.opcodes]libopcodes.olb/lib
|
||||
|
||||
DEBUG_OBJS = rddbg.obj,debug.obj,stabs.obj,ieee.obj,rdcoff.obj,dwarf.obj
|
||||
DEBUG_OBJS = rddbg.obj,debug.obj,stabs.obj,ieee.obj,rdcoff.obj,dwarf.obj,\
|
||||
elfcomm.obj
|
||||
|
||||
BULIBS = bucomm.obj,version.obj,filemode.obj
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2011-03-31 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* makefile.vms (OBJS): Add filename_cmp.obj
|
||||
|
||||
2011-02-28 Kai Tietz <kai.tietz@onevision.com>
|
||||
|
||||
* filename_cmp.c (filename_ncmp): New function.
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
OBJS=getopt.obj,obstack.obj,xexit.obj,xmalloc.obj,hex.obj,\
|
||||
getopt1.obj,cplus-dem.obj,cp-demangle.obj,cp-demint.obj,\
|
||||
asprintf.obj vasprintf.obj,mkstemps.obj,\
|
||||
asprintf.obj vasprintf.obj,mkstemps.obj,filename_cmp.obj,\
|
||||
concat.obj,getruntime.obj,getpagesize.obj,getpwd.obj,xstrerror.obj,\
|
||||
xmemdup.obj,xstrdup.obj,xatexit.obj,choose-temp.obj,fnmatch.obj,\
|
||||
objalloc.obj,safe-ctype.obj,hashtab.obj,lbasename.obj,argv.obj,\
|
||||
|
|
Loading…
Add table
Reference in a new issue