From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f51.google.com (mail-pa0-f51.google.com [209.85.220.51]) by dpdk.org (Postfix) with ESMTP id CC6125947 for ; Sat, 8 Feb 2014 01:45:06 +0100 (CET) Received: by mail-pa0-f51.google.com with SMTP id ld10so3888296pab.10 for ; Fri, 07 Feb 2014 16:46:13 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:user-agent:date:subject:from:to:cc:message-id :thread-topic:mime-version:content-type; bh=Ach9r2MI2p4VJS8ZCc4Tbovc9xWlELn/ClmNTHMUh1c=; b=Q9BRMjMsQwpqhnUbUm0mULo02+iTMSAaO8lATxCNCyWVcFg3Pd9ozLFO52+HTb0PSo YRL13+8QEMpcQ0xKO1kbenbLSE7Hickuoq2uEM76xAklOdykOTSAjHQsFsc8fgxeDa4x TjOtZfht+7em/CRRyXhY//EzUQJCtuEXCTFQCJZzpN6cITP0MqrojulvB05uPW9C2A+I jnTRGBmno2eOhEknV6cqGVFAKKJaK/wAdlTytZ98EiHt4sEpfKyXUfvKjtKGvf4T5Nxw 9LrQuBJsTNaIjsj9xrbyaVElrxKlL0FFWE5yNDLXRSC/QhT5H7JF2qDp8hqmgNuOPEm8 Ztnw== X-Gm-Message-State: ALoCoQlSXcL7yMLBMHHedbLGFY/Kshtn5lZVEPxXq+QAygsy5D0uB4fLg57y9ksgZ1m5+COPQN44 X-Received: by 10.68.224.195 with SMTP id re3mr23170519pbc.93.1391820373340; Fri, 07 Feb 2014 16:46:13 -0800 (PST) Received: from [10.0.1.97] (50-193-46-99-static.hfc.comcastbusiness.net. [50.193.46.99]) by mx.google.com with ESMTPSA id g6sm45389960pat.2.2014.02.07.16.46.10 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 07 Feb 2014 16:46:12 -0800 (PST) User-Agent: Microsoft-MacOutlook/14.3.9.131030 Date: Fri, 07 Feb 2014 16:46:06 -0800 From: "Jeff Venable, Sr." To: Ryan Prenger Message-ID: Thread-Topic: NRMK build break Mime-version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Cc: "dev@dpdk.org" Subject: [dpdk-dev] NRMK build break 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: Sat, 08 Feb 2014 00:45:08 -0000 For those who leave the office before verifying they didn=B9t break the build= , a public flogging! :) /usr/bin/ld: cannot find -lipinfo collect2: error: ld returned 1 exit status make: *** [/home/jeff/Colossus/nrmk/dataplane/P2P/obj/debug/libP2P.so] Erro= r 1 make: *** Waiting for unfinished jobs.... You marked libipinfo.so as an external dependency. You need to make it a makefile dependency. The fix: (jeff@colossus ~/Colossus/nrmk)$ git diff dataplane/P2P/Rules.mk diff --git a/nrmk/dataplane/P2P/Rules.mk b/nrmk/dataplane/P2P/Rules.mk index 2ecc396..093b7ac 100644 --- a/nrmk/dataplane/P2P/Rules.mk +++ b/nrmk/dataplane/P2P/Rules.mk @@ -34,6 +34,7 @@ libP2P.so_DEPS :=3D \ P2PConfig.o \ $(TARGETS_$(TOP)/lib/json) \ $(TARGETS_$(TOP)/lib/notes) \ + $(TARGETS_$(TOP)/lib/ipinfo) =20 LIBDIRS_$(d) =3D $(TOP)/../lib =20 @@ -41,5 +42,4 @@ libP2P.so_LIBS =3D \ -lcolossuscommon \ -lcolossuscommand \ -lcolossustrace \ - -lcolossusutilities \ - -lipinfo + -lcolossusutilities Pushing the fix. Thanks for moving all your algorithms into NRMK! :) Jeff