File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,16 @@ $RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib,dylib
31
31
echo " [BUILD] example"
32
32
$RUSTC example/example.rs --crate-type lib
33
33
34
- JIT_ARGS=" abc bcd" jit mini_core_hello_world example/mini_core_hello_world.rs
34
+ # JIT_ARGS="abc bcd" jit mini_core_hello_world example/mini_core_hello_world.rs
35
35
36
36
echo " [AOT] mini_core_hello_world"
37
- $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin
37
+ $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin -g
38
38
./target/out/mini_core_hello_world abc bcd
39
+ if lldb -v; then
40
+ (echo " break set -n main" ; echo " run" ; sleep 1; echo " si -c 21" ; sleep 1; echo " frame variable" ) | lldb -- ./target/out/mini_core_hello_world abc bcd
41
+ fi
42
+
43
+ exit 1
39
44
40
45
echo " [AOT] arbitrary_self_types_pointers_and_wrappers"
41
46
$RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin
You can’t perform that action at this time.
0 commit comments