mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-08 23:07:17 +00:00
![pancake](/assets/img/avatar_default.png)
- 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
31 lines
460 B
C
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
|