Revert "[vm] Use ELF loader in dart2native." This reverts commit 98b286de216b7426fdefa0dabeafed48ebedecc2. Reason for revert: Breaks on Mac Original change's description: > [vm] Use ELF loader in dart2native. > > Change-Id: I58834e3626cb18830ad9f9b1b95bdfa9d1ebd040 > Cq-Include-Trybots:luci.dart.try:vm-kernel-precomp-linux-debug-x64-try,vm-kernel-precomp-linux-release-simarm-try > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/119150 > Commit-Queue: Samir Jindel <sjindel@google.com> > Reviewed-by: Clement Skau <cskau@google.com> TBR=sjindel@google.com,cskau@google.com,dianamichesa@google.com Change-Id: I61c5c36e4ccd09d91cdb58c7c87f679f02579f03 No-Presubmit: true No-Tree-Checks: true No-Try: true Cq-Include-Trybots: luci.dart.try:vm-kernel-precomp-linux-debug-x64-try, vm-kernel-precomp-linux-release-simarm-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/119643 Reviewed-by: Samir Jindel <sjindel@google.com> Commit-Queue: Samir Jindel <sjindel@google.com>
Dart is:
Optimized for UI: Develop with a programming language specialized around the needs of user interface creation
Productive: Make changes iteratively: use hot reload to see the result instantly in your running app
Fast on all platforms: Compile to ARM & x64 machine code for mobile, desktop, and backend. Or compile to JavaScript for the web
Dart has flexible compiler technology lets you run Dart code in different ways, depending on your target platform and goals:
Dart Native: For programs targeting devices (mobile, desktop, server, and more), Dart Native includes both a Dart VM with JIT (just-in-time) compilation and an AOT (ahead-of-time) compiler for producing machine code.
Dart Web: For programs targeting the web, Dart Web includes both a development time compiler (dartdevc) and a production time compiler (dart2js).
Dart is free and open source.
See LICENSE and PATENT_GRANT.
Visit the dart.dev to learn more about the language, tools, getting started, and more.
Browse pub.dev for more packages and libraries contributed by the community and the Dart team.
If you want to build Dart yourself, here is a guide to getting the source, preparing your machine to build the SDK, and building.
There are more documents on our wiki.
The easiest way to contribute to Dart is to file issues.
You can also contribute patches, as described in Contributing.