All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] configure: Add -Werror to avx2, avx512 tests
@ 2021-07-19 20:01 Richard Henderson
  2021-07-29  7:54 ` Paolo Bonzini
  0 siblings, 1 reply; 2+ messages in thread
From: Richard Henderson @ 2021-07-19 20:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini

When using clang, we get

ERROR: configure test passed without -Werror but failed with -Werror.
       This is probably a bug in the configure script. The failing command
       will be at the bottom of config.log.
       You can run configure with --disable-werror to bypass this check.

What we really want from these two tests is whether the
entire code sequence is supported, including pragmas.
Adding -Werror makes the test properly fail for clang.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index 63f38fa94c..cf4616f635 100755
--- a/configure
+++ b/configure
@@ -3884,7 +3884,7 @@ static int bar(void *a) {
 }
 int main(int argc, char *argv[]) { return bar(argv[0]); }
 EOF
-  if compile_object "" ; then
+  if compile_object "-Werror" ; then
     avx2_opt="yes"
   else
     avx2_opt="no"
@@ -3914,7 +3914,7 @@ int main(int argc, char *argv[])
 	return bar(argv[0]);
 }
 EOF
-  if ! compile_object "" ; then
+  if ! compile_object "-Werror" ; then
     avx512f_opt="no"
   fi
 else
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] configure: Add -Werror to avx2, avx512 tests
  2021-07-19 20:01 [PATCH] configure: Add -Werror to avx2, avx512 tests Richard Henderson
@ 2021-07-29  7:54 ` Paolo Bonzini
  0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2021-07-29  7:54 UTC (permalink / raw)
  To: Richard Henderson, qemu-devel

On 19/07/21 22:01, Richard Henderson wrote:
> When using clang, we get
> 
> ERROR: configure test passed without -Werror but failed with -Werror.
>         This is probably a bug in the configure script. The failing command
>         will be at the bottom of config.log.
>         You can run configure with --disable-werror to bypass this check.
> 
> What we really want from these two tests is whether the
> entire code sequence is supported, including pragmas.
> Adding -Werror makes the test properly fail for clang.
> 
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>   configure | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/configure b/configure
> index 63f38fa94c..cf4616f635 100755
> --- a/configure
> +++ b/configure
> @@ -3884,7 +3884,7 @@ static int bar(void *a) {
>   }
>   int main(int argc, char *argv[]) { return bar(argv[0]); }
>   EOF
> -  if compile_object "" ; then
> +  if compile_object "-Werror" ; then
>       avx2_opt="yes"
>     else
>       avx2_opt="no"
> @@ -3914,7 +3914,7 @@ int main(int argc, char *argv[])
>   	return bar(argv[0]);
>   }
>   EOF
> -  if ! compile_object "" ; then
> +  if ! compile_object "-Werror" ; then
>       avx512f_opt="no"
>     fi
>   else
> 

Queued, thanks.

Paolo



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-07-29  7:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-19 20:01 [PATCH] configure: Add -Werror to avx2, avx512 tests Richard Henderson
2021-07-29  7:54 ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.