Commit ffee7efd by Kaveh R. Ghazi Committed by Kaveh Ghazi

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
parent 14755fb0
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> 2005-03-17 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
* trans-array.c (gfc_trans_static_array_pointer, * trans-array.c (gfc_trans_static_array_pointer,
......
...@@ -49,7 +49,14 @@ GFORTRAN_CROSS_NAME := $(shell echo gfortran|sed '$(program_transform_cross_name ...@@ -49,7 +49,14 @@ GFORTRAN_CROSS_NAME := $(shell echo gfortran|sed '$(program_transform_cross_name
#^L #^L
# Use strict warnings for this front end. # 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 # 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 # all the front end files, the F95_OBJS are the files for the translation
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment