diff options
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/makefile.vms | 3 | ||||
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/makefile.vms | 3 |
4 files changed, 12 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 5b15e56..fe66f42 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2010-01-12 Tristan Gingold <gingold@adacore.com> + + * makefile.vms (CFLAGS): Turns warnings into informational messages. + 2010-01-11 Tristan Gingold <gingold@adacore.com> * mach-o.h: Add x86-64 relocation types. diff --git a/bfd/makefile.vms b/bfd/makefile.vms index 8369098..05c09f1 100644 --- a/bfd/makefile.vms +++ b/bfd/makefile.vms @@ -35,7 +35,8 @@ CFLAGS=/include=([],[-.include])$(DEFS) else OPT=/noopt/debug CFLAGS=/name=(as_is,shortened)/include=([],"../include")\ - /define=("unlink=remove",DEBUGDIR="""GNU$$DEBUGDIR:""",$(DEFS))$(OPT) + /define=("unlink=remove",DEBUGDIR="""GNU$$DEBUGDIR:""",$(DEFS))\ + /warns=(infor=missingreturn)$(OPT) endif libbfd.olb: $(OBJS) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 7ea8b3b..9483dab 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2010-01-12 Tristan Gingold <gingold@adacore.com> + + * makefile.vms (CFLAGS): Turns warnings into informational messages. + 2010-01-11 H.J. Lu <hongjiu.lu@intel.com> PR ld/11146 diff --git a/binutils/makefile.vms b/binutils/makefile.vms index d6f1857..888e4fd 100644 --- a/binutils/makefile.vms +++ b/binutils/makefile.vms @@ -16,7 +16,8 @@ DEFS= OPT=/noopt/debug CFLAGS=$(OPT)/include=([],"../include",[-.bfd])$(DEFS)\ /name=(as_is,shortened)\ - /prefix=(all,except=("getopt","optarg","optopt","optind","opterr")) + /prefix=(all,except=("getopt","optarg","optopt","optind","opterr"))\ + /warns=(info=(ptrmismatch,shiftcount)) endif LIBBFD = [-.bfd]libbfd.olb/lib |