[svn-r28990] Removed spurious BIND() warnings from Fortran.

Tested on: 64-bit Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1
           serial autotools w/ Fortran
This commit is contained in:
Dana Robinson 2016-01-27 14:12:38 -05:00
parent 5c276d9dfc
commit 7abd70b809

View File

@ -78,6 +78,10 @@ if test "X-gfortran" = "X-$f9x_vendor"; then
FSEARCH_DIRS=""
H5_FCFLAGS="$H5_FCFLAGS -pedantic -Wall -Wconversion -Wunderflow -Wimplicit-interface -W"
# Turn off warnings for passing non-ANSI types to BIND().
# We pass a lot of hid_t, etc. types so this generates a LOT of spurious warnings.
H5_FCFLAGS="$H5_FCFLAGS -Wno-c-binding-type"
# Production
PROD_FCFLAGS="-O2 -s"