mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
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:
parent
69f39d0b83
commit
3b16570e07
4 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue