2018-08-10 12:09:21 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
set -e
|
2018-06-17 11:05:11 -05:00
|
|
|
|
2018-08-08 12:46:16 -05: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-14 15:01:18 -05:00
|
|
|
extract_data() {
|
2018-08-15 08:23:28 -05:00
|
|
|
pushd target/out/
|
2018-08-31 12:50:26 -05:00
|
|
|
ar x $1 data.o
|
|
|
|
chmod +rw data.o
|
2018-08-14 15:01:18 -05:00
|
|
|
mv data.o $2
|
2018-08-15 08:23:28 -05:00
|
|
|
popd
|
2018-08-14 15:01:18 -05:00
|
|
|
}
|
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
link_and_run() {
|
|
|
|
target=$1
|
|
|
|
shift
|
|
|
|
pushd target/out
|
|
|
|
gcc $@ -o $target
|
|
|
|
./$target
|
|
|
|
}
|
|
|
|
|
|
|
|
build_lib() {
|
|
|
|
SHOULD_CODEGEN=1 $RUSTC $2 --crate-name $1 --crate-type lib
|
|
|
|
extract_data lib$1.rlib $1.o
|
|
|
|
}
|
2018-07-30 11:20:37 -05:00
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
run_bin() {
|
|
|
|
SHOULD_RUN=1 $RUSTC $1 --crate-type bin
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
RUSTC="rustc -Zcodegen-backend=$(pwd)/target/$channel/librustc_codegen_cranelift.$dylib_ext -Cpanic=abort -L crate=target/out --out-dir target/out"
|
|
|
|
|
|
|
|
rm -r target/out || true
|
2018-08-15 09:17:59 -05:00
|
|
|
mkdir -p target/out/clif
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
build_lib mini_core examples/mini_core.rs
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
$RUSTC examples/example.rs --crate-type lib
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2018-08-17 06:21:03 -05:00
|
|
|
# SimpleJIT is broken
|
2018-08-31 12:50:26 -05:00
|
|
|
# run_bin examples/mini_core_hello_world.rs
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
build_example_bin mini_core_hello_world examples/mini_core_hello_world.rs
|
2018-08-15 08:23:28 -05:00
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
time $RUSTC target/libcore/src/libcore/lib.rs --crate-type lib --crate-name core -Cincremental=target/incremental_core
|
2018-08-23 04:03:43 -05:00
|
|
|
cat target/out/log.txt | sort | uniq -c
|
2018-08-31 12:50:26 -05:00
|
|
|
#extract_data libcore.rlib core.o
|