Compiling and linking using Cygwin rather than the IDE, and don't seem to be able to debug the output executable.
VC++ 6.0 will load the executable, but complains that there is no debug information.
Noob with VC++ .NET 2003, it doesn't even seem to be able to load an executable file for debugging. Do i need to hard code a break point in the code, run it, then attatch to the running process (certainly hope not!) ??
When cl is called to compile the object files, passing it /Yd and /Zi. When linking use /Zi (also tried /link /DEBUG). Yet VC++ 6.0 still says there is no debug info. Is this because the version of cl that comes with .NET 2003 has a different format for the debug information? Tried using /Z7 instead of /Zi incase this was the prob, but no joy.
Any help would be greatly appreciated.
VC++ 6.0 will load the executable, but complains that there is no debug information.
Noob with VC++ .NET 2003, it doesn't even seem to be able to load an executable file for debugging. Do i need to hard code a break point in the code, run it, then attatch to the running process (certainly hope not!) ??
When cl is called to compile the object files, passing it /Yd and /Zi. When linking use /Zi (also tried /link /DEBUG). Yet VC++ 6.0 still says there is no debug info. Is this because the version of cl that comes with .NET 2003 has a different format for the debug information? Tried using /Z7 instead of /Zi incase this was the prob, but no joy.
Any help would be greatly appreciated.