From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Jeff Venable, Sr." Subject: NRMK build break Date: Fri, 07 Feb 2014 16:46:06 -0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable Cc: "dev-VfR2kkLFssw@public.gmane.org" To: Ryan Prenger Return-path: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" 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