Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753273AbcCRQZw (ORCPT ); Fri, 18 Mar 2016 12:25:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51306 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750888AbcCRQZu (ORCPT ); Fri, 18 Mar 2016 12:25:50 -0400 Date: Fri, 18 Mar 2016 13:25:47 -0300 From: Arnaldo Carvalho de Melo To: Lucas Stach Cc: Jiri Olsa , linux-kernel@vger.kernel.org, kernel@pengutronix.de, patchwork-lst@pengutronix.de, Josh Poimboeuf Subject: Re: [PATCH] tools lib api: respect CROSS_COMPILE for the linker Message-ID: <20160318162547.GA2701@redhat.com> References: <1458235670-27341-1-git-send-email-l.stach@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1458235670-27341-1-git-send-email-l.stach@pengutronix.de> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.5.20 (2009-12-10) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 820 Lines: 30 Em Thu, Mar 17, 2016 at 06:27:50PM +0100, Lucas Stach escreveu: > This fixes cross compilation of libapi. Humm, I guess that tools/lib/subcmd/Makefile has the same problem? And there are also other cases where LD is not being set with CROSS_COMPILE, Jiri, is there something else at play here? /me needs to cross compile all this code... - Arnaldo > Signed-off-by: Lucas Stach > --- > tools/lib/api/Makefile | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tools/lib/api/Makefile b/tools/lib/api/Makefile > index d85904dc9b38..9383bb866664 100644 > --- a/tools/lib/api/Makefile > +++ b/tools/lib/api/Makefile > @@ -10,6 +10,7 @@ endif > > CC = $(CROSS_COMPILE)gcc > AR = $(CROSS_COMPILE)ar > +LD = $(CROSS_COMPILE)ld > > MAKEFLAGS += --no-print-directory > > -- > 2.7.0