Gleb Mazovetskiy

Results 244 comments of Gleb Mazovetskiy

I have the exact same CPU. One difference is that my amalgamation script puts everything into a cpp file (no header) but I don't imagine that would make much difference....

You can set `BUNDLE_BUILD__SASSC=--disable-march-tune-native` to disable `-march=native`

Version 2.1.0 comes with a pre-compiled library for Linux+glibc but the new version doesn't. This seems to be a bug (missing include) that's been fixed on libsass master but is...

@mgreter I don't have any msbuild / Windows experience. I've hand-coded these `.vcxproj` files based on MSDN tutorials, please take a look.

@xzyfer I don't seem have commit access! No big deal though, as I'd like all my PRs reviewed anyway, but it'd be nice to be able to set labels on...

Is there a way to target Windows + JRuby only? Won't the `-java` suffix also match on non-Windows?

@phiggins For your workaround to work, you need to use `prepend` instead of `include`: ```ruby # config/initializers/sassc.rb require 'sassc' SassC::Engine.prepend(Module.new do def precision super || 10 end end) ``` Also...

Do we still want to deal with non C++ 11 compilers in 2019?

I'm curious, why does Perl require such an old GCC version?