From 55c670819366e05e21b9a95974b11e4e2c8e82c2 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`. 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