diff mbox

configure: fix double check tests with Clang

Message ID CAAu8pHtN=dzwAE8v2EM01OT+cKSQ3DNfSmMt2ep-Mzx1_85DTA@mail.gmail.com
State New
Headers show

Commit Message

Blue Swirl Aug. 9, 2012, 8:31 p.m. UTC
Configuring with Clang compiler with -Werror would not work after
improved checks:
/tmp/qemu-conf--25992-.c:4:32: error: self-comparison always evaluates
to true [-Werror,-Wtautological-compare]
int main(void) { return preadv == preadv; }
/tmp/qemu-conf--25992-.c:13:26: error: self-comparison always
evaluates to true [-Werror,-Wtautological-compare]
    return epoll_create1 == epoll_create1;
/tmp/qemu-conf--25992-.c:3:13: error: explicitly assigning a variable
of type 'char **' to itself [-Werror,-Wself-assign]
    environ = environ;

Avoid the errors by adjusting the tests.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
---
 configure |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

--
1.7.2.5

Comments

Peter Maydell Aug. 9, 2012, 8:43 p.m. UTC | #1
On 9 August 2012 21:31, Blue Swirl <blauwirbel@gmail.com> wrote:
> Configuring with Clang compiler with -Werror would not work after
> improved checks:
> /tmp/qemu-conf--25992-.c:4:32: error: self-comparison always evaluates
> to true [-Werror,-Wtautological-compare]
> int main(void) { return preadv == preadv; }
> /tmp/qemu-conf--25992-.c:13:26: error: self-comparison always
> evaluates to true [-Werror,-Wtautological-compare]
>     return epoll_create1 == epoll_create1;
> /tmp/qemu-conf--25992-.c:3:13: error: explicitly assigning a variable
> of type 'char **' to itself [-Werror,-Wself-assign]
>     environ = environ;
>
> Avoid the errors by adjusting the tests.
>
> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
> ---
>  configure |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/configure b/configure
> index d8ec050..c2955f8 100755
> --- a/configure
> +++ b/configure
> @@ -2255,7 +2255,7 @@ cat > $TMPC <<EOF
>  #include <sys/types.h>
>  #include <sys/uio.h>
>  #include <unistd.h>
> -int main(void) { return preadv == preadv; }
> +int main(void) { return preadv(0, (void *)0, 0, 0); }

This shouldn't need the cast, should it?

>  EOF
>  preadv=no
>  if compile_prog "" "" ; then
> @@ -2551,7 +2551,7 @@ int main(void)
>       * warning but not an error, and will proceed to fail the
>       * qemu compile where we compile with -Werror.)
>       */
> -    return epoll_create1 == epoll_create1;
> +    return (int)(uintptr_t)&epoll_create1;
>  }
>  EOF
>  if compile_prog "" "" ; then
> @@ -2944,7 +2944,7 @@ has_environ=no
>  cat > $TMPC << EOF
>  #include <unistd.h>
>  int main(void) {
> -    environ = environ;
> +    environ = (void *)0;

...and nor should this.

>      return 0;
>  }
>  EOF
> --
> 1.7.2.5
>


-- PMM
diff mbox

Patch

diff --git a/configure b/configure
index d8ec050..c2955f8 100755
--- a/configure
+++ b/configure
@@ -2255,7 +2255,7 @@  cat > $TMPC <<EOF
 #include <sys/types.h>
 #include <sys/uio.h>
 #include <unistd.h>
-int main(void) { return preadv == preadv; }
+int main(void) { return preadv(0, (void *)0, 0, 0); }
 EOF
 preadv=no
 if compile_prog "" "" ; then
@@ -2551,7 +2551,7 @@  int main(void)
      * warning but not an error, and will proceed to fail the
      * qemu compile where we compile with -Werror.)
      */
-    return epoll_create1 == epoll_create1;
+    return (int)(uintptr_t)&epoll_create1;
 }
 EOF
 if compile_prog "" "" ; then
@@ -2944,7 +2944,7 @@  has_environ=no
 cat > $TMPC << EOF
 #include <unistd.h>
 int main(void) {
-    environ = environ;
+    environ = (void *)0;
     return 0;
 }
 EOF