![Bryce Denney](/assets/img/avatar_default.png)
for debug configuration or obj-release for release configuration. - instead of gui,iodev,cpu,etc. having their own obj-debug directory, it all goes into a single output directory for the whole project. I did this when I was having trouble getting any debug information from the static library directories to be recognized in the VC++ debugger. Maybe it's not necessary. - changed the compile arguments for the debug config so that debug symbols are created. We used to have: debug config: /G6 /MT /W4 /GX /O2 Now it says this: debug config: /MTd /W3 /GX /Z7 /Od I guess I haven't tested the release config yet, but the debug config is working great now. I even have symbolic debugging of functions in the gui/iodev/cpu libraries.
Description
No description provided
Languages
C++
69.5%
C
21.2%
Shell
3%
Makefile
2.1%
Rez
1.9%
Other
2.1%