summaryrefslogtreecommitdiffstats
path: root/config/dec-flags
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-09-08 17:01:44 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-09-08 17:01:44 (GMT)
commit70d3e2cb5b1edfba60c908ce77e067690b0defa4 (patch)
treee4754c701fe34cf14c632709ed64ae04d189a0c9 /config/dec-flags
parent9b82f950052116b93389833c31da6fa4de4c725c (diff)
downloadhdf5-70d3e2cb5b1edfba60c908ce77e067690b0defa4.zip
hdf5-70d3e2cb5b1edfba60c908ce77e067690b0defa4.tar.gz
hdf5-70d3e2cb5b1edfba60c908ce77e067690b0defa4.tar.bz2
[svn-r9222] Purpose:
Improvement Description: Lots of warnings about long long type being a C99 feature. We want to use the long long type when available and want to move to C99 standard anyway. Changed the Version 6 compiler to use -c99 instead of the old -std1 (C89 only). Platforms tested: At LANL QSC machine.
Diffstat (limited to 'config/dec-flags')
-rw-r--r--config/dec-flags6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/dec-flags b/config/dec-flags
index e60ee8c..6368ee7 100644
--- a/config/dec-flags
+++ b/config/dec-flags
@@ -66,15 +66,15 @@ case "$cc_vendor-$cc_version" in
DEC-V6.*)
# Production
- PROD_CFLAGS="-std1 -verbose -warnprotos -ieee -misalign -O4 -fp_reorder -readonly_strings -inline speed"
+ PROD_CFLAGS="-c99 -verbose -warnprotos -ieee -misalign -O4 -fp_reorder -readonly_strings -inline speed"
PROD_CPPFLAGS="-D_INTRINSICS -D_INLINE_INTRINSICS"
# Debug
- DEBUG_CFLAGS="-g -std1 -verbose -warnprotos -ieee -misalign"
+ DEBUG_CFLAGS="-g -c99 -verbose -warnprotos -ieee -misalign"
DEBUG_CPPFLAGS=
# Profile
- PROFILE_CFLAGS="-pg -std1 -verbose -warnprotos -ieee -misalign"
+ PROFILE_CFLAGS="-pg -c99 -verbose -warnprotos -ieee -misalign"
PROFILE_CPPFLAGS=
# Flags are set