Make-lang.in (fortran-warn): Remove -Wno-error.

* Make-lang.in (fortran-warn): Remove -Wno-error.
	(expr.o-warn, resolve.o-warn, simplify.o-warn,
	trans-common.o-warn): Specify -Wno-error.

From-SVN: r96714
This commit is contained in:
Kaveh R. Ghazi 2005-03-19 01:48:22 +00:00 committed by Kaveh Ghazi
parent 14755fb0c2
commit ffee7efdad
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-03-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Make-lang.in (fortran-warn): Remove -Wno-error.
(expr.o-warn, resolve.o-warn, simplify.o-warn,
trans-common.o-warn): Specify -Wno-error.
2005-03-17 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
* trans-array.c (gfc_trans_static_array_pointer,

View File

@ -49,7 +49,14 @@ GFORTRAN_CROSS_NAME := $(shell echo gfortran|sed '$(program_transform_cross_name
#^L
# Use strict warnings for this front end.
fortran-warn = $(STRICT_WARN) -Wno-error
fortran-warn = $(STRICT_WARN)
# These files get warnings from an inline function in GMP saying:
# "control may reach end of non-void function '__gmpz_get_ui' being inlined"
fortran/expr.o-warn = -Wno-error
fortran/resolve.o-warn = -Wno-error
fortran/simplify.o-warn = -Wno-error
fortran/trans-common.o-warn = -Wno-error
# These are the groups of object files we have. The F95_PARSER_OBJS are
# all the front end files, the F95_OBJS are the files for the translation