PDA

View Full Version : A New Problem: Unresolved External


Mrwalsh
08-18-2004, 05:08 AM
I'm having a problem with the final compilation stages after including Perl. The area of particular note is this:

Linking...
embperl.obj : error LNK2001: unresolved external symbol _boot_qc
Zone___Win32_Release_with_Perl/Zone.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.

Everything else before that goes about perfectly. It's not a case of embperl.obj missing, as it's right where it should be. I've dug around and haven't seen a similar case involving this particular external, though the others concluded that there were missing libs somewhere. If that's the case, what do I need to add?

Cripp
08-18-2004, 07:33 AM
you forgot to add embxs .cpp and .h to the project.

Mrwalsh
08-18-2004, 03:18 PM
Hey that worked, thanks.