summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/ia64-linux-gnu6
1 files changed, 4 insertions, 2 deletions
diff --git a/config/ia64-linux-gnu b/config/ia64-linux-gnu
index 211f330..3b89501 100644
--- a/config/ia64-linux-gnu
+++ b/config/ia64-linux-gnu
@@ -15,11 +15,13 @@ fi
# flags like `-DH5G_DEBUG' since these are added with the
# `--enable-debug' switch of configure. After titan's ecc was updated to 7.1,
# int64_t couldn't be found because of overlapping definitions in stdint.h
-# and sys/types.h. So added -D__GNUC__ to CFLAGS.
+# and sys/types.h. So added -D__GNUC__ to CFLAGS. (This problem is no longer
+# there since the C library has been updated. So -D__GNUC__ has been taken
+# out.)
case $CC_BASENAME in
ecc)
- CFLAGS="$CFLAGS -std=c99 -w2 -Wall -D__GNUC__"
+ CFLAGS="$CFLAGS -std=c99 -w2 -Wall"
DEBUG_CFLAGS="-g -O0"
DEBUG_CPPFLAGS=
PROD_CFLAGS="" # ecc has -O2 as default