sassc-ruby icon indicating copy to clipboard operation
sassc-ruby copied to clipboard

clang -march not supported on arm x64

Open fagci opened this issue 6 years ago • 8 comments

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 avatar Aug 29 '19 19:08 fagci

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

fagci avatar Sep 12 '19 23:09 fagci

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

Matt07211 avatar Oct 04 '19 06:10 Matt07211

nope...

fagci avatar Oct 05 '19 18:10 fagci

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

afstanton avatar Nov 14 '19 02:11 afstanton

Having same issue

Hax4us avatar Jun 04 '20 12:06 Hax4us

This worked for me:

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

over avatar Jan 29 '21 15:01 over

This worked for me:

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

Worked for me, thanks :)

LogaJ avatar Jan 30 '21 19:01 LogaJ

if working with bundler, you can run

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

russell avatar Feb 15 '22 16:02 russell