From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQFXv-0003fj-0o for qemu-devel@nongnu.org; Mon, 01 Feb 2016 09:33:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aQFXu-0003wU-2E for qemu-devel@nongnu.org; Mon, 01 Feb 2016 09:33:38 -0500 Received: from mail-vk0-x232.google.com ([2607:f8b0:400c:c05::232]:33374) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQFXt-0003wN-Ju for qemu-devel@nongnu.org; Mon, 01 Feb 2016 09:33:38 -0500 Received: by mail-vk0-x232.google.com with SMTP id e64so78368358vkg.0 for ; Mon, 01 Feb 2016 06:33:37 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <145433633346.1640.13125784730104777466.stgit@localhost> References: <145433632525.1640.17641977349086897078.stgit@localhost> <145433633346.1640.13125784730104777466.stgit@localhost> From: Peter Maydell Date: Mon, 1 Feb 2016 14:33:17 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 1/2] build: [linux-user] Rename all "syscall.h" in target directories to "target_syscall.h" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Llu=C3=ADs_Vilanova?= Cc: "Edgar E. Iglesias" , Riku Voipio , QEMU Developers On 1 February 2016 at 14:18, Llu=C3=ADs Vilanova wrot= e: > This fixes double-definitions in linux-user builds when using the UST > tracing backend (which indirectly includes the system's "syscall.h"). > > Signed-off-by: Llu=C3=ADs Vilanova > --- > linux-user/aarch64/target_syscall.h | 5 +++++ > linux-user/alpha/target_syscall.h | 5 +++++ > linux-user/arm/target_syscall.h | 4 ++++ > linux-user/cris/target_syscall.h | 0 > linux-user/i386/target_syscall.h | 5 +++++ > linux-user/m68k/target_syscall.h | 4 ++++ > linux-user/mips/target_syscall.h | 4 ++++ > linux-user/mips64/target_syscall.h | 4 ++++ > linux-user/openrisc/target_syscall.h | 5 +++++ > linux-user/ppc/target_syscall.h | 5 +++++ > linux-user/qemu.h | 2 +- > linux-user/s390x/target_syscall.h | 5 +++++ > linux-user/sh4/target_syscall.h | 5 +++++ > linux-user/sparc/target_syscall.h | 5 +++++ > linux-user/sparc64/target_syscall.h | 5 +++++ > linux-user/unicore32/target_syscall.h | 0 > linux-user/x86_64/target_syscall.h | 5 +++++ > target-microblaze/target_syscall.h | 1 + > target-tilegx/target_syscall.h | 1 + > 19 files changed, 69 insertions(+), 1 deletion(-) > diff --git a/target-microblaze/target_syscall.h b/target-microblaze/targe= t_syscall.h > new file mode 100644 > index 0000000..27ba378 > --- /dev/null > +++ b/target-microblaze/target_syscall.h > @@ -0,0 +1 @@ > +#include > diff --git a/target-tilegx/target_syscall.h b/target-tilegx/target_syscal= l.h > new file mode 100644 > index 0000000..27ba378 > --- /dev/null > +++ b/target-tilegx/target_syscall.h > @@ -0,0 +1 @@ > +#include What are these new files for? thanks -- PMM