As title above. Ran the following code on M1 MacBook Air 8/512: ``` Python import pycld2 as cld2 print("pycld2 version", cld2.__version__) the_text = "Is this working on M1 Mac?" _, _, _, the_lang = cld2.detect(the_text, returnVectors=True) print(the_text, "->", the_lang) ``` The output is: ``` (m1) $ python test_pycld2.py pycld2 version 0.41 Segmentation fault: 11 ```