Change comments to remark on script not being needed for clang >= 5.1
This commit is contained in:
@@ -3,12 +3,16 @@
|
||||
# From kmcallister:
|
||||
# https://github.com/kmcallister/autoharden/blob/efaf5a16612589808c276a11536ea9a47071f74b/scripts/wrap-compiler-for-flag-check
|
||||
|
||||
# There is no way to make clang's "argument unused" warning fatal. So when
|
||||
# configure checks for supported flags, it runs $CC, $CXX, $LD via this
|
||||
# wrapper.
|
||||
# Prior to clang v5.1, there was no way to make
|
||||
# clang's "argument unused" warning fatal. This
|
||||
# wrapper script that greps for this warning message. Newer clang's have no issues.
|
||||
#
|
||||
# Ideally the search string would also include 'clang: ' but this output might
|
||||
# depend on clang's argv[0].
|
||||
#
|
||||
# This file is in the public domain.
|
||||
set -o errexit
|
||||
set -o nounset
|
||||
|
||||
if out=`"$@" 2>&1`; then
|
||||
echo "$out"
|
||||
|
Reference in New Issue
Block a user