From 104f9f22b0e50d15be6285a39d1455458ac97244 Mon Sep 17 00:00:00 2001 From: Ryan Boland Date: Aug 27 2019 12:54:04 +0000 Subject: Merge pull request #145 from glebm/patch-3 Do not build precompiled gems for Linux --- diff --git a/Rakefile b/Rakefile index dcacd38..85c7dff 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 x86-linux x86_64-linux] + ext.cross_platform = %w[x86-mingw32 x64-mingw32] # Link C++ stdlib statically when building binary gems. ext.cross_config_options << '--enable-static-stdlib'