clang: Pair -Qn with -Qunused-arguments.
When assembling module wirh clang -Qn ends up on command line but later ignored To avoid it breaking the compile, add -Qunused-arguments. Signed-off-by: Vladimir Serbinenko <phcoder@google.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
63d568ed2e
commit
4dace5f60e
1 changed files with 2 additions and 2 deletions
|
@ -1228,12 +1228,12 @@ if test "x$target_cpu" = xarm; then
|
|||
fi
|
||||
|
||||
AC_CACHE_CHECK([whether option -Qn works], grub_cv_target_cc_qn, [
|
||||
CFLAGS="$TARGET_CFLAGS -Qn -Werror"
|
||||
CFLAGS="$TARGET_CFLAGS -Qn -Qunused-arguments -Werror"
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
|
||||
[grub_cv_target_cc_qn=yes],
|
||||
[grub_cv_target_cc_qn=no])])
|
||||
if test "x$grub_cv_target_cc_qn" = xyes; then
|
||||
TARGET_CFLAGS="$TARGET_CFLAGS -Qn"
|
||||
TARGET_CFLAGS="$TARGET_CFLAGS -Qn -Qunused-arguments"
|
||||
fi
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue