Sha256: 67edb258a3f3517c4eb034b25472774e040175ebad79cfff6c9f2749d11fe871
Contents?: true
Size: 532 Bytes
Versions: 2
Compression:
Stored size: 532 Bytes
Contents
/* ** mrdbconf.h - mruby debugger configuration ** */ #ifndef MRDBCONF_H #define MRDBCONF_H #ifndef MRB_ENABLE_DEBUG_HOOK # error mruby-bin-debugger need 'MRB_ENABLE_DEBUG_HOOK' configuration in your 'build_config.rb' #endif #ifdef MRB_DISABLE_STDIO # error mruby-bin-debugger conflicts 'MRB_DISABLE_STDIO' configuration in your 'build_config.rb' #endif /* configuration options: */ /* maximum size for command buffer */ #define MAX_COMMAND_LINE 1024 /* maximum number of setable breakpoint */ #define MAX_BREAKPOINT 5 #endif
Version data entries
2 entries across 2 versions & 1 rubygems