summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h
blob: 080b0616b0ce2ad99798d9de9b4f7a18884fa678 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
** 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