summaryrefslogtreecommitdiffhomepage
AgeCommit message (Expand)Author
2020-10-12Define a new function `mrb_funcall_id()`.Yukihiro "Matz" Matsumoto
2020-10-12Update the build instruction.Yukihiro "Matz" Matsumoto
2020-10-12Remove unnecessary comments from `host-shared` target.Yukihiro "Matz" Matsumoto
2020-10-12Add a new target `clang-asan` to use LLVM's address sanitizer.Yukihiro "Matz" Matsumoto
2020-10-12Use more `MRB_QSYM()`.Yukihiro "Matz" Matsumoto
2020-10-12Add `Rakefile` to `build/presym` dependency.Yukihiro "Matz" Matsumoto
2020-10-12Run `rake gensym` before the build.Yukihiro "Matz" Matsumoto
2020-10-12Remove explicit `rake gensym`.Yukihiro "Matz" Matsumoto
2020-10-12Add dependency from `all` to `gensym`.Yukihiro "Matz" Matsumoto
2020-10-12Removed unnecessary dependency from `all`.Yukihiro "Matz" Matsumoto
2020-10-12Add `mruby-bin-config` to `default.gembox`.Yukihiro "Matz" Matsumoto
2020-10-12Add operators to `presym` from `Rakefile`.Yukihiro "Matz" Matsumoto
2020-10-12Use `MRB_QSYM()` instead of `MRB_OPSYM()`.Yukihiro "Matz" Matsumoto
2020-10-12Rename `MRB_OPSYM()` to `MRB_QSYM()`.Yukihiro "Matz" Matsumoto
2020-10-12Simplified `Rakefile`.Yukihiro "Matz" Matsumoto
2020-10-12Use `MRB_OPSYM()` instead of `mrb_intern_lit()`.Yukihiro "Matz" Matsumoto
2020-10-12Create `MRB_OPSYM()` macro to refer symbols corresponding operators.Yukihiro "Matz" Matsumoto
2020-10-12Undefine internal macros in `presym.h`.Yukihiro "Matz" Matsumoto
2020-10-12Create `build` directory first before `gensym`.Yukihiro "Matz" Matsumoto
2020-10-12Remove unused variable from `Rakefile`.Yukihiro "Matz" Matsumoto
2020-10-12Use `File.open` instead of `File.write` shortcut.Yukihiro "Matz" Matsumoto
2020-10-12Remove `presym` files before writing just to make sure.Yukihiro "Matz" Matsumoto
2020-10-12Specify `MRUBY_TARGET` in CI configuration YAML.Yukihiro "Matz" Matsumoto
2020-10-12Add `rake gensym` to `appveyor.yml` too.Yukihiro "Matz" Matsumoto
2020-10-12Update `host*` targets to use `default.gembox`.Yukihiro "Matz" Matsumoto
2020-10-12Small updates on documents:Yukihiro "Matz" Matsumoto
2020-10-12Add `host-shared.rb` to create shared mruby library.Yukihiro "Matz" Matsumoto
2020-10-12Update `host.rb` build script.Yukihiro "Matz" Matsumoto
2020-10-12Build process updated:Yukihiro "Matz" Matsumoto
2020-10-12Avoid changing directory in `mruby-io` testKOBAYASHI Shuji
2020-10-12Refine `.travis.yml`KOBAYASHI Shuji
2020-10-12Should not use `assert` with expressions with side-effect; ref #4981Yukihiro "Matz" Matsumoto
2020-10-12Fixed wrong condition in #4981.Yukihiro "Matz" Matsumoto
2020-10-12Run `rake gensym` before the build.Yukihiro "Matz" Matsumoto
2020-10-12Keep `build/presym` through `rake clean`.Yukihiro "Matz" Matsumoto
2020-10-12Prepend `gensym` rule to `depfiles`.Yukihiro "Matz" Matsumoto
2020-10-12Fix `presym_find` for strings without `NUL` terminators.Yukihiro "Matz" Matsumoto
2020-10-12Avoid `snprintf` in `mruby-io` test; ref #4981Yukihiro "Matz" Matsumoto
2020-10-12Remove the temporary file from the `AF_UNIX` socket test; #4981Yukihiro "Matz" Matsumoto
2020-10-12Remove `build/presym` and `build/presym.inc` on `rake clean`.Yukihiro "Matz" Matsumoto
2020-10-12Scan `.rb` files as well to generate `presym` table.Yukihiro "Matz" Matsumoto
2020-10-12Update `presym_find` to use more efficient binary search.Yukihiro "Matz" Matsumoto
2020-10-12Add `MRB_SYM()` for inline symbols.Yukihiro "Matz" Matsumoto
2020-10-12Update Rakefile to generate presym.Yukihiro "Matz" Matsumoto
2020-10-12Support `presym` in `symbol.c`.Yukihiro "Matz" Matsumoto
2020-10-12Generate a table for preallocated symbols (`presym`).Yukihiro "Matz" Matsumoto
2020-10-12Merge pull request #5090 from zubycz/fix_error_when_build_without_floatYukihiro "Matz" Matsumoto
2020-10-12Merge pull request #5089 from zubycz/fix_test_of_range_minYukihiro "Matz" Matsumoto
2020-10-12Fix argument error when built with MRB_WITHOUT_FLOAT flagssmallkirby
2020-10-12fix improper test of Range#mintaiyoslime