We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cbb577 commit 17c2ab6Copy full SHA for 17c2ab6
ext/extconf.rb
@@ -25,7 +25,12 @@
25
$CXXFLAGS << ' -march=native -mtune=native'
26
end
27
28
-if enable_config('lto', true)
+# darwin nix clang doesn't support lto
29
+# disable -lto flag for darwin + nix
30
+# see: https://github.com/sass/sassc-ruby/issues/148
31
+enable_lto_by_default = (Gem::Platform.local.os == "darwin" && ENV['NIX_CC'].nil?)
32
+
33
+if enable_config('lto', enable_lto_by_default)
34
$CFLAGS << ' -flto'
35
$CXXFLAGS << ' -flto'
36
$LDFLAGS << ' -flto'
0 commit comments