printf "%s\n" "${in_src}" > "${test_in}" || die "Failed to create '${test_in}'"
+ # Don't set -Werror as there are cases when benign
+ # always-on warnings filter out all flags like bug #712488.
+ # We'll have to live with potential '-Wunused-command-line-argument'.
+ # flags.
+ #
+ # We can add more selective detection of no-op flags via
+ # '-Werror=ignored-optimization-argument' and similar error options.
local cmdline=(
"${comp[@]}"
- # Clang will warn about unknown gcc flags but exit 0.
- # Need -Werror to force it to exit non-zero.
- -Werror
"$@"
# -x<lang> options need to go before first source file
"${cmdline_extra[@]}"
"${test_in}" -o "${test_out}"
)
- if ! "${cmdline[@]}" &>/dev/null; then
- # -Werror makes clang bail out on unused arguments as well;
- # try to add -Qunused-arguments to work-around that
- # other compilers don't support it but then, it's failure like
- # any other
- cmdline+=( -Qunused-arguments )
- "${cmdline[@]}" &>/dev/null
- fi
+ "${cmdline[@]}" &>/dev/null
}
# @FUNCTION: test-flag-CC
[[ $? -ne 0 && -z ${out} ]]
ftend
-tbegin "test-flags-CC (gcc-valid but clang-invalid flags)"
-out=$(CC=clang test-flags-CC -finline-limit=1200)
-[[ $? -ne 0 && -z ${out} ]]
-ftend
+### '-finline-limit=1200' is 'ignored' flag, not invalid.
+### We don't filter out ignored flags currently, bug #712488
+#tbegin "test-flags-CC (gcc-valid but clang-invalid flags)"
+#out=$(CC=clang test-flags-CC -finline-limit=1200)
+#[[ $? -ne 0 && -z ${out} ]]
+#ftend
tbegin "test-flags-CC (unused flags w/clang)"
out=$(CC=clang test-flags-CC -Wl,-O1)