From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 0B0A05A0C for ; Mon, 8 Jun 2015 22:14:12 +0200 (CEST) Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 3AD108E3F0 for ; Mon, 8 Jun 2015 20:14:11 +0000 (UTC) Received: from tfherb-2.local (vpn-61-146.rdu2.redhat.com [10.10.61.146]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t58KEAVD003437 for ; Mon, 8 Jun 2015 16:14:11 -0400 Message-ID: <5575F792.8080306@redhat.com> Date: Mon, 08 Jun 2015 16:14:10 -0400 From: Thomas F Herbert Organization: Red Hat User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: "dev@dpdk.org" Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 Subject: [dpdk-dev] Shared library build broken X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2015 20:14:13 -0000 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