2018-06-17 11:05:11 -05:00
|
|
|
cargo build || exit 1
|
|
|
|
|
2018-07-30 11:20:37 -05:00
|
|
|
cd examples/
|
2018-07-20 06:38:49 -05:00
|
|
|
|
2018-07-30 11:20:37 -05:00
|
|
|
RUSTC="rustc -Zcodegen-backend=$(pwd)/../target/debug/librustc_codegen_cranelift.so -Og -L crate=. --crate-type lib"
|
|
|
|
|
|
|
|
$RUSTC mini_core.rs --crate-name mini_core &&
|
|
|
|
$RUSTC example.rs &&
|
|
|
|
$RUSTC mini_core_hello_world.rs &&
|
|
|
|
$RUSTC ../target/libcore/src/libcore/lib.rs
|
|
|
|
|
|
|
|
rm *.rlib
|