- 31 Dec, 2018 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
mruby-enumerator: Refine accessors (obj/meth/args/fib).
-
Yukihiro "Matz" Matsumoto authored
Fix Yacc running multiple times.
-
- 30 Dec, 2018 2 commits
-
-
KOBAYASHI Shuji authored
- `fib=` writer is not used. - All accessors are used as public (e.g. in `initialized_copy`).
-
KOBAYASHI Shuji authored
For fix Codacy issue.
-
- 29 Dec, 2018 1 commit
-
-
KOBAYASHI Shuji authored
Example: $ MRUBY_CONFIG=<(echo 'MRuby::Build.new{toolchain(:gcc);gem(core:"mruby-bin-mruby");enable_test}') ./minirake Before: ... CC build/host/mrbgems/gem_init.c -> build/host/mrbgems/gem_init.o YACC mrbgems/mruby-compiler/core/parse.y -> build/host/mrbgems/mruby-compiler/core/y.tab.c YACC mrbgems/mruby-compiler/core/parse.y -> build/host/mrbgems/mruby-compiler/core/y.tab.c YACC mrbgems/mruby-compiler/core/parse.y -> build/host/mrbgems/mruby-compiler/core/y.tab.c YACC mrbgems/mruby-compiler/core/parse.y -> build/host/mrbgems/mruby-compiler/core/y.tab.c CC build/host/mrbgems/mruby-compiler/core/y.tab.c -> build/host/mrbgems/mruby-compiler/core/y.tab.o CC build/host/mrbgems/mruby-compiler/core/y.tab.c -> build/host/mrbgems/mruby-compiler/core/y.tab.o CC build/host/mrbgems/mruby-compiler/core/y.tab.c -> build/host/mrbgems/mruby-compiler/core/y.tab.o CC build/host/mrbgems/mruby-compiler/core/y.tab.c -> build/host/mrbgems/mruby-compiler/core/y.tab.o AR build/host/lib/libmruby_core.a ... After: ... CC build/host/mrbgems/gem_init.c -> build/host/mrbgems/gem_init.o YACC mrbgems/mruby-compiler/core/parse.y -> build/host/mrbgems/mruby-compiler/core/y.tab.c CC build/host/mrbgems/mruby-compiler/core/y.tab.c -> build/host/mrbgems/mruby-compiler/core/y.tab.o AR build/host/lib/libmruby_core.a ...
-
- 25 Dec, 2018 7 commits
-
-
Yukihiro "Matz" Matsumoto authored
This reverts commit e20d652f. This change cannot handle hidden dependency between `mruby-print` and `mruby-sprintf`; ref #4202
-
Yukihiro "Matz" Matsumoto authored
Fix `$rake_root_fiber` checking
-
Yukihiro "Matz" Matsumoto authored
Simplify full-core.gembox
-
KOBAYASHI Shuji authored
Dependencies order is auto detected.
-
Yukihiro "Matz" Matsumoto authored
mruby-bin-mruby: Add test dependency.
-
KOBAYASHI Shuji authored
`Kernel#p` etc are used.
-
- 24 Dec, 2018 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Refine description for rake test tasks.
-
KOBAYASHI Shuji authored
Before: $ rake -T test rake test_test # run all mruby tests After: $ rake -T test rake test # run all mruby tests
-
- 23 Dec, 2018 7 commits
-
-
Yukihiro "Matz" Matsumoto authored
Suppress a struct initializer warning
-
Yukihiro "Matz" Matsumoto authored
Suppress missing macro warns
-
dearblue authored
-
dearblue authored
-
dearblue authored
-
dearblue authored
-
KOBAYASHI Shuji authored
Suppress a compiler (clang) warning bellow: src/vm.c:104:38: warning: suggest braces around initialization of subobject [-Wmissing-braces] const mrb_value mrb_value_zero = { 0 }; ^ {}
-
- 22 Dec, 2018 8 commits
-
-
Yukihiro "Matz" Matsumoto authored
Append cflags for undefined macro
-
Yukihiro "Matz" Matsumoto authored
mirb: drop dependency on mruby-print in a test
-
Yukihiro "Matz" Matsumoto authored
Fix byte order
-
dearblue authored
-
dearblue authored
-
dearblue authored
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Fix undefined variable is using
-
- 21 Dec, 2018 7 commits
-
-
dearblue authored
-
Yukihiro "Matz" Matsumoto authored
-
Tatsuhiko Kubo authored
-
Tatsuhiko Kubo authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
`cpp` does not raise error on undefined macro access in condition.
-
Yukihiro "Matz" Matsumoto authored
-
- 20 Dec, 2018 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
You had to define this macro on big endian platforms, but it is very error-prone. So define the macro automatically if possible.
-
Yukihiro "Matz" Matsumoto authored
The `MRB_ENDIAN_BIG` macro is originally used for `NaN` boxing. We cannot assume it is defined on every big endian platform (#4190 is the case). So instead of relying on untrusted `MRB_ENDIAN_BIG`, we use `BYTE_ORDER` macro with a fallback function to check endian in runtime.
-
Yukihiro "Matz" Matsumoto authored
-
- 19 Dec, 2018 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Fix parenthesis for macros
-