mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r8886] Purpose:
bug fix. Description: The previous patch of -D__GNUC__ was causing failure in the newer compiler. The previous failure could not be repeated any more. So, removed it. Platforms tested: Tested only in TG-NCSA since the change affects only the ia64 platform. Misc. update:
This commit is contained in:
parent
dd4163f3ab
commit
1be75d8fe0
@ -16,34 +16,34 @@ fi
|
||||
# `--enable-debug' switch of configure. For ecc 7.1, because of the
|
||||
# overlapping definitions of int64_t(starting from int8_t) in sys/types.h
|
||||
# and stdint.h, we added -D__GNUC__ to CFLAGS.
|
||||
# This problem is no longer true and the -D_GNUC__ actually caused failure.
|
||||
# So it is removed.
|
||||
|
||||
case $CC_BASENAME in
|
||||
ecc)
|
||||
CFLAGS="$CFLAGS -std=c99 -w2 -Wall -D__GNUC__"
|
||||
ecc)
|
||||
# Default to C99 standard.
|
||||
CFLAGS="${CFLAGS:--std=c99}"
|
||||
DEBUG_CFLAGS="-w2 -Wall -g -O0"
|
||||
DEBUG_CPPFLAGS=
|
||||
PROD_CFLAGS="" # ecc has -O2 as default
|
||||
PROD_CPPFLAGS=
|
||||
PROFILE_CFLAGS="-p"
|
||||
PROFILE_CPPFLAGS=
|
||||
;;
|
||||
|
||||
DEBUG_CFLAGS="-g -O0"
|
||||
DEBUG_CPPFLAGS=
|
||||
gcc)
|
||||
. $srcdir/config/gnu-flags
|
||||
;;
|
||||
|
||||
PROD_CFLAGS=""
|
||||
PROD_CFLAGS="" # ecc has -O2 as default
|
||||
PROD_CPPFLAGS=
|
||||
PROFILE_CFLAGS="-p"
|
||||
PROFILE_CPPFLAGS=
|
||||
;;
|
||||
|
||||
gcc)
|
||||
. $srcdir/config/gnu-flags
|
||||
;;
|
||||
|
||||
*)
|
||||
CFLAGS="$CFLAGS -ansi"
|
||||
DEBUG_CFLAGS="-g"
|
||||
DEBUG_CPPFLAGS=
|
||||
PROD_CFLAGS="-O"
|
||||
PROD_CPPFLAGS=
|
||||
PROFILE_CFLAGS="-pg"
|
||||
PROFILE_CPPFLAGS=
|
||||
;;
|
||||
*)
|
||||
CFLAGS="$CFLAGS -ansi"
|
||||
DEBUG_CFLAGS="-g"
|
||||
DEBUG_CPPFLAGS=
|
||||
PROD_CFLAGS="-O"
|
||||
PROD_CPPFLAGS=
|
||||
PROFILE_CFLAGS="-pg"
|
||||
PROFILE_CPPFLAGS=
|
||||
;;
|
||||
esac
|
||||
|
||||
# The default Fortran 90 compiler
|
||||
|
Loading…
x
Reference in New Issue
Block a user