source: EcnlProtoTool/trunk/mruby-2.1.1/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h@ 439

Last change on this file since 439 was 439, checked in by coas-nagasima, 4 years ago

mrubyを2.1.1に更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 532 bytes
Line 
1/*
2** mrdbconf.h - mruby debugger configuration
3**
4*/
5
6#ifndef MRDBCONF_H
7#define MRDBCONF_H
8
9#ifndef MRB_ENABLE_DEBUG_HOOK
10# error mruby-bin-debugger need 'MRB_ENABLE_DEBUG_HOOK' configuration in your 'build_config.rb'
11#endif
12
13#ifdef MRB_DISABLE_STDIO
14# error mruby-bin-debugger conflicts 'MRB_DISABLE_STDIO' configuration in your 'build_config.rb'
15#endif
16
17/* configuration options: */
18/* maximum size for command buffer */
19#define MAX_COMMAND_LINE 1024
20
21/* maximum number of setable breakpoint */
22#define MAX_BREAKPOINT 5
23
24#endif
Note: See TracBrowser for help on using the repository browser.