ish
ish copied to clipboard
missing runtime libclang_rt.builtins-i386.a when 'clang --rtlib=compiler-rt'
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)
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 !