summaryrefslogtreecommitdiffstats
path: root/config/ibm-flags
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-09-11 14:08:04 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-09-11 14:08:04 (GMT)
commit122bf84bb3623df66306da08275c4cb65e15475e (patch)
tree5436fac979c46632f66509ab876d9401c40a231d /config/ibm-flags
parentf3da95644105e1a70f7b5246128ff542585695e5 (diff)
parent1ac1dfb40fc603fdb5448a64eb46786f7c621185 (diff)
downloadhdf5-122bf84bb3623df66306da08275c4cb65e15475e.zip
hdf5-122bf84bb3623df66306da08275c4cb65e15475e.tar.gz
hdf5-122bf84bb3623df66306da08275c4cb65e15475e.tar.bz2
[svn-r27760] Brought r27631-27755 over from the trunk.
tested on: jam
Diffstat (limited to 'config/ibm-flags')
-rw-r--r--config/ibm-flags5
1 files changed, 4 insertions, 1 deletions
diff --git a/config/ibm-flags b/config/ibm-flags
index a1dfa2a..462372d 100644
--- a/config/ibm-flags
+++ b/config/ibm-flags
@@ -57,7 +57,10 @@ if test "XL" = "$cc_vendor"; then
enable_shared="${enable_shared:-no}"
# Make sure this is applied to other API compile options such as C++.
AM_CFLAGS="$AM_CFLAGS"
- H5_CFLAGS="-qlanglvl=stdc99 $H5_CFLAGS"
+ # -qflag=w:w makes the lowest level of reported compile issues to be "warning"
+ # instead of "information". This suppresses a very large number of messages
+ # concerning the portability of __inline__.
+ H5_CFLAGS="-qlanglvl=stdc99 -qflag=w:w $H5_CFLAGS"
DEBUG_CFLAGS="-g -qfullpath"
DEBUG_CPPFLAGS=
# -O causes test/dtypes to fail badly. Turn it off for now.