rust/build.sh

26 lines
732 B
Bash
Raw Normal View History

2018-08-10 17:09:21 +00:00
#!/bin/bash
2018-06-17 16:05:11 +00:00
cargo build || exit 1
cd examples/
2018-07-20 11:38:49 +00: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-11 13:05:57 +00:00
RUSTC="rustc -Zcodegen-backend=$(pwd)/../target/debug/librustc_codegen_cranelift.$dylib_ext -L crate=. -Og"
2018-08-11 13:05:57 +00:00
$RUSTC mini_core.rs --crate-name mini_core --crate-type lib &&
$RUSTC example.rs --crate-type lib &&
$RUSTC mini_core_hello_world.rs --crate-type bin &&
2018-08-11 13:05:57 +00:00
$RUSTC ../target/libcore/src/libcore/lib.rs --color=always --crate-type lib 2>&1 | (head -n 20; echo "===="; tail -n 1000)
2018-08-09 13:30:26 +00:00
cat ../target/log.txt | sort | uniq -c | grep -v "rval unsize move" | grep -v "rval len"
rm *.rlib ../target/log.txt