How does Dart AOT work?

Technology CommunityCategory: FlutterHow does Dart AOT work?
VietMX Staff asked 3 years ago
  • Dart source code will be translated into assembly files, then assembly files will be compiled into binary code for different architectures by the assembler.
  • For mobile applications the source code is compiled for multiple processors ARM, ARM64, x64 and for both platforms – Android and iOS. This means there are multiple resulting binary files for each supported processor and platform combination.