I have a link error with undefined symbols, e.g.
undefined reference to `vtable for tbb::task'
My gcc options (passed through the mainwin mwdip wrapper) has the following section:
-lxerces-c -ltbb -lboost_chrono
When I include verbose output with -v , I see the following section in the verbose output:
-lxerces-c -lboost_chrono
Why would the verbose output skip some -l args?
Does gcc try to ignore libraries it thinks it doesn't need? Is there a way for me to force gcc to include a needed library that it is mistakenly thinking it can skip?