rust/build.sh

61 lines
1.4 KiB
Bash
Raw Normal View History

2018-08-10 19:09:21 +02:00
#!/bin/bash
2018-08-31 19:50:26 +02:00
set -e
2018-06-17 18:05:11 +02:00
unamestr=`uname`
if [[ "$unamestr" == 'Linux' ]]; then
dylib_ext='so'
elif [[ "$unamestr" == 'Darwin' ]]; then
dylib_ext='dylib'
else
echo "Unsupported os"
exit 1
fi
2018-08-31 19:50:26 +02:00
build_example_bin() {
$RUSTC $2 --crate-name $1 --crate-type bin
2018-10-20 15:19:07 +02:00
pushd target/out
gcc $1 libmini_core.rlib -o $1_bin
2018-10-20 15:19:07 +02:00
sh -c ./$1_bin || true
popd
2018-08-31 19:50:26 +02:00
}
if [[ "$1" == "--release" ]]; then
channel='release'
cargo build --release
else
channel='debug'
cargo build
fi
2018-10-08 19:40:06 +02:00
export RUSTFLAGS='-Zalways-encode-mir -Cpanic=abort -Zcodegen-backend='$(pwd)'/target/'$channel'/librustc_codegen_cranelift.'$dylib_ext
2018-11-03 15:04:27 +01:00
export XARGO_RUST_SRC=$(pwd)'/target/libcore/src'
2018-10-08 19:40:06 +02:00
RUSTC="rustc $RUSTFLAGS -L crate=target/out --out-dir target/out"
2018-08-31 19:50:26 +02:00
rm -r target/out || true
2018-08-15 16:17:59 +02:00
mkdir -p target/out/clif
2018-09-09 14:45:23 +02:00
echo "[BUILD] mini_core"
2018-11-02 20:09:52 +01:00
$RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib
2018-11-02 20:09:52 +01:00
echo "[BUILD] example"
$RUSTC example/example.rs --crate-type lib
2018-09-09 14:45:23 +02:00
echo "[JIT] mini_core_hello_world"
2018-11-02 20:09:52 +01:00
SHOULD_RUN=1 $RUSTC --crate-type bin example/mini_core_hello_world.rs --cfg jit
2018-09-09 14:45:23 +02:00
echo "[AOT] mini_core_hello_world"
build_example_bin mini_core_hello_world example/mini_core_hello_world.rs
2018-08-15 15:23:28 +02:00
2018-09-09 14:45:23 +02:00
echo "[BUILD] core"
2018-08-31 19:50:26 +02:00
time $RUSTC target/libcore/src/libcore/lib.rs --crate-type lib --crate-name core -Cincremental=target/incremental_core
2018-10-08 19:40:06 +02:00
pushd xargo
rm -r ~/.xargo/HOST || true
2018-11-03 15:04:27 +01:00
rm -r target || true
2018-10-23 10:57:09 +02:00
time xargo build --color always
2018-10-08 19:40:06 +02:00
popd
2018-08-23 11:03:43 +02:00
cat target/out/log.txt | sort | uniq -c