missing-symbols

Dependency walker on cygwin app gives conflicting information?

I am using the dependency walker to figure out why my link of a cygwin ported application is not correct. It states that cgywin1.dll is missing the following symbols: AddAtomA FindAtomA GetAtomNameA GetModuleHandleA Looking around, I see that these are supposed to come from -lkernel32 on the link line, which I have added at the end...

Using boost.python to import a method with opencv calls but failing due to symbols not being found after compilation

So I don't have the code right now, as I am not home... but i used the boost library for python in C++ to allow python to access a function called something like loadImageIntoMainWindow(string filepath) in the C++ source code the method calls opencv methods that are imported at the top of the file, I included opencv in my Jamroot file, ...