Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/internal/engine.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9621213e02eade3f7e66d460688a313e2f6bac6e
1332a873d60afed2ba35bc75a43d546cda85d9a6
4 changes: 4 additions & 0 deletions packages/flutter_tools/lib/src/base/build.dart
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,11 @@ class AOTSnapshotter {
outputDir.createSync(recursive: true);

final List<String> genSnapshotArgs = <String>[
// Shorebird uses --deterministic to improve snapshot stability and increase linking.
'--deterministic',
// Shorebird dumps the class table information during snapshot compilation.
'--print_class_table_link_debug_info_to=${_fileSystem.path.join(outputDir.path, 'App.class_table.json')}',
'--print_class_table_link_info_to=${_fileSystem.path.join(outputDir.path, 'App.ct.link')}',
];

final bool targetingApplePlatform =
Expand Down
Loading