auto-select #DEVELOPER if #GDB_STUB
This commit is contained in:
parent
ed7b6cd6f6
commit
b6d3c26b2b
|
@ -40,6 +40,11 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//enforce a constraint: gdb stub requires developer
|
||||||
|
#if defined(GDB_STUB) && !defined(DEVELOPER)
|
||||||
|
#define DEVELOPER
|
||||||
|
#endif
|
||||||
|
|
||||||
//xbox needs to include this to resemble windows
|
//xbox needs to include this to resemble windows
|
||||||
#ifdef _XBOX
|
#ifdef _XBOX
|
||||||
#include <xtl.h>
|
#include <xtl.h>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
//#define NOSSE2
|
//#define NOSSE2
|
||||||
|
|
||||||
//#define DEVELOPER //enables dev+ features
|
//#define DEVELOPER //enables dev+ features
|
||||||
//#define GDB_STUB //enables the gdb stub. for some reason this is separate from dev+ for now
|
//#define GDB_STUB //enables the gdb stub. for some reason this is separate from dev+ for now. requires DEVELOPER.
|
||||||
|
|
||||||
//#define EXPERIMENTAL_WIFI_COMM //enables experimental wifi communication features which do not actually work yet
|
//#define EXPERIMENTAL_WIFI_COMM //enables experimental wifi communication features which do not actually work yet
|
||||||
//basic wifi register emulation is still enabled, to at least make it seem like the wifi is working in an empty universe
|
//basic wifi register emulation is still enabled, to at least make it seem like the wifi is working in an empty universe
|
||||||
|
|
Loading…
Reference in New Issue