OLD | NEW |
1 #!/bin/bash -ex | 1 #!/bin/bash -ex |
2 | 2 |
3 # Usage: | 3 # Usage: |
4 # cd sdk | 4 # cd sdk |
5 # ./tools/precompilation/test_linux.sh | 5 # ./tools/precompilation/test_linux.sh |
6 | 6 |
7 ./tools/build.py -mdebug -ax64 runtime | 7 ./tools/build.py -mdebug -ax64 runtime |
8 | 8 |
9 ./out/DebugX64/dart_no_snapshot --gen-precompiled-snapshot ~/hello.dart | 9 ./out/DebugX64/dart_no_snapshot --gen-precompiled-snapshot ~/hello.dart |
10 | 10 |
11 ./out/DebugX64/dart ./tools/precompilation/create_instructions_snapshot_assembly
.dart precompiled.instructions precompiled.S | 11 gcc -m64 -shared -Wl,-soname,libprecompiled.so -o libprecompiled.so precompiled.
S |
12 | |
13 gcc -m64 -c -o precompiled.o precompiled.S | |
14 | |
15 gcc -m64 -shared -Wl,-soname,libprecompiled.so -o libprecompiled.so precompiled.
o | |
16 | 12 |
17 LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD" gdb -ex run --args ./out/DebugX64/dart -
-run-precompiled-snapshot not_used.dart | 13 LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD" gdb -ex run --args ./out/DebugX64/dart -
-run-precompiled-snapshot not_used.dart |
OLD | NEW |