Skip to content
This repository has been archived by the owner on Nov 21, 2018. It is now read-only.

Add custom toolchains for powerpc* and s390x #149

Merged
Merged
Prev Previous commit
Next Next commit
Update LLVM URLs to releases.llvm.org
  • Loading branch information
cuviper committed Jan 19, 2017
commit 1d3d08a6d107f41f3cb3152f7486304c7b4ceea8
4 changes: 2 additions & 2 deletions slaves/linux-cross/build-libunwind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ set -ex
# To build MUSL targets we're going to need a libunwind lying around, so acquire that
# here and build it.
if [ ! -d "llvm-3.8.0.src" ]; then
curl http://llvm.org/releases/3.8.0/llvm-3.8.0.src.tar.xz | tar xJf -
curl http://releases.llvm.org/3.8.0/llvm-3.8.0.src.tar.xz | tar xJf -
fi

if [ ! -d "libunwind-3.8.0.src" ]; then
curl http://llvm.org/releases/3.8.0/libunwind-3.8.0.src.tar.xz | tar xJf -
curl http://releases.llvm.org/3.8.0/libunwind-3.8.0.src.tar.xz | tar xJf -
fi

rm -rf libunwind-build
Expand Down
4 changes: 2 additions & 2 deletions slaves/linux/build-musl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ cd ..

# To build MUSL we're going to need a libunwind lying around, so acquire that
# here and build it.
curl http://llvm.org/releases/3.7.0/llvm-3.7.0.src.tar.xz | tar xJf -
curl http://llvm.org/releases/3.7.0/libunwind-3.7.0.src.tar.xz | tar xJf -
curl http://releases.llvm.org/3.7.0/llvm-3.7.0.src.tar.xz | tar xJf -
curl http://releases.llvm.org/3.7.0/libunwind-3.7.0.src.tar.xz | tar xJf -
mkdir libunwind-build
cd libunwind-build
# for x86_64
Expand Down