summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-03-05visualcpp toolchain: change compiler/linker flagscremno
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-05error.h: add extern "C" for C++cremno
2014-03-06fix and add test for Proc#source_locationtake_cheeze
2014-03-06Merge pull request #1814 from cremno/__file__-windows-pathsYukihiro "Matz" Matsumoto
__FILE__ test: add support for \ as separator
2014-03-06Merge pull request #1812 from cremno/time-3Yukihiro "Matz" Matsumoto
mruby-time: add gettimeofday(2) for Windows
2014-03-06Merge pull request #1813 from cremno/time-1Yukihiro "Matz" Matsumoto
mruby-time: various smaller changes
2014-03-05__FILE__ test: add support for \ as separatorcremno
2014-03-05mruby-time: add gettimeofday(2) for Windowscremno
2014-03-05mruby-time: fix indentation in mrb_time_asctimecremno
2014-03-05mruby-time: store timezone name directlycremno
2014-03-05mruby-time: timezone_names should be constcremno
2014-03-05mruby-time: store strings directly instead of pointers to themcremno
2014-03-05mruby-time: mrb_time_type should be constcremno
2014-03-05mruby-time: fix two tiny typos in commentscremno
2014-03-05mruby-time: rearrange header ordercremno
2014-03-05mruby-time: remove trailing whitespacecremno
2014-03-06Merge pull request #1811 from takkaw/refactor_mirbYukihiro "Matz" Matsumoto
small refactor in mirb
2014-03-05small refactortakkaw
2014-03-05Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-05use mrb_int instead of size_t since string length is represented by mrb_int; ↵Yukihiro "Matz" Matsumoto
close #1810
2014-03-05Merge pull request #1809 from matsumoto-r/change_mruby_libs_flagYukihiro "Matz" Matsumoto
Change the position of -L option from MRUBY_LIBS to MRUBY_LDFLAGS
2014-03-05Merge pull request #1808 from cubicdaiya/issues/unused_variableYukihiro "Matz" Matsumoto
remove unused variable
2014-03-05Change the position of -L option from MRUBY_LIBS to MRUBY_LDFLAGSMATSUMOTO Ryosuke
2014-03-05Merge pull request #1807 from tmash06/fix_exit_status_codeYukihiro "Matz" Matsumoto
fix mruby command returning EXIT_SUCCESS when program file can't be opened.
2014-03-05remove unused variablecubicdaiya
GLOBAL_RAND_SEED_KEY is no longer used.
2014-03-05fix mruby command returning EXIT_SUCCESS when program file can't beTatsuya Matsumoto
opened.
2014-03-05Merge pull request #1806 from tmash06/fix_exit_method_aspec_settingYukihiro "Matz" Matsumoto
fix argument spec setting of Kernel.exit method.
2014-03-05fix argument spec setting of Kernel.exit method.Tatsuya Matsumoto
this method requires 1 optional argument.
2014-03-05Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-05should check crossing C boudary from resumeYukihiro "Matz" Matsumoto
2014-03-05Merge pull request #1805 from take-cheeze/existing_includeYukihiro "Matz" Matsumoto
Add existing include/ directory only.
2014-03-05Merge pull request #1804 from mattn/fix-quoteYukihiro "Matz" Matsumoto
Fix #1803
2014-03-05add existing include/ directory onlytake_cheeze
2014-03-05Fix #1803mattn
2014-03-05s/\\"/"/g in mruby-configmattn
2014-03-05Merge pull request #1801 from mattn/mruby-configYukihiro "Matz" Matsumoto
Add mruby-bin-mruby-config
2014-03-05Merge pull request #1802 from tmash06/fix_syntax_check_no_execYukihiro "Matz" Matsumoto
mruby command should not execute program on "syntax only option(-c)".
2014-03-05Merge pull request #1800 from tmash06/fix_indentYukihiro "Matz" Matsumoto
fix indent.
2014-03-05Merge pull request #1799 from cubicdaiya/issues/off_by_one_error2Yukihiro "Matz" Matsumoto
fix off-by-one error in attrsym
2014-03-05Don't echo empty string. (Remove workaround for windows)mattn
2014-03-05chmod 755mattn
2014-03-05mruby command should not execute program on "syntax only option(-c)".Tatsuya Matsumoto
2014-03-05Add mruby-bin-mruby-configmattn
2014-03-05fix indent.Tatsuya Matsumoto
2014-03-05fix off-by-one error in attrsymcubicdaiya
The allocation size for null-terminated character is lacking. In actual, it is no problem in most case because codegen_palloc allocates more a memory size than required size.
2014-03-05Merge pull request #1797 from take-cheeze/doc_updateYukihiro "Matz" Matsumoto
Add notes about new features.
2014-03-05Merge pull request #1796 from mattn/fix_1793Yukihiro "Matz" Matsumoto
Fix #1793
2014-03-05fix typotake_cheeze
2014-03-05update compilation notestake_cheeze
2014-03-04Fix #1793mattn