| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-06-01 | Compile mruby compiler as mrbgem. | take_cheeze | |
| Compiler codes is moved to "mruby-compiler". Executable `mrbc` is moved to "mruby-bin-mrbc". | |||
| 2015-02-02 | allow endian specification of mrb files by `mrbc -e/-E` | Yukihiro "Matz" Matsumoto | |
| `mruby -b` now accepts both big/little endian mrb (compiled binary) files. `mrbc` generates mrb files in big endian for .mrb files and in native endian for C files (with -B option specified) by default. If you are cross compiling, you need to specify target endian by -e/-E options if it is different from host endian. | |||
| 2015-01-03 | Removed duplicated declarations. | Tatsuhiko Kubo | |
| * `mrb_show_version()` * `mrb_show_copyright()` | |||
| 2014-06-06 | Ignore outfile check when `-c`(check syntax only) flag is enabled. | take_cheeze | |
| 2014-03-02 | wrap function prototype by extern "C" | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | support c++ exception | take_cheeze | |
| 2014-01-31 | use mrb_bool, FALSE and TRUE more | cremno | |
| It doesn't matter to me if one is using FALSE/TRUE instead of 1/0 but I prefer a type (alias) which emphasizes boolean vars to int. I changed 1/0 to FALSE/TRUE anyway. | |||
| 2013-11-19 | parser_dump() is not used in mrbc; close #1561 | Yukihiro "Matz" Matsumoto | |
| 2013-11-13 | load_exec() no longer return fixnum value for no_exec; should close #1569 | Yukihiro "Matz" Matsumoto | |
| 2013-11-13 | fclose input file | Yukihiro "Matz" Matsumoto | |
| 2013-11-07 | modified to use irep->reps to reference child ireps. preparation for | Yukihiro "Matz" Matsumoto | |
| removing irep array from mrb_state. note that instructions OP_LAMBDA, OP_EXEC and OP_EPUSH are incompatible, and dumped mrb format has changed. | |||
| 2013-11-03 | mrbc: add line break for -c option | takahashim | |
| 2013-09-02 | support multiple filename in irep | take_cheeze | |
| 2013-08-07 | don't use str{cpy,cat} in mruby and mrbc | Cremno | |
| The length of each string is known. It should be used. | |||
| 2013-08-02 | add mrbc -h option | murase_syuka | |
| 2013-05-18 | mrbc: use binary mode on outfile | Luis Lavena | |
| This solves the problem of incorrect bytecode generated by mrbc for single files on Windows platform (which is by default text-mode) | |||
| 2013-05-16 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-05-15 | Fix compiler warning by exiting if wfp isn't set | Carson McDonald | |
| 2013-05-15 | avoid unnecessary copy of context->filename | Yukihiro "Matz" Matsumoto | |
| 2013-05-14 | mrbc to take multiple files, preserving debug information if -g given; close ↵ | Yukihiro "Matz" Matsumoto | |
| #1243 | |||
| 2013-04-20 | put spaces after if/while | Yukihiro "Matz" Matsumoto | |
| 2013-04-17 | Fix typo. | Carson McDonald | |
| 2013-04-17 | Minor code format changes. | Carson McDonald | |
| 2013-04-10 | Replace malloc with mrb_malloc in mrbc | h2so5 | |
| 2013-04-09 | Merge pull request #1163 from h2so5/show-version-once | Yukihiro "Matz" Matsumoto | |
| Show version only once with '-v' option in mruby/mrbc | |||
| 2013-04-09 | Add validation for C language symbol name | h2so5 | |
| 2013-04-09 | Show version only once with '-v' option in mruby/mrbc | h2so5 | |
| 2013-04-06 | parse_args should return either EXIT_SUCCESS or EXIT_FAILURE | Yukihiro "Matz" Matsumoto | |
| 2013-04-06 | use EXIT_SUCCESS and EXIT_FAILURE for exit status; close #1142 | Yukihiro "Matz" Matsumoto | |
| 2013-03-29 | Sort include files. Some redundant includes are removed. | Masaki Muranaka | |
| 2013-03-27 | Merge pull request #1082 from masuidrive/add_debug_info | Yukihiro "Matz" Matsumoto | |
| Added debug infomation section into .mrb file | |||
| 2013-03-27 | replace non formatting printf to (f)puts | Yukihiro "Matz" Matsumoto | |
| 2013-03-27 | Added debug infomation section into .mrb file | Yuichiro MASUI | |
| 2013-03-27 | resolve conflict from #964 | Yukihiro Matz Matsumoto | |
| 2013-03-14 | Define type mrb_bool. It is typedef-ed to _Bool on C99, unsigned int on MSVC. | Masaki Muranaka | |
| It is safer than applying 1bit bit-fields to signed int. For forward compatibility, you should substiture only 1 or 0 for the variable typed mrb_bool. | |||
| 2013-03-07 | mrbc: exit if outfile is specified multiple times | Cremno | |
| 2013-03-08 | New mrb format. The detail is in https://github.com/mruby/mruby/issues/944 | Yuichiro MASUI | |
| 2013-01-29 | Removed mrbc -C option what's C function dump. and TAB to space | Yuichiro MASUI | |
| 2013-01-22 | Added finalizer of mrbgems | Yuichiro MASUI | |
| 2012-12-08 | Use only DISABLE_GEMS for feature request in include/mrbconf.h | Daniel Bovensiepen | |
| 2012-11-22 | Deactivate / Activate GEMs Flag introduced into mrbc | Daniel Bovensiepen | |
| 2012-11-01 | Merge remote-tracking branch 'upstream/master' into mrbgems | Daniel Bovensiepen | |
| 2012-10-23 | prevent resource leak (outfile) | Yukihiro Matsumoto | |
| 2012-10-16 | "mrbc -" should take input from stdin; close #489 | Yukihiro Matsumoto | |
| 2012-09-13 | make mrbc aware of the gem init | Daniel Bovensiepen | |
| 2012-09-05 | Fix not to use memset() in structure inizialization. | Masaki Muranaka | |
| 2012-08-26 | Set filename in mrbc.c. | Masamitsu MURASE | |
| 2012-07-29 | Added mrbc support output to stdout | Yuichiro MASUI | |
| 2012-07-14 | mrbc: better cleanup before exit | Yukihiro Matsumoto | |
| 2012-07-14 | mrb_load_xxx to return undef + mrb_undef_p | Yukihiro Matsumoto | |
