]> git.lizzy.rs Git - rust.git/blobdiff - build.sh
Fix even more URLs
[rust.git] / build.sh
index 0578ee8526d7f7252efef5a4251239d47cefbd5e..f9a87e68a046a7f7c7960f5a1ee0858685886e17 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -1,25 +1,47 @@
 #!/bin/bash
+set -e
 
-cargo build || exit 1
+# Settings
+export CHANNEL="release"
+build_sysroot=1
+target_dir='build'
+while [[ $# != 0 ]]; do
+    case $1 in
+        "--debug")
+            export CHANNEL="debug"
+            ;;
+        "--without-sysroot")
+            build_sysroot=0
+            ;;
+        "--target-dir")
+            target_dir=$2
+            shift
+            ;;
+        *)
+            echo "Unknown flag '$1'"
+            echo "Usage: ./build.sh [--debug] [--without-sysroot] [--target-dir DIR]"
+            ;;
+    esac
+    shift
+done
 
-cd examples/
-
-unamestr=`uname`
-if [[ "$unamestr" == 'Linux' ]]; then
-   dylib_ext='so'
-elif [[ "$unamestr" == 'Darwin' ]]; then
-   dylib_ext='dylib'
+# Build cg_clif
+export RUSTFLAGS="-Zrun_dsymutil=no"
+if [[ "$CHANNEL" == "release" ]]; then
+    cargo build --release
 else
-   echo "Unsupported os"
-   exit 1
+    cargo build
 fi
 
-RUSTC="rustc -Zcodegen-backend=$(pwd)/../target/debug/librustc_codegen_cranelift.$dylib_ext -L crate=. --crate-type lib -Og"
-
-$RUSTC mini_core.rs --crate-name mini_core &&
-$RUSTC example.rs &&
-$RUSTC mini_core_hello_world.rs &&
+rm -rf $target_dir
+mkdir $target_dir
+cp -a target/$CHANNEL/cg_clif{,_build_sysroot} target/$CHANNEL/*rustc_codegen_cranelift* $target_dir/
+cp -a rust-toolchain scripts/config.sh scripts/cargo.sh $target_dir
 
-$RUSTC ../target/libcore/src/libcore/lib.rs --color=always 2>&1 | (head -n 10; echo "===="; tail -n 1000)
-cat ../target/log.txt | sort | uniq -c | grep -v "rval unsize move" | grep -v "rval len"
-rm *.rlib ../target/log.txt
+if [[ "$build_sysroot" == "1" ]]; then
+    echo "[BUILD] sysroot"
+    export CG_CLIF_INCR_CACHE_DISABLED=1
+    dir=$(pwd)
+    cd $target_dir
+    time $dir/build_sysroot/build_sysroot.sh
+fi