Also update the test harness for unification of dart_no_snapshot into dart_bootstrap.

Cf. d61ebd4ed2

R=iposva@google.com

Review URL: https://codereview.chromium.org/1760263003 .
This commit is contained in:
Ryan Macnak 2016-03-03 16:47:28 -08:00
parent 69f39d0b83
commit 3b16570e07
4 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ set -ex
./tools/build.py -mdebug -ax64 runtime
./out/DebugX64/dart_no_snapshot --gen-precompiled-snapshot --package-root=out/DebugX64/packages/ "$1"
./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

View file

@ -8,7 +8,7 @@ set -ex
./tools/build.py -mdebug -asimarm runtime
./out/DebugSIMARM/dart_no_snapshot --gen-precompiled-snapshot --package-root=out/DebugX64/packages/ "$1"
./out/DebugSIMARM/dart_bootstrap --gen-precompiled-snapshot --package-root=out/DebugX64/packages/ "$1"
gcc -nostartfiles -m32 -shared -Wl,-soname,libprecompiled.so -o libprecompiled.so precompiled.S

View file

@ -8,7 +8,7 @@ set -ex
./tools/build.py -mdebug -ax64 runtime
./xcodebuild/DebugX64/dart_no_snapshot --gen-precompiled-snapshot --package-root=xcodebuild/DebugX64/packages/ "$1"
./xcodebuild/DebugX64/dart_bootstrap --gen-precompiled-snapshot --package-root=xcodebuild/DebugX64/packages/ "$1"
clang -nostartfiles -m64 -dynamiclib -o libprecompiled.dylib precompiled.S

View file

@ -354,7 +354,7 @@ class PrecompilerCompilerConfiguration extends CompilerConfiguration {
CommandBuilder commandBuilder,
List arguments,
Map<String, String> environmentOverrides) {
var exec = "$buildDir/dart_no_snapshot";
var exec = "$buildDir/dart_bootstrap";
var args = new List();
args.add("--gen-precompiled-snapshot=$tempDir");
args.addAll(arguments);