> There is no map file -- the link doesn't complete.
Time to check the object files. I assume it got far enough to build a bunch of object files somewhere.
You didn't answer my question "Does your build system come with the equivalent of "nm" and "objdump"?". Does it?
On development on a "real operating system" these are built in. Good development systems provide command line versions of these. Does yours? It might if you look.
These are very basic problems that every programmer has to know how to solve. If your development system doesn't have any useful tools, then the next option is to pipe the object files through "string" and "grep". As Windows doesn't have these, find some or, copy your files to a Linux system and do the search there.
Or simply open the object files one at a time in NOTEPAD and search for anything matching those function names.
Another really simple solution is to leave object files out until the problem goes away. The other way is to add some dummy functions so you CAN get a link and THEN look at the MAP file, or open the project in the debugger and go hunting in there.
Tom