On 3 Oct 2009, at 23:39, lee wrote: > Must say a big thanks for your support guys. This project has > turned out bigger than anticipated. I have followed the last > threads and now get to the point where I get error messages stating > > DemoUI.exe': Loaded 'C:\fltk-1.1.7\Pinocchio\release > \Pinocchio.dll', Binary was not built with debug information.
That's not an error as such - that's a warning that you are trying to run a program in debug mode that has no debug information in it. Is the program running or not? I would expect that it would still run OK - absence of debug information wouldn't necessarily prevent a program from running - but I don't know how VS2005 will behave in that case, maybe it will not launch your code in that case? I don't use it, so can't say for certain. Are you trying to debug this program? I thought you simply wanted to run it? If you are not trying to debug this program, then I suggest you switch your VS project into release mode, and that will make it ignore any debug stuff, making this warning go away. Probably. > and lots of "No symbols loaded messages" too many to list like the > following: > > 'DemoUI.exe': Loaded 'C:\WINDOWS\system32\wsock32.dll', No symbols > loaded. > 'DemoUI.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols > loaded. Those are win32 standard library DLL's provided by the system. Microsoft's convention for such libraries is usually to distribute two versions, the release version (e.g. wsock32.dll) and a debug version (wsock32d.dll). You are linking against the release versions here, so no debug symbols will be found. If you want the debug symbols, you need to link against the xxxd.dll versions... However, as I said above, if you are simply trying to run this program, you should be in release mode anyway, and you do not want the debug versions in that case. I assume you *are* just trying to run this program, not debug it? If you are trying to debug it, then you're going to have to spend some time learning to use the tools first, because it does seem to be a piece of code of some complexity... _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

