diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-17 15:54:15 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-17 15:54:15 (GMT) |
commit | 946c606452ec59397675b7b807b3280258e39726 (patch) | |
tree | 0d3b9a797896770b6efa0d96f3a099d8a175f891 /config | |
parent | fb4be743d3b3fdc3fa77b879e59f966a120568b7 (diff) | |
download | hdf5-946c606452ec59397675b7b807b3280258e39726.zip hdf5-946c606452ec59397675b7b807b3280258e39726.tar.gz hdf5-946c606452ec59397675b7b807b3280258e39726.tar.bz2 |
[svn-r6411] Purpose:
Code cleanup
Description:
Clean up miscellaneous warnings which have crept into the code.
Fix "_POSIX_C_SOURCE not defined" warning on FreeBSD.
Adjust gcc compiler flags to be more concise for production mode.
Refactor the H5O code so that there is a stronger boundary between code
in the H5O package and code in the library which just calls H5O routines.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
FreeBSD 4.7 (sleipnir) serial & parallel and gcc 2.95.4 & gcc 3.2.2
Misc. update:
Update MANIFEST if you add or remove any file.
Diffstat (limited to 'config')
-rw-r--r-- | config/freebsd | 4 | ||||
-rw-r--r-- | config/gnu-flags | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/config/freebsd b/config/freebsd index 0b91659..f35aa5b 100644 --- a/config/freebsd +++ b/config/freebsd @@ -14,6 +14,10 @@ fi # Architecture-specific flags ARCH= +# Add "_POSIX_C_SOURCE" define to cpp flags, to quiet warnings +# from /usr/include/sys/cdefs.h +CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=1" + # Omit frame pointer for optimized code? NOFP=${NOFP:=-fomit-frame-pointer} diff --git a/config/gnu-flags b/config/gnu-flags index ebdb0c5..b5e9a48 100644 --- a/config/gnu-flags +++ b/config/gnu-flags @@ -131,7 +131,7 @@ case "$cc_vendor-$cc_version" in CFLAGS="$CFLAGS $ARCH -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline" # Production - PROD_CFLAGS="-O2 $NOFP -finline-functions" + PROD_CFLAGS="-O3 $NOFP" PROD_CPPFLAGS= # Debug |