Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
7074a559
Commit
7074a559
authored
Mar 01, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert changes to mrbconf.h
parent
5f937591
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
include/mrbconf.h
include/mrbconf.h
+19
-19
No files found.
include/mrbconf.h
View file @
7074a559
...
...
@@ -9,61 +9,61 @@
/* configuration options: */
/* add -DMRB_USE_FLOAT to use float instead of double for floating point numbers */
/
* #define MRB_USE_FLOAT */
/
/#define MRB_USE_FLOAT
/* add -DMRB_INT16 to use 16bit integer for mrb_int; conflict with MRB_INT64 */
/
* #define MRB_INT16 */
/
/#define MRB_INT16
/* add -DMRB_INT64 to use 64bit integer for mrb_int; conflict with MRB_INT16 */
/
* #define MRB_INT64 */
/
/#define MRB_INT64
/* represent mrb_value in boxed double; conflict with MRB_USE_FLOAT */
/
* #define MRB_NAN_BOXING */
/
/#define MRB_NAN_BOXING
/* define on big endian machines; used by MRB_NAN_BOXING */
/
* #define MRB_ENDIAN_BIG */
/
/#define MRB_ENDIAN_BIG
/* represent mrb_value as a word (natural unit of data for the processor) */
/
* #define MRB_WORD_BOXING */
/
/ #define MRB_WORD_BOXING
/* argv max size in mrb_funcall */
/
* #define MRB_FUNCALL_ARGC_MAX 16 */
/
/#define MRB_FUNCALL_ARGC_MAX 16
/* number of object per heap page */
/
* #define MRB_HEAP_PAGE_SIZE 1024 */
/
/#define MRB_HEAP_PAGE_SIZE 1024
/* use segmented list for IV table */
/
* #define MRB_USE_IV_SEGLIST */
/
/#define MRB_USE_IV_SEGLIST
/* initial size for IV khash; ignored when MRB_USE_IV_SEGLIST is set */
/
* #define MRB_IVHASH_INIT_SIZE 8 */
/
/#define MRB_IVHASH_INIT_SIZE 8
/* turn off generational GC by default */
/
* #define MRB_GC_TURN_OFF_GENERATIONAL */
/
/#define MRB_GC_TURN_OFF_GENERATIONAL
/* default size of khash table bucket */
/
* #define KHASH_DEFAULT_SIZE 32 */
/
/#define KHASH_DEFAULT_SIZE 32
/* allocated memory address alignment */
/
* #define POOL_ALIGNMENT 4 */
/
/#define POOL_ALIGNMENT 4
/* page size of memory pool */
/
* #define POOL_PAGE_SIZE 16000 */
/
/#define POOL_PAGE_SIZE 16000
/* initial minimum size for string buffer */
/
* #define MRB_STR_BUF_MIN_SIZE 128 */
/
/#define MRB_STR_BUF_MIN_SIZE 128
/* arena size */
/
* #define MRB_GC_ARENA_SIZE 100 */
/
/#define MRB_GC_ARENA_SIZE 100
/* fixed size GC arena */
/
* #define MRB_GC_FIXED_ARENA */
/
/#define MRB_GC_FIXED_ARENA
/* -DDISABLE_XXXX to drop following features */
/
* #define DISABLE_STDIO */
/* use of stdio */
/
/#define DISABLE_STDIO
/* use of stdio */
/* -DENABLE_XXXX to enable following features */
/
* #define ENABLE_DEBUG */
/* hooks for debugger */
/
/#define ENABLE_DEBUG
/* hooks for debugger */
/* end of configuration */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment