3b16570e07
Cf. d61ebd4ed2
R=iposva@google.com
Review URL: https://codereview.chromium.org/1760263003 .
16 lines
489 B
Bash
Executable File
16 lines
489 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# Usage:
|
|
# cd sdk
|
|
# ./tools/precompilation/test_linux.sh <dart-script-file>
|
|
|
|
./tools/build.py -mdebug -ax64 runtime
|
|
|
|
./out/DebugX64/dart_bootstrap --gen-precompiled-snapshot --package-root=out/DebugX64/packages/ "$1"
|
|
|
|
gcc -nostartfiles -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_precompiled_runtime --run-precompiled-snapshot not_used.dart
|