diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-07-30 17:16:13 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-07-30 17:16:13 +0900 |
| commit | d91f475e5514248ad660172d35ccdf21872d63e7 (patch) | |
| tree | 108da38820b38ba554aff98f034a5c6890a44b26 /include | |
| parent | e75c76ecee3a0b5b1b0b19d4fdd8c31b3e8bbd9b (diff) | |
| download | mruby-d91f475e5514248ad660172d35ccdf21872d63e7.tar.gz mruby-d91f475e5514248ad660172d35ccdf21872d63e7.zip | |
better mrbconf decsription
Diffstat (limited to 'include')
| -rw-r--r-- | include/mrbconf.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h index 0113136d6..c4cf23017 100644 --- a/include/mrbconf.h +++ b/include/mrbconf.h @@ -13,6 +13,12 @@ /* add -DMRB_USE_FLOAT to use float instead of double for floating point numbers */ //#define MRB_USE_FLOAT +/* initial size of khash table bucket; should be power of 2 (n >= 8) */ +//#define MRB_INITIAL_HASH_SIZE 32 + +/* argv max size in mrb_funcall */ +//#define MRB_FUNCALL_ARGC_MAX 16 + /* -DDISABLE_XXXX to drop the feature */ #define DISABLE_REGEXP /* regular expression classes */ //#define DISABLE_SPRINTF /* Kernel.sprintf method */ @@ -21,8 +27,6 @@ //#define DISABLE_STRUCT /* Struct class */ //#define DISABLE_STDIO /* use of stdio */ -//#define MRB_FUNCALL_ARGC_MAX 16 /* argv size in mrb_funcall */ - #undef HAVE_UNISTD_H /* WINDOWS */ #define HAVE_UNISTD_H /* LINUX */ |
