* Do not enable static debug by default
This commit is contained in:
parent
1048ed5ab0
commit
ae84fb0695
3 changed files with 6 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef _INCLUDE_CONFIG_H_
|
||||
#define _INCLUDE_CONFIG_H_
|
||||
|
||||
#define R_DEBUG 1
|
||||
#define R_DEBUG 0
|
||||
#define R_RTDEBUG 1
|
||||
|
||||
/* inlined APIs */
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@ OSX=0
|
|||
USE_RIO=1
|
||||
|
||||
# static plugins
|
||||
STATIC_DEBUG=0
|
||||
RUNTIME_DEBUG=1
|
||||
STATIC_ASM_PLUGINS=p/x86olly.mk p/mips.mk p/java.mk
|
||||
STATIC_BIN_PLUGINS=p/elf.mk
|
||||
STATIC_BININFO_PLUGINS=p/addr2line.mk
|
||||
|
|
|
|||
|
|
@ -95,7 +95,9 @@ endif
|
|||
CFLAGS+=-DR_RTDEBUG
|
||||
#endif
|
||||
|
||||
|
||||
// TODO: Not working
|
||||
#if STATIC_DEBUG
|
||||
CFLAGS+=-DR_DEBUG
|
||||
#CFLAGS+=-DR_DEBUG
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue