]> git.lizzy.rs Git - rust.git/blob - build.sh
863d80ed3c58e08050c0df55254386969c2cea01
[rust.git] / build.sh
1 #!/bin/bash
2
3 cargo build || exit 1
4
5 unamestr=`uname`
6 if [[ "$unamestr" == 'Linux' ]]; then
7    dylib_ext='so'
8 elif [[ "$unamestr" == 'Darwin' ]]; then
9    dylib_ext='dylib'
10 else
11    echo "Unsupported os"
12    exit 1
13 fi
14
15 extract_data() {
16     ar x $1 data.o &&
17     chmod +rw data.o &&
18     mv data.o $2
19 }
20
21 RUSTC="rustc -Zcodegen-backend=$(pwd)/target/debug/librustc_codegen_cranelift.$dylib_ext -L crate=."
22
23 pushd target/libcore
24
25 SHOULD_CODEGEN=1 $RUSTC ../../examples/mini_core.rs --crate-name mini_core --crate-type lib &&
26 extract_data libmini_core.rlib mini_core.o &&
27
28 $RUSTC ../../examples/example.rs --crate-type lib &&
29
30 SHOULD_RUN=1 $RUSTC ../../examples/mini_core_hello_world.rs --crate-type bin &&
31
32 $RUSTC ../../examples/mini_core_hello_world.rs --crate-type bin &&
33 extract_data mini_core_hello_world mini_core_hello_world.o &&
34
35 gcc mini_core.o mini_core_hello_world.o -o mini_core_hello_world &&
36 ./mini_core_hello_world &&
37
38 $RUSTC src/libcore/lib.rs --color=always --crate-type lib -Cincremental=incremental 2>&1 | (head -n 20; echo "===="; tail -n 1000)
39 cat log.txt | sort | uniq -c | grep -v "rval unsize move" | grep -v "rval len"