- 02 Mar, 2018 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
The fix was proposed by https://hackerone.com/aerodudrizzt
-
- 17 Feb, 2018 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Add verbose flag to cross test runner too. [experimental]
-
- 16 Feb, 2018 1 commit
-
-
Takeshi Watanabe authored
-
- 13 Feb, 2018 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 12 Feb, 2018 8 commits
-
-
Yukihiro "Matz" Matsumoto authored
The issue (and the fix) reported by https://hackerone.com/aerodudrizzt
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Fix core dependencies resolving in dependencies gems.
-
Yukihiro "Matz" Matsumoto authored
Uncommented the Visual Studio version check
-
Yukihiro "Matz" Matsumoto authored
-
- 10 Feb, 2018 4 commits
-
-
Takeshi Watanabe authored
-
Yukihiro "Matz" Matsumoto authored
Otherwise, `{"a": 1}` will cause `SyntaxError`.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 09 Feb, 2018 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 03 Feb, 2018 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Depend mruby-io and mruby-pack in mruby core
-
MATSUMOTO, Ryosuke authored
-
- 02 Feb, 2018 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Fix possible memory access error.
-
Takeshi Watanabe authored
-
- 31 Jan, 2018 5 commits
-
-
Yukihiro "Matz" Matsumoto authored
include io.h on mingw
-
Yasuhiro Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Suggested by @mattn.
-
Yukihiro "Matz" Matsumoto authored
Shouldn't use tempnam
-
ksss authored
-
- 30 Jan, 2018 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
add File#mtime
-
Yasuhiro Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
mruby-time: support time_t is uint
-
- 29 Jan, 2018 1 commit
-
-
ken-mu authored
-
- 28 Jan, 2018 1 commit
-
-
ken-mu authored
-
- 25 Jan, 2018 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
It was default on Linux. Abandoned for 2 reasons: * some cross-platform compiler defines `__linux__` even on bare metal environment (RTL8196 (MIPS big endian soc) for example). * some compilers do not align functions pointers so that we need to specify `-falign-functions=n` (where n>1). It's not suitable for default configuration. By our measurement, `mrbtest` consumes 400KB less memory. So if your target machine is memory tight, add the following command-line options to `GCC` (unfortunately `clang` does not support `-falign-functions`). `-falign-functions=2 -DMRB_METHOD_TABLE_INLINE`
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 24 Jan, 2018 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Should be true for close_on_exec flag
-
Yukihiro "Matz" Matsumoto authored
When your target machine is big endian, specify as following in the `build_config.rb`: ```ruby MRuby::CrossBuild.new('32bit') do |conf| toolchain :gcc conf.big_endian end ```
-