]> git.lizzy.rs Git - rust.git/blobdiff - src/ci/docker/scripts/musl-toolchain.sh
Drop copyright notice from musl-toolchain
[rust.git] / src / ci / docker / scripts / musl-toolchain.sh
index 25781c747493a130095b7955e57d1fa8a0caed65..00b6a113da10519622aa36795ff36b38c7afd875 100644 (file)
@@ -1,13 +1,3 @@
-# Copyright 2016 The Rust Project Developers. See the COPYRIGHT
-# file at the top-level directory of this distribution and at
-# http://rust-lang.org/COPYRIGHT.
-#
-# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-# option. This file may not be copied, modified, or distributed
-# except according to those terms.
-
 set -ex
 
 hide_output() {
@@ -41,7 +31,7 @@ cd musl-cross-make
 hide_output make -j$(nproc) TARGET=$TARGET
 hide_output make install TARGET=$TARGET OUTPUT=$OUTPUT
 
-cd ..
+cd -
 
 # Make musl binaries executable
 
@@ -52,7 +42,7 @@ echo $OUTPUT/$TARGET/lib >> /etc/ld-musl-$ARCH.path
 export CC=$TARGET-gcc
 export CXX=$TARGET-g++
 
-LLVM=60
+LLVM=70
 
 # may have been downloaded in a previous run
 if [ ! -d libunwind-release_$LLVM ]; then
@@ -72,5 +62,5 @@ cmake ../libunwind-release_$LLVM \
 
 hide_output make -j$(nproc)
 cp lib/libunwind.a $OUTPUT/$TARGET/lib
-cd ../ && rm -rf libunwind-build
+cd - && rm -rf libunwind-build