]> git.lizzy.rs Git - rust.git/blobdiff - build.sh
Fix even more URLs
[rust.git] / build.sh
index daf1c325dfa5954892d1ab53f7b3c673c456eead..f9a87e68a046a7f7c7960f5a1ee0858685886e17 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -1,66 +1,47 @@
 #!/bin/bash
-
 set -e
 
-unamestr=`uname`
-if [[ "$unamestr" == 'Linux' ]]; then
-   dylib_ext='so'
-elif [[ "$unamestr" == 'Darwin' ]]; then
-   dylib_ext='dylib'
-else
-   echo "Unsupported os"
-   exit 1
-fi
-
-build_lib() {
-    $RUSTC $2 --crate-name $1 --crate-type lib
-}
-
-run_bin() {
-    SHOULD_RUN=1 $RUSTC $@ --crate-type bin
-}
-
-build_example_bin() {
-    $RUSTC $2 --crate-name $1 --crate-type bin
-
-    pushd target/out
-    gcc $1 libmini_core.rlib -o $1_bin
-    sh -c ./$1_bin || true
-    popd
-}
-
-if [[ "$1" == "--release" ]]; then
-    channel='release'
+# 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
-    channel='debug'
     cargo build
 fi
 
-export RUSTFLAGS='-Zalways-encode-mir -Cpanic=abort -Zcodegen-backend='$(pwd)'/target/'$channel'/librustc_codegen_cranelift.'$dylib_ext
-RUSTC="rustc $RUSTFLAGS -L crate=target/out --out-dir target/out"
-
-rm -r target/out || true
-mkdir -p target/out/clif
-
-echo "[BUILD] mini_core"
-build_lib mini_core example/mini_core.rs
-
-$RUSTC example/example.rs --crate-type lib
-
-echo "[JIT] mini_core_hello_world"
-run_bin example/mini_core_hello_world.rs --cfg jit
-
-echo "[AOT] mini_core_hello_world"
-build_example_bin mini_core_hello_world example/mini_core_hello_world.rs
-
-echo "[BUILD] core"
-time $RUSTC target/libcore/src/libcore/lib.rs --crate-type lib --crate-name core -Cincremental=target/incremental_core
-
-pushd xargo
-rm -r ~/.xargo/HOST || true
-export XARGO_RUST_SRC=$(pwd)'/../target/libcore/src'
-time xargo build --color always
-popd
-
-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