rust/build.sh

85 lines
1.7 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
extract_data() {
2018-08-15 15:23:28 +02:00
pushd target/out/
2018-08-31 19:50:26 +02:00
ar x $1 data.o
chmod +rw data.o
mv data.o $2
2018-08-15 15:23:28 +02:00
popd
}
2018-08-31 19:50:26 +02:00
link_and_run() {
target=$1
shift
pushd target/out
gcc $@ -o $target
2018-09-03 18:29:55 +02:00
sh -c ./$target || true
popd
2018-08-31 19:50:26 +02:00
}
build_lib() {
SHOULD_CODEGEN=1 $RUSTC $2 --crate-name $1 --crate-type lib
extract_data lib$1.rlib $1.o
}
2018-08-31 19:50:26 +02:00
run_bin() {
2018-09-09 14:45:23 +02:00
SHOULD_RUN=1 $RUSTC $@ --crate-type bin
2018-08-31 19:50:26 +02:00
}
build_example_bin() {
$RUSTC $2 --crate-name $1 --crate-type bin
extract_data $1 $1.o
link_and_run $1 mini_core.o $1.o
}
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
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"
build_lib mini_core example/mini_core.rs
$RUSTC example/example.rs --crate-type lib
2018-09-09 14:45:23 +02:00
echo "[JIT] mini_core_hello_world"
run_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
export XARGO_RUST_SRC=$(pwd)'/../target/libcore/src'
time xargo build --color always
rm -r target/
popd
2018-08-23 11:03:43 +02:00
cat target/out/log.txt | sort | uniq -c
2018-08-31 19:50:26 +02:00
#extract_data libcore.rlib core.o