]> git.lizzy.rs Git - rust.git/blobdiff - build.sh
Fix even more URLs
[rust.git] / build.sh
index a3d31c6c7706bc232c0219afa4217d2e1b4a9acd..f9a87e68a046a7f7c7960f5a1ee0858685886e17 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -1,44 +1,47 @@
 #!/bin/bash
-
-cargo build || exit 1
-
-unamestr=`uname`
-if [[ "$unamestr" == 'Linux' ]]; then
-   dylib_ext='so'
-elif [[ "$unamestr" == 'Darwin' ]]; then
-   dylib_ext='dylib'
+set -e
+
+# 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
+
+# Build cg_clif
+export RUSTFLAGS="-Zrun_dsymutil=no"
+if [[ "$CHANNEL" == "release" ]]; then
+    cargo build --release
 else
-   echo "Unsupported os"
-   exit 1
+    cargo build
 fi
 
-extract_data() {
-    pushd target/out/
-    ar x $1 data.o &&
-    chmod +rw data.o &&
-    mv data.o $2
-    popd
-}
-
-RUSTC="rustc -Zcodegen-backend=$(pwd)/target/debug/librustc_codegen_cranelift.$dylib_ext -L crate=target/out --out-dir target/out"
-
-rm -r target/out
-mkdir -p target/out/mir
-mkdir -p target/out/clif
-
-SHOULD_CODEGEN=1 $RUSTC examples/mini_core.rs --crate-name mini_core --crate-type lib &&
-extract_data libmini_core.rlib mini_core.o &&
-
-$RUSTC examples/example.rs --crate-type lib &&
-
-# SimpleJIT is broken
-#SHOULD_RUN=1 $RUSTC examples/mini_core_hello_world.rs --crate-type bin &&
-
-$RUSTC examples/mini_core_hello_world.rs --crate-type bin &&
-extract_data mini_core_hello_world mini_core_hello_world.o &&
-
-gcc target/out/mini_core.o target/out/mini_core_hello_world.o -o target/out/mini_core_hello_world || exit 1
-./target/out/mini_core_hello_world
-
-$RUSTC target/libcore/src/libcore/lib.rs --color=always --crate-type lib -Cincremental=target/incremental 2>&1 | (head -n 20; echo "===="; tail -n 1000)
-cat target/out/log.txt | sort | uniq -c
+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
+
+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