From ed962c9155b17e28dd8d858c7f27aeb8ad55886c Mon Sep 17 00:00:00 2001 From: Takuro Ashie Date: Tue, 1 Feb 2022 23:46:30 +0900 Subject: [PATCH] Build x64-mingw-ucrt gem RubyInstaller 3.1 has switched C-Runtime to UCRT so that RUBY_PLATFORM has been changed to `x64-mingw-ucrt`: https://rubyinstaller.org/2021/12/31/rubyinstaller-3.1.0-1-released.html Signed-off-by: Takuro Ashie --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 82a1a53541..1da449b36b 100755 --- a/Rakefile +++ b/Rakefile @@ -14,7 +14,7 @@ namespace :build do desc 'Build gems for all platforms' task :all do Bundler.with_clean_env do - %w[ruby x86-mingw32 x64-mingw32].each do |name| + %w[ruby x86-mingw32 x64-mingw32 x64-mingw-ucrt].each do |name| ENV['GEM_BUILD_FAKE_PLATFORM'] = name Rake::Task["build"].execute end