Skip to content

Commit f26f2a1

Browse files
authored
Do not build precompiled gems for Linux
We can't target a particular libc with RubyGems and many users aren't aware of this (#141).
1 parent 84e63a8 commit f26f2a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Rake::ExtensionTask.new('libsass', gem_spec) do |ext|
1818
ext.ext_dir = 'ext'
1919
ext.lib_dir = 'lib/sassc'
2020
ext.cross_compile = true
21-
ext.cross_platform = %w[x86-mingw32 x64-mingw32 x86-linux x86_64-linux]
21+
ext.cross_platform = %w[x86-mingw32 x64-mingw32]
2222

2323
# Link C++ stdlib statically when building binary gems.
2424
ext.cross_config_options << '--enable-static-stdlib'

0 commit comments

Comments
 (0)