| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-23 | support custom build_dir in CrossBuild | take_cheeze | |
| 2014-02-23 | make mruby build directory customizable | take_cheeze | |
| 2014-02-23 | Add warning for C89-style variable declarations | bggd | |
| 2014-02-10 | resolve conflict in travis_config.rb | Yukihiro "Matz" Matsumoto | |
| 2014-01-07 | remove superfluous includes | cremno | |
| - reduce compile time by a little bit (full-core: ~0.7s for me) - thanks to 'include-what-you-use' for some help - include Standard C header files before any other (coding style) | |||
| 2014-01-05 | Merge pull request #1643 from take-cheeze/remove_unnecessary_depedency | Yukihiro "Matz" Matsumoto | |
| Reduce unnecessary mrbgems full test rebuild. | |||
| 2014-01-02 | fix some warnings emitted by 'ruby -w' | cremno | |
| - File.exists? is deprecated since 2.1.0 - tasks/mruby_build_commands.rake:268: ambiguous argument | |||
| 2013-12-27 | remove unnecessary depedency in test build | take_cheeze | |
| 2013-11-26 | use mrbc of current build in non cross build | take_cheeze | |
| 2013-11-25 | add CFLAGS as a fallback from CXXFLAGS; ref #1594 | Yukihiro "Matz" Matsumoto | |
| 2013-11-25 | Merge branch 'modify_toolchains_gcc' of ↵ | Yukihiro "Matz" Matsumoto | |
| https://github.com/crimsonwoods/mruby into crimsonwoods-modify_toolchains_gcc | |||
| 2013-11-24 | add enable_debug method to MRuby::Build and build debug version in travis-ci | take_cheeze | |
| 2013-11-23 | Modify referenced environment variables. | crimsonwoods | |
| 'CXX' is used instead of 'CC'. 'CXXFLAGS' is used instead of 'CFLAGS'. | |||
| 2013-11-23 | Modify build script for gcc. | crimsonwoods | |
| Newly added compile option '-std=gnu99' is not necessary for C++. And 'g++' should be used to compile for C++ source codes, I think. | |||
| 2013-11-22 | Automatically detect toolchain if it is visualcpp, and hence we drop ↵ | Per Lundberg | |
| vs2010.rake altogether - it’s no longer needed. | |||
| 2013-11-18 | GCC: add -std=gnu99 to CFLAGS | cremno | |
| - this change prevents issues like #1539 in the future - Clang's default is already gnu99 but GCC's is gnu89 - mruby is C99 (+ GNU exts), not C89 (+ GNU exts) | |||
| 2013-11-16 | add conf.enable_bintest and run_bintest | fleuria | |
| 2013-10-01 | Fix for caller_dir relative gems | William Light | |
| 2013-10-01 | Implement gembox-relative gemdir paths | William Light | |
| In the case where a relative path is specified to a gembox from build_config.rb, it was previously tricky to specify relative gem paths from inside that gembox. For example, consider a project in which mruby is checked out as a submodule in the project root: +- project_root | +- mruby/ | | | +- build_config.rb | | | +- ... | +- my_gembox/ | +- my_gembox.gembox | +- my_gem/ | +- mrbgem.rake | +- ... If build_config.rb refers to my_gembox with a relative path, it's difficult for my_gembox to then refer to my_gem. With this proposed change, my_gembox.gembox can look like this: MRuby::GemBox.new do |conf| conf.gem "my_gem" end | |||
| 2013-09-23 | eliminate use of traditional intern API (mrb_intern()) completely | Yuichi Nishiwaki | |
| 2013-08-26 | Merge pull request #1490 from take-cheeze/cxx_extension | Yukihiro "Matz" Matsumoto | |
| support file extension .cpp/.cxx in mrbgem and tool | |||
| 2013-08-26 | support file extension .cpp/.cxx in mrbgem and tool | take_cheeze | |
| 2013-08-19 | add x86_64-darwin host platform. | taku toyama | |
| 2013-08-04 | Added support for custom gem clone directories when using git | Ryan Scott | |
| 2013-07-27 | replace "if not" to "unless" | Yukihiro "Matz" Matsumoto | |
| 2013-07-25 | if mrbc.run fail, abort rake | fleuria | |
| 2013-07-24 | Fix mrbc error for space included path | kyab | |
| 2013-07-23 | display multiple authors better. | Tomoyuki Sahara | |
| Before: Copyright (c) 2013 ["a", "b"] After: Copyright (c) 2013 a, b | |||
| 2013-07-21 | Merge pull request #1395 from carsonmcdonald/fixdepcheck | Yukihiro "Matz" Matsumoto | |
| Fail if dependency isn't found | |||
| 2013-07-20 | Fail if dependency isn't found | Carson McDonald | |
| 2013-07-20 | Improve Android NDK toolchain support. | crimsonwoods | |
| Linux-x86_64 has not been supported now. This commit add Linux-x86_64 platform support. | |||
| 2013-07-15 | Allow programmers to specify build path manually | Xuejie "Rafael" Xiao | |
| 2013-07-08 | Fix the androideabi toolchain not matching host | Robert Rowe | |
| The included method of determining the host platform in the androideabi would not match to windows if RUBY_PLATFORM returned mingw, wince, or emx. As an added pre-caution, using a case statement with regexp matching will better determine the host platform since it won't be case sensitive and for windows is set to match more specifially than just "win". | |||
| 2013-07-04 | Add --pull_gems option to minirake | kyab | |
| 2013-06-15 | Remove extra separator in compile command | kyab | |
| 2013-05-26 | mruby error messages should be directed to stderr | Yukihiro "Matz" Matsumoto | |
| 2013-05-14 | mrbc to take multiple files, preserving debug information if -g given; close ↵ | Yukihiro "Matz" Matsumoto | |
| #1243 | |||
| 2013-05-13 | Allow mrbc command options to be changed | Carson McDonald | |
| 2013-05-13 | show a backtrace when when an error occurs on gem load; close #1243 | Yukihiro "Matz" Matsumoto | |
| 2013-05-11 | Change alghorithm to algorithm | Carson McDonald | |
| 2013-05-09 | Merge pull request #1242 from schmurfy/gem_version | Yukihiro "Matz" Matsumoto | |
| consider gem version to be 0.0.0 unless specified | |||
| 2013-05-09 | Merge pull request #1245 from NARKOZ/fix-warnings | Yukihiro "Matz" Matsumoto | |
| remove unused variables | |||
| 2013-05-09 | remove unused variables | Nihad Abbasov | |
| 2013-05-09 | fix regexp warning: character class has duplicated range | Nihad Abbasov | |
| 2013-05-09 | consider empty version requirements as >= 0.0.0 | Julien Ammous | |
| 2013-05-09 | consider gem version to be 0.0.0 unless specified | Julien Ammous | |
| 2013-05-09 | Todo is actually already finished :-) | Daniel Bovensiepen | |
| 2013-05-09 | Implement GEM dependency check | Daniel Bovensiepen | |
| 2013-05-04 | Merge branch 'bovi-gem-duplication' | Yukihiro "Matz" Matsumoto | |
| 2013-05-04 | remove explicit check to honor duck typing | Yukihiro "Matz" Matsumoto | |
