- 25 Dec, 2018 3 commits
-
-
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 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix parenthesis for macros
-
Yukihiro "Matz" Matsumoto authored
Android bionic defines `TIME_UTC` but does not provide `timespec_get`.
-
- 18 Dec, 2018 2 commits
- 17 Dec, 2018 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
Make mrb_ary_clear() function callable from C again
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
We have removed implicit conversion to strings using `to_int`. But some users still using `to_int` as a typical integer method, i.e. they do string check by code like: `obj.respond_to?(:to_int)`. So we have recovered the method.
-
Yukihiro "Matz" Matsumoto authored
We have removed implicit conversion to strings using `to_str`. But some people still using `to_str` as a typical string method, i.e. they do string check by code like: `obj.respond_to?(:to_str)`. So we have recovered the method.
-
Yukihiro "Matz" Matsumoto authored
Add `mrb_hash_size()` function
-