summaryrefslogtreecommitdiff
path: root/tool/missing-baseruby.bat
AgeCommit message (Collapse)Author
2024-08-21[Bug #20687] Check if base ruby provides necessary librariesNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/11419
2024-03-31Manage required baseruby version in one placeNobuyoshi Nakada
Add a Ruby script mode to `tool/missing-baseruby.bat` that checks if `RUBY_VERSION` meets the required version. This will enable similar checks on mswin as well.
2024-02-20Fix the version in missing-baserubyTakashi Kokubun
2024-01-18Old sh does not allow `:` in function names [ci skip]Nobuyoshi Nakada
2024-01-18Preserve spaces in messages [ci skip]Nobuyoshi Nakada
2024-01-18Print error messages to the stderr [ci skip]Nobuyoshi Nakada
2024-01-18Add baseruby version messageKazuhiro NISHIYAMA
Because `--with-baseruby=/usr/bin/ruby` on macOS is Ruby 2.6, I was confused why `--with-baseruby` was ignored.
2023-12-19Add tool/missing-baseruby.bat, used when BASERUBY not availableJeremy Evans
Previously, the embedded semicolon in BASERUBY if BASERUBY is not available breaks tarball builds without BASERUBY when using OpenBSD make, due to the inability to escape MFLAGS correctly. This moves the same BASERUBY code into a separate file, avoiding the MFLAGS quoting issue. BASERUBY must be passed to build-ext because it is required by ripper since the introduction of lrama. Fixes [Bug #19683] Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>