From cd5f1cce8988f41d05add38596ec84185a0dcf41 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 6 Mar 2024 09:20:41 +0100 Subject: [PATCH] fix the call to the llvm ir => .a --- debian/llvm-compile-lto-elf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/llvm-compile-lto-elf.sh b/debian/llvm-compile-lto-elf.sh index f652d980..63a19e29 100644 --- a/debian/llvm-compile-lto-elf.sh +++ b/debian/llvm-compile-lto-elf.sh @@ -65,4 +65,4 @@ export -f check_convert_bitcode # Deduplicate by device:inode to avoid processing hardlinks in parallel. find "$P_TO_LLVM/debian/" -type f -name "*.[ao]" -printf "%D:%i %p\n" | \ awk '!seen[$1]++' | cut -d" " -f2- | \ - xargs -d"\n" -r -n1 -P$NCPUS sh -c "check_convert_bitcode \$@ $CLANG_FLAGS" ARG0 + xargs -d"\n" -r -n1 -P$NCPUS bash -c "check_convert_bitcode \$@ $CLANG_FLAGS" ARG0