PDA

View Full Version : debug build


neotokyo
11-25-2003, 05:30 AM
hi,
when did you last tried the debug build? long time ago right?

packet_dump_file.cpp doesnt compile until you move the <../common/debug.h> below the <iomanip> include.

#include <iostream>
#include <fstream>
#include <iomanip>
#include "../common/debug.h"


and you are missing a >>break<< in spells.cpp near line 3135. but as long as no one casts that sort of spell you're safe.

perhaps more later ...

good job devs! :-)

Trumpcard
11-25-2003, 05:44 AM
MY GOD IT LIVES!!!!!

kathgar
11-25-2003, 08:44 AM
The default linux makefile is debug 5 iirc.. I know it has DEBUG of some level defined. And I don't believe you are really speaking either.. ghosty.. and if trump didn't look into it i will

DeletedUser
11-30-2003, 06:01 PM
He's talking about the windows #define _DEBUG, enables alot of memory leak detection, but the remapping of the new, delete, malloc and free functions completely hoses STL libraries. So need to do alot of defining and undefining around those includes to make everything happy.