Skip to content

Commit 8576547

Browse files
a-sivaCommit Queue
authored andcommitted
[SDK] Second step in removing references to dart_precompiled_runtime
TEST=ci Change-Id: I7b625de2090aa31fd649f0f67055c032f5878772 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/395065 Reviewed-by: Alexander Aprelev <[email protected]> Commit-Queue: Siva Annamalai <[email protected]>
1 parent 2d367c8 commit 8576547

File tree

4 files changed

+7
-29
lines changed

4 files changed

+7
-29
lines changed

pkg/dart2wasm/tool/compile_benchmark

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ BIN_DIR="$OUT_DIR/$DART_CONFIGURATION"
3535

3636
BINARYEN="$BIN_DIR/wasm-opt"
3737
DART="$BIN_DIR/dart"
38-
DART_AOT_RUNTIME="$BIN_DIR/dart_precompiled_runtime"
38+
DART_AOT_RUNTIME="$BIN_DIR/dartaotruntime"
3939
LIBRARIES_JSON_ARG="--libraries-spec=$SDK_DIR/sdk/lib/libraries.json"
4040

4141
function find_flags {

pkg/vm/tool/dart_precompiled_runtime2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ fi
3333
export DART_CONFIGURATION=${DART_CONFIGURATION:-ReleaseX64}
3434
BIN_DIR="$OUT_DIR$DART_CONFIGURATION"
3535

36-
exec "$BIN_DIR"/dart_precompiled_runtime "$@"
36+
exec "$BIN_DIR"/dartaotruntime "$@"

tools/bots/test_matrix.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@
7373
"dart2wasm_hostasserts": [
7474
".dart_tool/package_config.json",
7575
"out/ReleaseX64/dart",
76-
"out/ReleaseX64/dart_precompiled_runtime",
7776
"out/ReleaseX64/dartaotruntime",
7877
"out/ReleaseX64/dart2js_platform.dill",
7978
"out/ReleaseX64/dart2wasm.snapshot",
@@ -2771,7 +2770,7 @@
27712770
"runtime",
27722771
"dart2wasm",
27732772
"create_sdk",
2774-
"dart_precompiled_runtime"
2773+
"dartaotruntime"
27752774
]
27762775
},
27772776
{
@@ -2806,7 +2805,7 @@
28062805
"runtime",
28072806
"dart2wasm",
28082807
"create_sdk",
2809-
"dart_precompiled_runtime"
2808+
"dartaotruntime"
28102809
]
28112810
},
28122811
{
@@ -2839,7 +2838,7 @@
28392838
"runtime",
28402839
"dart2wasm",
28412840
"create_sdk",
2842-
"dart_precompiled_runtime"
2841+
"dartaotruntime"
28432842
]
28442843
},
28452844
{
@@ -2872,7 +2871,7 @@
28722871
"runtime",
28732872
"dart2wasm",
28742873
"create_sdk",
2875-
"dart_precompiled_runtime"
2874+
"dartaotruntime"
28762875
]
28772876
},
28782877
{
@@ -3372,7 +3371,6 @@
33723371
"runtime",
33733372
"gen_snapshot",
33743373
"dartaotruntime",
3375-
"dart_precompiled_runtime",
33763374
"dart2js_platform.dill",
33773375
"dart2js_platform_unsound.dill",
33783376
"kernel-service.dart.snapshot",

tools/bots/try_benchmarks.sh

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ EOF
181181
rm -rf tmp
182182
elif [ "$command" = linux-x64-build ]; then
183183
# NOTE: These are duplicated in tools/bots/test_matrix.json, keep in sync.
184-
./tools/build.py --mode=release --arch=x64 create_sdk runtime gen_snapshot dartaotruntime dart_precompiled_runtime dart2js_platform.dill dart2js_platform_unsound.dill kernel-service.dart.snapshot ddc_stable_test ddc_canary_test dart2wasm_benchmark
184+
./tools/build.py --mode=release --arch=x64 create_sdk runtime gen_snapshot dartaotruntime dart2js_platform.dill dart2js_platform_unsound.dill kernel-service.dart.snapshot ddc_stable_test ddc_canary_test dart2wasm_benchmark
185185
elif [ "$command" = linux-x64-archive ]; then
186186
export GZIP=-1
187187
strip -w \
@@ -260,25 +260,6 @@ EOF
260260
-K '_ZN4dart7Version4str_E' \
261261
-K '_ZN4dart7Version7commit_E' \
262262
-K '_ZN4dart9Bootstrap*_paths_E' out/ReleaseX64/dartaotruntime
263-
strip -w \
264-
-K 'kDartVmSnapshotData' \
265-
-K 'kDartVmSnapshotInstructions' \
266-
-K 'kDartCoreIsolateSnapshotData' \
267-
-K 'kDartCoreIsolateSnapshotInstructions' \
268-
-K '_ZN4dart3bin26observatory_assets_archiveE' \
269-
-K '_ZN4dart3bin30observatory_assets_archive_lenE' \
270-
-K '_ZN4dart3bin7Builtin22_builtin_source_paths_E' \
271-
-K '_ZN4dart3bin7Builtin*_paths_E' \
272-
-K '_ZN4dart3binL17vm_snapshot_data_E' \
273-
-K '_ZN4dart3binL24isolate_snapshot_buffer_E' \
274-
-K '_ZN4dart3binL27core_isolate_snapshot_data_E' \
275-
-K '_ZN4dart3binL27observatory_assets_archive_E' \
276-
-K '_ZN4dart3binL27vm_isolate_snapshot_buffer_E' \
277-
-K '_ZN4dart3binL29core_isolate_snapshot_buffer_E' \
278-
-K '_ZN4dart7Version14snapshot_hash_E' \
279-
-K '_ZN4dart7Version4str_E' \
280-
-K '_ZN4dart7Version7commit_E' \
281-
-K '_ZN4dart9Bootstrap*_paths_E' out/ReleaseX64/dart_precompiled_runtime
282263
tar -czf linux-x64.tar.gz \
283264
--exclude .git \
284265
--exclude .gitignore \
@@ -301,7 +282,6 @@ EOF
301282
third_party/d8/linux/x64 \
302283
third_party/firefox_jsshell/ \
303284
out/ReleaseX64/dartaotruntime \
304-
out/ReleaseX64/dart_precompiled_runtime \
305285
out/ReleaseX64/gen/utils/ddc \
306286
out/ReleaseX64/ddc_outline_unsound.dill \
307287
out/ReleaseX64/ddc_outline.dill \

0 commit comments

Comments
 (0)