Index: tools/precompilation/test_linux.sh |
diff --git a/tools/precompilation/test_linux.sh b/tools/precompilation/test_linux.sh |
deleted file mode 100755 |
index 056fde00122ab068e43d49cd0dc977675afc10f7..0000000000000000000000000000000000000000 |
--- a/tools/precompilation/test_linux.sh |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-#!/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 |
- |
-gdb -ex run --args ./out/DebugX64/dart_precompiled_runtime --run-precompiled-snapshot=$PWD not_used.dart |