ish-app / ish

Linux shell for iOS
https://ish.app
Other
16.33k stars 855 forks source link

missing runtime libclang_rt.builtins-i386.a when 'clang --rtlib=compiler-rt' #2310

Open vareille opened 6 months ago

vareille commented 6 months ago

error: cannot open /usr/lib/clang/11.1.0/lib/linux/libclang_rt.builtins-i386.a: No such file or directory

strangely 'apk add compiler-rt' doesn't provide the file (or maybe not at the right place)

vareille commented 6 months ago

finally I've created the file myself:

cd /usr/lib/clang/11.1.0/lib/linux
ar -rs libclang_rt.builtins-i386.a clang_rt.crtbegin-i386.o clang_rt.crtend-i386.o

and it works !