diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-11-25 19:41:15 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-11-25 19:41:15 -0800 |
| commit | 0f9d287ba487f6d39f5cf389bbdcaf86eb88ec79 (patch) | |
| tree | b79c988058f213936955c9c58e529efd96666aa7 /tasks | |
| parent | f5bd87b9e6d0d8a84cf866b4847c1416e4f5c622 (diff) | |
| parent | ccc22d7b099305fedb46e6b988199e130489558f (diff) | |
| download | mruby-0f9d287ba487f6d39f5cf389bbdcaf86eb88ec79.tar.gz mruby-0f9d287ba487f6d39f5cf389bbdcaf86eb88ec79.zip | |
Merge pull request #1597 from take-cheeze/mrbcfile
debug record size assertion fail
Diffstat (limited to 'tasks')
| -rw-r--r-- | tasks/mruby_build.rake | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tasks/mruby_build.rake b/tasks/mruby_build.rake index acaabfa81..8f5881f3b 100644 --- a/tasks/mruby_build.rake +++ b/tasks/mruby_build.rake @@ -103,7 +103,7 @@ module MRuby end def mrbcfile - MRuby.targets['host'].exefile("#{MRuby.targets['host'].build_dir}/bin/mrbc") + MRuby.targets[@name].exefile("#{MRuby.targets[@name].build_dir}/bin/mrbc") end def compilers @@ -204,6 +204,10 @@ module MRuby super end + def mrbcfile + MRuby.targets['host'].exefile("#{MRuby.targets['host'].build_dir}/bin/mrbc") + end + def run_test mrbtest = exefile("#{build_dir}/test/mrbtest") if (@test_runner.command == nil) |
