Skip to content
Merged
Changes from 1 commit
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
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, 'class_table.json')}',
'--print_class_table_link_info_to=${_fileSystem.path.join(outputDir.path, 'ct.link')}',
];

final bool targetingApplePlatform =
Expand Down