radare2/libr/config.h
pancake 5f74c8068d * Move buf_hex memcpy in r_asm instead of dupped code in every plugin
- Plugins needs to be synced
* Added x86nasm assembler backend to handle x86-64
  - Not yet working. Pretty buggy :)
* Fix support of building static plugins for r_bp
  - Statically link r_bp_x86 by default
* Implement ugly r_sys_cmd_str() command in r_util
2009-04-13 22:47:02 +00:00

31 lines
460 B
C

#ifndef _INCLUDE_CONFIG_H_
#define _INCLUDE_CONFIG_H_
#define R_DEBUG 0
#define R_RTDEBUG 1
/* inlined APIs */
#define R_INLINE 0
#define DEFAULT_ARCH "x86"
#define R_ASM_STATIC_PLUGINS \
&r_asm_plugin_java, \
&r_asm_plugin_x86_olly, \
&r_asm_plugin_mips, \
0
#define R_BIN_STATIC_PLUGINS \
&r_bin_plugin_elf , \
0
#define R_BININFO_STATIC_PLUGINS \
&r_bininfo_plugin_addr2line, \
0
#define R_BP_STATIC_PLUGINS \
&r_bp_plugin_x86, \
0
#endif