[nox-dev] Undefined symbol error running a NOX application. Compiling a NOX app with a linker flag.

2011-09-22 Thread Sergio Jiménez Feijóo
Hi everybody, I've spent the last months developping a NOX application. The goal of my app is to dynamically calculate the optimum layer 2 path of OpenFlow switches for a flow between a source PC and a destination PC. The criteria which determines which path should be picked could be

Re: [nox-dev] Undefined symbol error running a NOX application. Compiling a NOX app with a linker flag.

2011-09-22 Thread Murphy McCauley
In src/Makefile.am, around line 46 is something like: nox_core_LDFLAGS = \ Throw -lglpk in there too: nox_core_LDFLAGS = -lglpk \ Then re-run boot.sh in the top directory, and hopefully that'll do it. -- Murphy On Sep 22, 2011, at 8:33 AM, Sergio Jiménez Feijóo