sassc-ruby
sassc-ruby copied to clipboard
clang -march not supported on arm x64
Compiling with clang on android with termux, got error about unsupported option -march=native.
My temp solution here: https://mikhail-yudin.ru/blog/android/termux-resolve-compile-troubles
Solution not works as expected, because after run I got
cannot locate symbol "_ZTVN10__cxxabiv117__class_type_infoE" error. Same with -mcpu=native.
Currently also encountering this error, have you had any luck since your last message?
nope...
This might help: https://stackoverflow.com/questions/35446440/getting-three-346-cannot-locate-for-ztvn10-cxxabiv-symbols
Having same issue
This worked for me:
gem install sassc --version=2.2.1 -- --disable-march-tune-native
This worked for me:
gem install sassc --version=2.2.1 -- --disable-march-tune-native
Worked for me, thanks :)
if working with bundler, you can run
bundle config --global build.sassc --disable-march-tune-native