From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 47DB61B2B4 for ; Fri, 13 Oct 2017 22:07:20 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B70C920F69; Fri, 13 Oct 2017 16:07:19 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 13 Oct 2017 16:07:19 -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; s=mesmtp; bh=u/s5cgGdUaMoFekA/W1DeugQyD use9kgI0CwWaDDH2o=; b=FcqlrIVFO5WKl0F5oOJqFsAK/daBdmTIjQGHg451j3 0tXKp8juDCTfGyqep5d7wLkhLhdsvlT5Nl2DFupvfX2lOXMj11nwPsgbIJHQbQCV UsGm2FesW+UGdTn2aExAenopkKrSkG4LpQ5o2tjirL0tVvFzKAxxf52hUspGb+NR E= 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; s=fm1; bh=u/s5cg GdUaMoFekA/W1DeugQyDuse9kgI0CwWaDDH2o=; b=lsbe5021qOHgdXfbLsslFu K0scGCvRCF0QhoHerfoZzuKQv7TgPLbL1EuuC8dEQs6dUZeVgcMZ4ufkWDwelT5Y iX0kFGrsB39irjwlv5lubwCJCzgWvFKHtIZy3fGPV7mVyMqjfjcYIEJfl5zon3M1 IzdLiCLqOcHq5YTcCO+H83csjBB51Fci9SwmgwRSIJ62ICrVdHiXkvM/Kp3wrhkN mG+D/RpB847ASBfsgmFUXLei6HruqhzJ4vWz5WiqavDmTHB1qJz8QnKcGm5SGqJl ZdfvhGcWgU63aTlTT0Q3IonLhJu8PDE+nSilDKn/kSvNySBkt9keY9ZqG+QcpM1w == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 4D6A32479F; Fri, 13 Oct 2017 16:07:19 -0400 (EDT) From: Thomas Monjalon To: Ferruh Yigit Cc: dev@dpdk.org, Byron Marohn , Pablo de Lara Guarch Date: Fri, 13 Oct 2017 22:07:18 +0200 Message-ID: <2037976.V49qYeNya0@xps> In-Reply-To: <20171013182421.13473-1-ferruh.yigit@intel.com> References: <20171013182421.13473-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] efd: fix build when compiler does not support AVX2 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Oct 2017 20:07:20 -0000 13/10/2017 20:24, Ferruh Yigit: > Compiler error: > irte_efd.o: In function `rte_efd_lookup': > rte_efd.c:(.text+0x6d6e): undefined reference to `efd_lookup_internal_avx2' > rte_efd.o: In function `rte_efd_lookup_bulk': > rte_efd.c:(.text+0x87d4): undefined reference to `efd_lookup_internal_avx2' > > This can be observed with a compiler that doesn't support AVX2 and > shared build. > > Fixes: 86d898968826 ("efd: add AVX2 vector lookup function") > > Signed-off-by: Ferruh Yigit Applied, thanks