Skip to content

Commit be05a5d

Browse files
committed
Use dart2native rather than dart2aot
1 parent 3ab40b0 commit be05a5d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tool/grind/standalone.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ void appSnapshot() => _appSnapshot();
2727
@Task('Build a native-code Dart executable.')
2828
void nativeExecutable() {
2929
ensureBuild();
30-
run(p.join(sdkDir.path, 'bin/dart2aot'), arguments: [
30+
run(p.join(sdkDir.path, 'bin/dart2native'), arguments: [
31+
'--output-kind=aot',
3132
'bin/sass.dart',
3233
'-Dversion=$version',
33-
'build/sass.dart.native'
34+
'--output=build/sass.dart.native'
3435
]);
3536
}
3637

0 commit comments

Comments
 (0)