| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-10-12 | Keep `build/presym` through `rake clean`. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Prepend `gensym` rule to `depfiles`. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Fix `presym_find` for strings without `NUL` terminators. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Avoid `snprintf` in `mruby-io` test; ref #4981 | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Remove the temporary file from the `AF_UNIX` socket test; #4981 | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Remove `build/presym` and `build/presym.inc` on `rake clean`. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Scan `.rb` files as well to generate `presym` table. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Update `presym_find` to use more efficient binary search. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Add `MRB_SYM()` for inline symbols. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Update Rakefile to generate presym. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Support `presym` in `symbol.c`. | Yukihiro "Matz" Matsumoto | |
| 2020-10-12 | Generate a table for preallocated symbols (`presym`). | Yukihiro "Matz" Matsumoto | |
| `presym` are symbols used in the C source files. `gensym` rake rule scans the entire C source files and collect symbols referenced from them. | |||
| 2020-10-12 | Merge pull request #5090 from zubycz/fix_error_when_build_without_float | Yukihiro "Matz" Matsumoto | |
| Fix argument error when built with MRB_WITHOUT_FLOAT flag | |||
| 2020-10-12 | Merge pull request #5089 from zubycz/fix_test_of_range_min | Yukihiro "Matz" Matsumoto | |
| fix improper test of Range#min | |||
| 2020-10-12 | Fix argument error when built with MRB_WITHOUT_FLOAT flag | ssmallkirby | |
| Fixed inproper argument of mrb_fixnum_value() called in integral_div(), when built with MRB_WITHOUT_FLOAT flag. Co-authored-by: taiyoslime <[email protected]> Co-authored-by: n4o847 <[email protected]> | |||
| 2020-10-12 | fix improper test of Range#min | taiyoslime | |
| 2020-09-25 | Merge pull request #5087 from dearblue/get-args-string | Yukihiro "Matz" Matsumoto | |
| Prohibit string changes by "s"/"z" specifier of `mrb_get_args()` | |||
| 2020-09-25 | Prohibit string changes by "s"/"z" specifier of `mrb_get_args()` | dearblue | |
| - The `s` specifier is a string pointer obtained without performing `mrb_str_modify()`, so it cannot be changed. - The `z` specifier cannot be changed because it is a string pointer obtained by `RSTRING_CSTR()` which returns `const char *`. | |||
| 2020-09-18 | Merge pull request #5083 from wataash/example-clarify-caller | Yukihiro "Matz" Matsumoto | |
| examples/mrbgems: clarify the caller | |||
| 2020-09-18 | examples/mrbgems: clarify the caller | Wataru Ashihara | |
| Before this commit: mruby -e 'CRubyExtension.ruby_method' # => A Ruby Extension mruby -e 'CRubyExtension.c_method' # => A C Extension mruby -e 'CExtension.c_method' # => A C Extension mruby -e 'RubyExtension.ruby_method' # => A Ruby Extension After this commit: mruby -e 'CRubyExtension.ruby_method' # => CRubyExtension: A Ruby Extension mruby -e 'CRubyExtension.c_method' # => CRubyExtension: A C Extension mruby -e 'CExtension.c_method' # => CExtension: A C Extension mruby -e 'RubyExtension.ruby_method' # => RubyExtension: A Ruby Extension | |||
| 2020-09-18 | Merge pull request #5082 from wataash/remove-type-check | Yukihiro "Matz" Matsumoto | |
| Remove redundant type-check | |||
| 2020-09-18 | Remove redundant type-check | Wataru Ashihara | |
| since mrb_str_to_str() also does it. | |||
| 2020-09-17 | Merge pull request #5081 from wataash/d-format-comment | Yukihiro "Matz" Matsumoto | |
| *.d format is version-independent | |||
| 2020-09-17 | Merge pull request #5080 from wataash/fix-dep-read | Yukihiro "Matz" Matsumoto | |
| Fix skipping reading file | |||
| 2020-09-17 | *.d format is version-independent | Wataru Ashihara | |
| As pointed out by @shuujii on https://github.com/mruby/mruby/pull/5079 , multi-path in single-line could be appear even with older-gcc or clang. | |||
| 2020-09-17 | Fix skipping reading file | Wataru Ashihara | |
| 2020-09-17 | Merge pull request #5079 from wataash/fix-dep-parse | Yukihiro "Matz" Matsumoto | |
| Fix *.d parsing with gcc 9.3.0 | |||
| 2020-09-17 | Fix *.d parsing with gcc 9.3.0 | Wataru Ashihara | |
| Before this commit: $ rake ... $ rm build/host/src/gc.o $ rake rake aborted! Don't know how to build task '/home/foo/mruby/build/host/src/gc.o' (See the list of available tasks with `rake --tasks`) ... After this commit: $ rake ... $ rm build/host/src/gc.o $ rake CC src/gc.c -> build/host/src/gc.o ... With gcc 9.3.0 on Ubuntu 20.04, build/host/src/array.d looks like: /build/host/src/array.o: /src/array.c \ /include/mruby.h /include/mrbconf.h \ /include/mruby/common.h \ ... /include/mruby/range.h \ /src/value_array.h and it has been parsed to: [ # /src/array.c missing "/include/mruby.h /include/mrbconf.h", # incorrectly parsed "/include/mruby/common.h", ... "/src/value_array.h", ] After this change, *.d will be parsed correctly. [ "/src/array.c", "/include/mruby.h", "/include/mrbconf.h", "/include/mruby/common.h", ... "/src/value_array.h", ] | |||
| 2020-09-13 | Fix `File.extname` bug; fix #5077 | Yukihiro "Matz" Matsumoto | |
| 2020-09-13 | Add test to ensure #5077 | Yukihiro "Matz" Matsumoto | |
| 2020-09-10 | Update `y.tab.c`; ref #4933 | Yukihiro "Matz" Matsumoto | |
| 2020-09-10 | Merge pull request #4933 from dearblue/variables | Yukihiro "Matz" Matsumoto | |
| Fix take over file scope variables with `mruby` and `mirb` command | |||
| 2020-09-07 | Merge pull request #5076 from dearblue/call_type | Yukihiro "Matz" Matsumoto | |
| Remove `enum call_type` | |||
| 2020-09-03 | Remove `enum call_type` | dearblue | |
| It seems to be unnecessary from mruby-1.0.0 or earlier. | |||
| 2020-08-30 | Fix `mrb_ary_splat()` to copy the array always. | Yukihiro "Matz" Matsumoto | |
| 2020-08-29 | Merge pull request #5068 from sizious/mingw32-legacy-fixes | Yukihiro "Matz" Matsumoto | |
| mruby-io: Fixing compilation issue under the legacy MinGW environment | |||
| 2020-08-29 | Fix the bug caused by `to_a` returning a frozen array. | Yukihiro "Matz" Matsumoto | |
| Reported by @shuujii. | |||
| 2020-08-29 | Fix a bug introduced by the last commit. | Yukihiro "Matz" Matsumoto | |
| Should have handled the case `to_a` returns `nil`. | |||
| 2020-08-29 | mruby-io: Fixing compilation issue under the legacy MinGW environment | SiZiOUS | |
| Adding MRB_MINGW32_LEGACY in common.h in order to identify the legacy MinGW environment (i.e. NOT to be confused with MinGW-w64). For more info about MinGW defined macros, see: https://sourceforge.net/p/predef/wiki/Compilers/ | |||
| 2020-08-29 | Fix `mrb_obj_ceqq` to avoid array copying. | Yukihiro "Matz" Matsumoto | |
| 2020-08-29 | Fix `mrb_ary_splat` to copy the array; fix #5067 | Yukihiro "Matz" Matsumoto | |
| 2020-08-12 | Merge pull request #5065 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/simplify-MSVC-detection-to-mrb_static_assert Simplify MSVC detection to `mrb_static_assert` | |||
| 2020-08-12 | Simplify MSVC detection to `mrb_static_assert` | KOBAYASHI Shuji | |
| 2020-08-11 | Merge pull request #5062 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-normal-static_assert-in-mrb_static_assert-as-much-as-possible Use normal `static_assert` in `mrb_static_assert` as much as possible | |||
| 2020-08-11 | Merge pull request #5063 from dearblue/stat32 | Yukihiro "Matz" Matsumoto | |
| Use `struct _stat32` instead of `struct __stat32` | |||
| 2020-08-11 | Use `struct _stat32` instead of `struct __stat32` | dearblue | |
| It is described as `struct __stat32` in the MSVC reference manual. https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/stat-functions?view=vs-2019 But it doesn't really exist, so it must use `struct _stat32`. It also replaces `struct __stat64` with `struct _stat64` to make it look nicer. | |||
| 2020-08-11 | Use normal `static_assert` in `mrb_static_assert` as much as possible | KOBAYASHI Shuji | |
| * `_Static_assert` can also be used with `-std=gnu99` on GCC >= 4.6. * `static_assert` can be used on MSVC. * `static_assert` can be used even on old G++/Clang++ if `__GXX_EXPERIMENTAL_CXX0X__` is defined. | |||
| 2020-08-11 | Fixed VC `fstat` issue. | Yukihiro "Matz" Matsumoto | |
| 2020-08-11 | Should use `_fstat32()` on 32bit Windows. | Yukihiro "Matz" Matsumoto | |
| 2020-08-11 | Add cast for `mrb_fixnum_value()` from `time_t`. | Yukihiro "Matz" Matsumoto | |
