We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8378681 commit aadad46Copy full SHA for aadad46
ext/extconf.rb
@@ -58,6 +58,12 @@
58
$srcs = Dir['libsass/src/**/*.{c,cpp}']
59
end
60
61
+# libsass.bundle malformed object (unknown load command 7) on Mac OS X
62
+# See https://github.com/sass/sassc-ruby/pull/174
63
+if enable_config('strip', RbConfig::CONFIG['host_os'].downcase !~ /darwin/)
64
+ MakeMakefile::LINK_SO << "\nstrip -x $@"
65
+end
66
+
67
# Don't link libruby.
68
$LIBRUBYARG = nil
69
0 commit comments