From 8516b06259d262c9f690cc69273d57ef93e00aa6 Mon Sep 17 00:00:00 2001 From: Johnny Shields Date: Fri, 24 Jun 2022 09:10:28 +0900 Subject: [PATCH] Support Windows on Ruby 3.1 (x64-mingw-ucrt) --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index d75e653d..509c7029 100644 --- a/Rakefile +++ b/Rakefile @@ -18,7 +18,7 @@ Rake::ExtensionTask.new('libsass', gem_spec) do |ext| ext.ext_dir = 'ext' ext.lib_dir = 'lib/sassc' ext.cross_compile = true - ext.cross_platform = %w[x86-mingw32 x64-mingw32] + ext.cross_platform = %w[x86-mingw32 x64-mingw32 x64-mingw-ucrt] # Link C++ stdlib statically when building binary gems. ext.cross_config_options << '--enable-static-stdlib'