diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2021-03-24 23:02:07 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2021-03-24 23:02:07 (GMT) |
commit | bdac2ecdbff2c389a222b3d93ff1eb1d23ec6b23 (patch) | |
tree | cdd7760978d1c76b264957e8856c982ab992d792 /config/clang-flags | |
parent | 2e3b24078e63ae944fc1d1e7ef10a70dfd2ebac6 (diff) | |
download | hdf5-bdac2ecdbff2c389a222b3d93ff1eb1d23ec6b23.zip hdf5-bdac2ecdbff2c389a222b3d93ff1eb1d23ec6b23.tar.gz hdf5-bdac2ecdbff2c389a222b3d93ff1eb1d23ec6b23.tar.bz2 |
Brings some Autotools improvements over from develop
* configure.ac tidying
* helpful XCode comments
* FreeBSD improvements
* Fixes for finding Java on MacOS
* The improved warnhist script
Diffstat (limited to 'config/clang-flags')
-rw-r--r-- | config/clang-flags | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/clang-flags b/config/clang-flags index b4f5e2e..a349f58 100644 --- a/config/clang-flags +++ b/config/clang-flags @@ -56,7 +56,10 @@ load_clang_arguments() # if test "X-" = "X-$cc_flags_set"; then # clang -v will return version number following "clang" on Linux machines, - # but on Macs the version number will follow "Apple LLVM version" + # but on Xcode the version number will follow "Apple LLVM version" + # Note that the Xcode reported LLVM version doesn't match the canonical + # LLVM version, so you'll need to do different version checks for + # Xcode. cc_version="`$CC $CFLAGS $H5_CFLAGS -v 2>&1 |\ grep 'clang version' | sed 's/.*clang version \([-a-z0-9\.]*\).*/\1/'`" if test -n "$cc_version"; then |