14 lines
395 B
Bash
Executable File
14 lines
395 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
# Usage:
|
|
# cd sdk
|
|
# ./tools/precompilation/test_linux.sh
|
|
|
|
./tools/build.py -mdebug -ax64 runtime
|
|
|
|
./out/DebugX64/dart_no_snapshot --gen-precompiled-snapshot ~/hello.dart
|
|
|
|
gcc -m64 -shared -Wl,-soname,libprecompiled.so -o libprecompiled.so precompiled.S
|
|
|
|
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD" gdb -ex run --args ./out/DebugX64/dart --run-precompiled-snapshot not_used.dart
|