Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 34fdc44

Browse files
AOT Android: Don't use integer division instructions. (flutter#6714)
1 parent 9b7764d commit 34fdc44

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/flutter_tools/lib/src/commands/build_aot.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ Future<String> _buildAotSnapshot(
233233
'--instructions_blob=$instructionsBlob',
234234
'--embedder_entry_points_manifest=$vmEntryPointsAndroid',
235235
'--no-sim-use-hardfp',
236+
'--no-use-integer-division', // Not supported by the Pixel in 32-bit mode.
236237
]);
237238
break;
238239
case TargetPlatform.ios:

0 commit comments

Comments
 (0)