I am trying to build a ns3 module and I got stuck on " undefined reference errors" .I have dealt with those in the past by specifying the location of the definitions through #include directives but now I am puzzled by the fact that the undefined references are coming from the shared libraries as shown on the output I am getting on this link:
http://www.blikoon.com/wp-content/uploads/2014/05/wafError-1024x575.png
Some search results pointed out that my problem might be related to the path to my library not being specified but I do have the
module.uselib='Xerces-C++
statement in the wscript file of my module
Is there a way I can get waf to make my compiler aware of the Xerces library location.Searching on my system ,I have found that xerces is installed in :
/usr/include/xercesc
I am building on the latest verion of ns3.19 and it uses waf1.7.13.
Thank you for your time.