From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com
 [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id DF9F458F6
 for <dev@dpdk.org>; Mon, 31 Jul 2017 23:44:27 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 7474820BDB;
 Mon, 31 Jul 2017 17:44:27 -0400 (EDT)
Received: from frontend1 ([10.202.2.160])
 by compute1.internal (MEProxy); Mon, 31 Jul 2017 17:44:27 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=Oa8AccjEczxd6D7
 B+scn8PGxA15EVCeSrSVyJNIfEyw=; b=XnSWeMfaV+XXkoMSXkgZRKZKbASq/Zz
 kJlHnawWoxEj1A8TBO/6VZ4tghKTA8WeKVj6Wf0OQRrbpLiAJOUuxzXkxuDfKFg5
 pDw8cb5k8k5hzLDoms6UfWHXFHS88pmbGPlgNOfgBTarcaxl6IZf/yTMqamZBotF
 qLajIkdKMYjw=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=
 fm1; bh=Oa8AccjEczxd6D7B+scn8PGxA15EVCeSrSVyJNIfEyw=; b=XT+XeWCS
 TiyGRBUi7yLNsNyjldiK3tdj72GwddsVH7y0K1BHNIoCRszD6sncwvbvwwPDmUDF
 fNA3smTykczUQ6zlpSPUSgJgnS11Bdd5lx7OTHCZA2q0XyUsM9KYK8LCpNxoVbF6
 mUtLk2DG5MYoA6XQtIuAlQEqOybfGvitqRWphUkREgLu5SW3wdFmmoxKi7hODYuN
 5gY8dO/TTriPiVx05tmBAbi2Nyfz5bbaprLBPwkRnLkNN/SySKUeIclBaQ5+RTjh
 YGr1SGuZ8L/YVRYwpbyQmNTxLvz3kM3pjHesn7jfYdFJoVPK0BUZffwfX4oxN//5
 ubMM3Q6AK/ZSNw==
X-ME-Sender: <xms:u6R_WY7kiQzdbWK_rAS3B3jAiCMWubKGay0IrfHOFDLyYWX6doY9_g>
X-Sasl-enc: tqMz0yVGBieVF/o6eAjoI5/XuUM13U7wKI0slNmFflts 1501537467
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 2A4C57E432;
 Mon, 31 Jul 2017 17:44:27 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: Gage Eads <gage.eads@intel.com>
Cc: dev@dpdk.org
Date: Mon, 31 Jul 2017 23:44:26 +0200
Message-ID: <2807565.BH6kPGmNW3@xps>
In-Reply-To: <1500995026-20707-1-git-send-email-gage.eads@intel.com>
References: <1500995026-20707-1-git-send-email-gage.eads@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH] mk: use extra cflags when linking libs with
	a compiler
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 31 Jul 2017 21:44:28 -0000

25/07/2017 17:03, Gage Eads:
> When using the compiler to link libraries, include EXTRA_CFLAGS. This is
> needed when cross-compiling to pass --sysroot, for example. GCC
> cross-compilers built with Yocto don't use the --with-sysroot option,
> making it necessary to pass the --sysroot command-line option.
> 
> This is the same solution as in commit e8fbb6d9cfd9 ("mk: use extra cflags
> when linking with compiler"), but applied to libs instead of apps.
> ---
>  mk/rte.lib.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

You forgot the Signed-off-by line.