diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-09-10 20:36:08 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-09-10 20:36:08 (GMT) |
commit | 95e0bd109f4c9c3d2cd5046c8eb43640845a98fe (patch) | |
tree | 51b504a999b8afce6cc897e1d2aae840c3b7bed6 /config | |
parent | 8e3464d2d015facff227ac7719a963a1523968ae (diff) | |
download | hdf5-95e0bd109f4c9c3d2cd5046c8eb43640845a98fe.zip hdf5-95e0bd109f4c9c3d2cd5046c8eb43640845a98fe.tar.gz hdf5-95e0bd109f4c9c3d2cd5046c8eb43640845a98fe.tar.bz2 |
[svn-r27752] Merge of r27751 from 1.8 branch
Added a comment to config/ibm-flags that describes the purpose of the
-qflag=w:w compiler flag.
Tested on: N/A (no access to AIX, comment only)
Diffstat (limited to 'config')
-rw-r--r-- | config/ibm-flags | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/ibm-flags b/config/ibm-flags index 89a6ae9..462372d 100644 --- a/config/ibm-flags +++ b/config/ibm-flags @@ -57,6 +57,9 @@ 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" + # -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= |