From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753710AbcGYSNY (ORCPT ); Mon, 25 Jul 2016 14:13:24 -0400 Received: from terminus.zytor.com ([198.137.202.10]:44846 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753446AbcGYSMz (ORCPT ); Mon, 25 Jul 2016 14:12:55 -0400 Date: Mon, 25 Jul 2016 11:12:21 -0700 From: tip-bot for Stephen Rothwell Message-ID: Cc: peterz@infradead.org, luto@kernel.org, acme@redhat.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, mingo@kernel.org, jpoimboe@redhat.com, hpa@zytor.com, sfr@canb.auug.org.au Reply-To: sfr@canb.auug.org.au, hpa@zytor.com, jpoimboe@redhat.com, tglx@linutronix.de, linux-kernel@vger.kernel.org, mingo@kernel.org, peterz@infradead.org, acme@redhat.com, luto@kernel.org In-Reply-To: <20160723150845.3af8e452@canb.auug.org.au> References: <20160723150845.3af8e452@canb.auug.org.au> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] x86: Make the vdso2c compiler use the host architecture headers Git-Commit-ID: d51306f1a3bc0e3a7b86d8f2b2dedf34b356d3dd X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: d51306f1a3bc0e3a7b86d8f2b2dedf34b356d3dd Gitweb: http://git.kernel.org/tip/d51306f1a3bc0e3a7b86d8f2b2dedf34b356d3dd Author: Stephen Rothwell AuthorDate: Sat, 23 Jul 2016 14:35:40 +1000 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 25 Jul 2016 10:02:21 -0300 x86: Make the vdso2c compiler use the host architecture headers To be clear: this is a ppc64le hosted, x86_64 target cross build. Signed-off-by: Stephen Rothwell Acked-by: Andy Lutomirski Cc: H. Peter Anvin Cc: Josh Poimboeuf Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/20160723150845.3af8e452@canb.auug.org.au Signed-off-by: Arnaldo Carvalho de Melo --- arch/x86/entry/vdso/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/entry/vdso/Makefile b/arch/x86/entry/vdso/Makefile index 253b72e..25e88c0 100644 --- a/arch/x86/entry/vdso/Makefile +++ b/arch/x86/entry/vdso/Makefile @@ -55,7 +55,7 @@ VDSO_LDFLAGS_vdso.lds = -m64 -Wl,-soname=linux-vdso.so.1 \ $(obj)/vdso64.so.dbg: $(src)/vdso.lds $(vobjs) FORCE $(call if_changed,vdso) -HOST_EXTRACFLAGS += -I$(srctree)/tools/include -I$(srctree)/include/uapi -I$(srctree)/arch/x86/include/uapi +HOST_EXTRACFLAGS += -I$(srctree)/tools/include -I$(srctree)/include/uapi -I$(srctree)/arch/$(SUBARCH)/include/uapi hostprogs-y += vdso2c quiet_cmd_vdso2c = VDSO2C $@