| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-02 | MSVC: treat implicit function decl. as error | cremno | |
| As equivalent to GCC's `-Werror-implicit-function-declaration`. | |||
| 2014-05-01 | Remove use of define_singleton_method. | take_cheeze | |
| 2014-05-01 | Implement header search for gcc and clang. | take_cheeze | |
| 2014-04-30 | remove trailing spaces | Nobuyoshi Nakada | |
| 2014-04-29 | Add doubling stack extend, as fix for #2016 | kyab | |
| 2014-04-23 | Implement default gem info to use when there is no depending gem is defined. | take_cheeze | |
| 2014-04-20 | Implement :checksum_hash mrbgem option. | Daniel Bovensiepen | |
| This allows to use a mgem with a specific checksum hash. The following modification were necessary to implement this function: - add run_checkout build command to use 'git checkout' - skip shallow copy in case checksum_hash is used - make 'master' the default branch if branch isn't defined | |||
| 2014-04-09 | Make bintest enabling like other `enable_xxx` methods. | take_cheeze | |
| 2014-04-08 | Add MRuby::Build#disable_cxx_exception to force C++ ABI disable. | take_cheeze | |
| 2014-04-07 | Fix C++ files detection for automatic C++ ABI enabling. | take_cheeze | |
| 2014-04-06 | Merge pull request #2019 from monaka/pr-add-macro-for-mrbgem-version | Yukihiro "Matz" Matsumoto | |
| Pass gem's version information to compilers. | |||
| 2014-04-06 | Pass gem's version information to compilers. | Masaki Muranaka | |
| 2014-04-05 | Fix 'make test' fail to build on Windows(MSVC) | kyab | |
| 2014-04-04 | Refactor MRuby::Gem::List#check. | take_cheeze | |
| * Create mrbgem table before dependencies check. * Topoligical sort gem list. * Check circular mrbgem dependency. | |||
| 2014-04-03 | Fix build fail for 'make test' with no mrbgems | kyab | |
| 2014-03-21 | use File#directory? instead of File#exist?; ref c2d8b0 | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | avoid Dir.exist? that is not available in Ruby1.8 | Yukihiro "Matz" Matsumoto | |
| 2014-03-17 | don't show version '0.0.0' in build summary since it's default version | take_cheeze | |
| 2014-03-17 | print gem summary in print_build_summary method | take_cheeze | |
| 2014-03-14 | fix compile error check of Mrbc command | take_cheeze | |
| 2014-03-12 | avoid mrb_string_value_cstr() to copy string between mrb_states in tests | Yukihiro "Matz" Matsumoto | |
| 2014-03-10 | reduce mrb_open calls in mrbgem test | take_cheeze | |
| 2014-03-09 | Add comments to notify files are auto generated. | Masaki Muranaka | |
| 2014-03-05 | visualcpp toolchain: change compiler/linker flags | cremno | |
| with these flags visualcpp should behave more like the gcc toolchain c: - produce debug information - optimize for speed instead of disabling optimization - use non-debug version of Microsoft's C library - remove unused and unnecessary macro definitions cxx: - separate C and C++ (#1594) - specify kind of exception handling (see warning C4530) linker: - produce debug information - disable incremental linking and re-enable optimizations | |||
| 2014-03-05 | Change the position of -L option from MRUBY_LIBS to MRUBY_LDFLAGS | MATSUMOTO Ryosuke | |
| 2014-03-05 | Merge pull request #1805 from take-cheeze/existing_include | Yukihiro "Matz" Matsumoto | |
| Add existing include/ directory only. | |||
| 2014-03-05 | add existing include/ directory only | take_cheeze | |
| 2014-03-05 | Fix #1803 | mattn | |
| 2014-03-05 | fix indent. | Tatsuya Matsumoto | |
| 2014-03-03 | run enabled gem's bintest only | take_cheeze | |
| 2014-03-02 | Add ssh protocol support for bitbucket. | Masaki Muranaka | |
| 2014-03-02 | use shallow clone in git gem | take_cheeze | |
| 2014-03-02 | use c++ compiler to link when c++ abi is enabled | take_cheeze | |
| 2014-03-02 | allow command like "ccache gcc" | take_cheeze | |
| 2014-03-01 | support c++ exception | take_cheeze | |
| 2014-02-27 | Merge pull request #1753 from take-cheeze/assert_rb | Yukihiro "Matz" Matsumoto | |
| Compile assert.rb once. | |||
| 2014-02-26 | compile assert.rb once | take_cheeze | |
| 2014-02-26 | Merge pull request #1747 from cubicdaiya/issues/use_mrb_intern_lit | Yukihiro "Matz" Matsumoto | |
| use mrb_intern_lit instead of mrb_intern_cstr for C string literals | |||
| 2014-02-26 | use mrb_intern_lit instead of mrb_intern_cstr for C string literals | cubicdaiya | |
| 2014-02-25 | specialize C++ compiler in clang toolchain | take_cheeze | |
| 2014-02-25 | Merge pull request #1732 from cho45/depend-build-config | Yukihiro "Matz" Matsumoto | |
| Always include build_config.rb to compile dependency. | |||
| 2014-02-24 | Always include build_config.rb to compile dependency. | cho45 | |
| build_config.rb modifies `cc.defines` (eg. `DISABLE_GEMS`) so files depending on such flags should be rebuilt. Ref. (Failing scenario): https://gist.github.com/cho45/9181191 | |||
| 2014-02-24 | remove -Werror=declaration-after-statement | bggd | |
| 2014-02-24 | Merge pull request #1727 from bggd/patch-2 | Yukihiro "Matz" Matsumoto | |
| Add warning for C89-style variable declarations | |||
| 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. | |||
