[svn-r7886] Purpose:

Update ecc compiler flags

Platforms tested:
    Titan
    Not relevant to other platforms, so no h5committest.
This commit is contained in:
Quincey Koziol 2003-11-25 16:24:21 -05:00
parent 8dbb0315c5
commit 04acddc331

View File

@ -17,16 +17,15 @@ fi
case $CC_BASENAME in
ecc)
# CFLAGS must be set else configure set it to -g
CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -std=c99 -w2 -Wall"
DEBUG_CFLAGS="-g"
DEBUG_CFLAGS="-g -O0"
DEBUG_CPPFLAGS=
# ecc has -O2 as default
PROD_CFLAGS=""
PROD_CFLAGS="" # ecc has -O2 as default
PROD_CPPFLAGS=
PROFILE_CFLAGS="" # ecc has no profile option
PROFILE_CFLAGS="-p"
PROFILE_CPPFLAGS=
;;