selftests/futex: pass _GNU_SOURCE without a value to the compiler
authorJohn Hubbard <jhubbard@nvidia.com>
Wed, 29 May 2024 02:29:38 +0000 (19:29 -0700)
committerShuah Khan <skhan@linuxfoundation.org>
Thu, 30 May 2024 19:10:51 +0000 (13:10 -0600)
commitcb708ab9f584f159798b60853edcf0c8b67ce295
treebcae11a07a228c46a597861e1442a325c9fc16b7
parente8b8c5264d4ebd248f60a5cef077fe615806e7a0
selftests/futex: pass _GNU_SOURCE without a value to the compiler

It's slightly better to set _GNU_SOURCE in the source code, but if one
must do it via the compiler invocation, then the best way to do so is
this:

    $(CC) -D_GNU_SOURCE=

...because otherwise, if this form is used:

    $(CC) -D_GNU_SOURCE

...then that leads the compiler to set a value, as if you had passed in:

    $(CC) -D_GNU_SOURCE=1

That, in turn, leads to warnings under both gcc and clang, like this:

    futex_requeue_pi.c:20: warning: "_GNU_SOURCE" redefined

Fix this by using the "-D_GNU_SOURCE=" form.

Reviewed-by: Edward Liaw <edliaw@google.com>
Reviewed-by: Davidlohr Bueso <dave@stgolabs.net>
Signed-off-by: John Hubbard <jhubbard@nvidia.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/futex/functional/Makefile