mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
33742d941f
In addition, update the documents referring `build_config.rb` which is no longer used. The new `build_config.rb` describes the new configuration structure in the comment.
25 lines
508 B
C
25 lines
508 B
C
/*
|
|
** 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' in your build configuration
|
|
#endif
|
|
|
|
#ifdef MRB_DISABLE_STDIO
|
|
# error mruby-bin-debugger conflicts 'MRB_DISABLE_STDIO' in your build configuration
|
|
#endif
|
|
|
|
/* configuration options: */
|
|
/* maximum size for command buffer */
|
|
#define MAX_COMMAND_LINE 1024
|
|
|
|
/* maximum number of setable breakpoint */
|
|
#define MAX_BREAKPOINT 5
|
|
|
|
#endif
|