diff options
-rwxr-xr-x | 3.8/update.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/3.8/update.sh b/3.8/update.sh index 9cae565f..c16ef2d3 100755 --- a/3.8/update.sh +++ b/3.8/update.sh @@ -27,6 +27,10 @@ echo Copying libc++.so cp -a ${ANDROID_HOST_OUT}/lib/libc++.so lib/ cp -a ${ANDROID_HOST_OUT}/lib64/libc++.so lib64/ +# Copy LLVMgold.so and dependents +cp -a ${ANDROID_HOST_OUT}/lib64/LLVMgold.so lib/ +cp -a ${ANDROID_HOST_OUT}/lib64/libLLVM.so lib64/ + # Copy header files #rm -rf lib/clang/*/include/* rm -rf lib/clang/* @@ -78,4 +82,3 @@ sh update-sanitizers.sh cd lib/clang/ ln -s ${MAJOR}.${MINOR} ${MAJOR}.${MINOR}.${PATCH} cd - - |