From: "Michael S. Tsirkin" <mst@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>
Cc: peter.maydell@linaro.org, jingqi.liu@intel.com,
jtomko@redhat.com, qemu-devel@nongnu.org,
Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [PATCH v2 1/2] Use -isystem for linux-headers dir
Date: Thu, 12 Mar 2020 02:29:07 -0400 [thread overview]
Message-ID: <20200312022902-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20200311232342.1614944-2-ehabkost@redhat.com>
On Wed, Mar 11, 2020 at 07:23:41PM -0400, Eduardo Habkost wrote:
> glibc and Linux-provided headers are known to generate macro
> redefinition warnings when used together. For example:
> <linux/mman.h> and <sys/mman.h> duplicate some macro definitions.
>
> We normally never see those warnings because GCC suppresses
> warnings generated by system headers. We carry our own copy of
> Linux header files, though, and this makes those warnings not be
> suppressed when glibc headers are included before Linux headers
> (e.g. if <sys/mman.h> is included before <linux/mman.h>).
>
> Use -isystem instead of -I for linux-headers. This makes the
> compiler treat our linux-headers directory the same way it treats
> system-provided Linux headers, and suppress warnings generated by
> them.
>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> Changes v1 -> v2:
> * Use -isystem for $PWD/linux-headers too
> Reported-by: "Michael S. Tsirkin" <mst@redhat.com>
> ---
> Makefile.target | 2 +-
> configure | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Makefile.target b/Makefile.target
> index 2d43dc586a..934a9f7431 100644
> --- a/Makefile.target
> +++ b/Makefile.target
> @@ -12,7 +12,7 @@ endif
>
> $(call set-vpath, $(SRC_PATH):$(BUILD_DIR))
> ifdef CONFIG_LINUX
> -QEMU_CFLAGS += -I../linux-headers
> +QEMU_CFLAGS += -isystem ../linux-headers
> endif
> QEMU_CFLAGS += -iquote .. -iquote $(SRC_PATH)/target/$(TARGET_BASE_ARCH) -DNEED_CPU_H
>
> diff --git a/configure b/configure
> index cbf864bff1..bf5bf70600 100755
> --- a/configure
> +++ b/configure
> @@ -899,7 +899,7 @@ Linux)
> linux="yes"
> linux_user="yes"
> kvm="yes"
> - QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers -I$PWD/linux-headers $QEMU_INCLUDES"
> + QEMU_INCLUDES="-isystem \$(SRC_PATH)/linux-headers -isystem $PWD/linux-headers $QEMU_INCLUDES"
> supported_os="yes"
> libudev="yes"
> ;;
> --
> 2.24.1
next prev parent reply other threads:[~2020-03-12 6:29 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-11 23:23 [PATCH v2 0/2] Fix MAP_SYNC support when host has older glibc version Eduardo Habkost
2020-03-11 23:23 ` [PATCH v2 1/2] Use -isystem for linux-headers dir Eduardo Habkost
2020-03-12 6:29 ` Michael S. Tsirkin [this message]
2020-03-12 10:17 ` Peter Maydell
2020-03-11 23:23 ` [PATCH v2 2/2] mmap-alloc: Include osdep.h before checking CONFIG_LINUX Eduardo Habkost
2020-03-12 6:30 ` Michael S. Tsirkin
2020-03-15 15:45 ` Eduardo Habkost
2020-03-15 21:15 ` Michael S. Tsirkin
2020-03-16 17:30 ` Eduardo Habkost
2020-03-16 18:08 ` Peter Maydell
2020-03-16 18:40 ` Eduardo Habkost
2020-03-16 19:08 ` Michael S. Tsirkin
2020-03-16 19:20 ` Peter Maydell
2020-03-16 21:41 ` Michael S. Tsirkin
2020-03-12 0:25 ` [PATCH v2 0/2] Fix MAP_SYNC support when host has older glibc version no-reply
2020-03-14 9:39 ` Paolo Bonzini
2020-03-15 15:46 ` Eduardo Habkost
2020-03-15 21:18 ` Michael S. Tsirkin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200312022902-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=ehabkost@redhat.com \
--cc=jingqi.liu@intel.com \
--cc=jtomko@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.