From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas F Herbert Subject: Re: Shared library build broken Date: Mon, 08 Jun 2015 17:29:39 -0400 Message-ID: <55760943.9040104@redhat.com> References: <5575F792.8080306@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit To: "dev@dpdk.org" Return-path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 4F4261DB1 for ; Mon, 8 Jun 2015 23:29:41 +0200 (CEST) Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 401378F026 for ; Mon, 8 Jun 2015 21:29:40 +0000 (UTC) Received: from tfherb-2.local (vpn-61-146.rdu2.redhat.com [10.10.61.146]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t58LTdA2010142 for ; Mon, 8 Jun 2015 17:29:40 -0400 In-Reply-To: <5575F792.8080306@redhat.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Sorry, I apologize on behalf of my fingers. I meant combined library build is broken when PMD_BOND is selected. On 6/8/15 4:14 PM, Thomas F Herbert wrote: > I just noticed that shared library build is broking. I am building > current master. I had to make this change to get it to build: > > -CONFIG_RTE_LIBRTE_PMD_BOND=y > +CONFIG_RTE_LIBRTE_PMD_BOND=n > > > One of the recent bonding commits broke some dependencies I think but I > didn't investigate further. > > test_link_bonding.o: In function `test_add_slave_to_bonded_device': > test_link_bonding.c:(.text+0x44a): undefined reference to > `rte_eth_bond_slave_add' > test_link_bonding.c:(.text+0x462): undefined reference to > `rte_eth_bond_slaves_get' > test_link_bonding.c:(.text+0x487): undefined reference to > `rte_eth_bond_active_slaves_get > .... > > --TFH