sass / sassc-ruby

Use libsass with Ruby!
MIT License
367 stars 156 forks source link

clang -march not supported on arm x64 #150

Open fagci opened 4 years ago

fagci commented 4 years ago

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

fagci commented 4 years ago

Solution not works as expected, because after run I got cannot locate symbol "_ZTVN10__cxxabiv117__class_type_infoE" error. Same with -mcpu=native.

Matt07211 commented 4 years ago

Currently also encountering this error, have you had any luck since your last message?

fagci commented 4 years ago

nope...

afstanton commented 4 years ago

This might help: https://stackoverflow.com/questions/35446440/getting-three-346-cannot-locate-for-ztvn10-cxxabiv-symbols

Hax4us commented 4 years ago

Having same issue

over commented 3 years ago

This worked for me:

gem install sassc --version=2.2.1 -- --disable-march-tune-native

LogaJ commented 3 years ago

This worked for me:

gem install sassc --version=2.2.1 -- --disable-march-tune-native

Worked for me, thanks :)

russell commented 2 years ago

if working with bundler, you can run

bundle config --global build.sassc --disable-march-tune-native