aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog7
-rw-r--r--bfd/configure.com7
-rw-r--r--bfd/vms-alpha.c6
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/makefile.vms3
-rw-r--r--libiberty/ChangeLog4
-rw-r--r--libiberty/makefile.vms2
7 files changed, 28 insertions, 5 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 49a97359..ab6fe9a 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -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.
diff --git a/bfd/configure.com b/bfd/configure.com
index 2102415..6e777a0 100644
--- a/bfd/configure.com
+++ b/bfd/configure.com
@@ -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'"
diff --git a/bfd/vms-alpha.c b/bfd/vms-alpha.c
index c0ba3c4..53d0f15 100644
--- a/bfd/vms-alpha.c
+++ b/bfd/vms-alpha.c
@@ -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);
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 0a22340..7646a9f 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -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.
diff --git a/binutils/makefile.vms b/binutils/makefile.vms
index 888e4fd..df779b7 100644
--- a/binutils/makefile.vms
+++ b/binutils/makefile.vms
@@ -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
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index dc92638..f6138b6 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -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.
diff --git a/libiberty/makefile.vms b/libiberty/makefile.vms
index d69d7d9..606adac 100644
--- a/libiberty/makefile.vms
+++ b/libiberty/makefile.vms
@@ -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,\