OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 declare_args() { |
| 6 # This argument allows to override host_toolchain used to build dart artifacts
. |
| 7 # This is needed to make sure that word size of the code produced on host |
| 8 # machine matches word size of target architecture. For example, when |
| 9 # targeting android arm 32-bit while building on linux 64-bit machine, dart vm |
| 10 # that is used to produce snapshots for that android arm 32, has to be built |
| 11 # using linux 32-bit toolchain. |
| 12 dart_host_toolchain = host_toolchain |
| 13 } |
OLD | NEW |