| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 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. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'arm_cross_libc%': '/opt/codesourcery/arm-2009q1/arm-none-linux-gnueabi/libc
', | 7 'arm_cross_libc%': '/opt/codesourcery/arm-2009q1/arm-none-linux-gnueabi/libc
', |
| 8 'dart_debug_optimization_level%': '2', | 8 'dart_debug_optimization_level%': '2', |
| 9 }, | 9 }, |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'target_conditions': [ | 48 'target_conditions': [ |
| 49 ['_toolset=="target"', { | 49 ['_toolset=="target"', { |
| 50 'cflags': [ | 50 'cflags': [ |
| 51 '-marm', | 51 '-marm', |
| 52 '-march=armv7-a', | 52 '-march=armv7-a', |
| 53 '-mfpu=vfp', | 53 '-mfpu=vfp', |
| 54 '-mfloat-abi=softfp', | 54 '-mfloat-abi=softfp', |
| 55 '-Wno-psabi', # suppresses va_list warning | 55 '-Wno-psabi', # suppresses va_list warning |
| 56 '-fno-strict-overflow', | 56 '-fno-strict-overflow', |
| 57 ], | 57 ], |
| 58 'ldflags': ['-static'], |
| 58 }], | 59 }], |
| 59 ['_toolset=="host"', { | 60 ['_toolset=="host"', { |
| 60 'cflags': ['-m32', '-msse2'], | 61 'cflags': ['-m32', '-msse2'], |
| 61 'ldflags': ['-m32'], | 62 'ldflags': ['-m32'], |
| 62 }]] | 63 }]] |
| 63 }, | 64 }, |
| 64 | 65 |
| 65 'Dart_simmips_Base': { | 66 'Dart_simmips_Base': { |
| 66 'cflags': [ '-O3', '-m32', '-msse2' ], | 67 'cflags': [ '-O3', '-m32', '-msse2' ], |
| 67 'ldflags': [ '-m32', ], | 68 'ldflags': [ '-m32', ], |
| (...skipping 13 matching lines...) Expand all Loading... |
| 81 '-fno-omit-frame-pointer', | 82 '-fno-omit-frame-pointer', |
| 82 ], | 83 ], |
| 83 }, | 84 }, |
| 84 | 85 |
| 85 'Dart_Release': { | 86 'Dart_Release': { |
| 86 'cflags': [ '-O3', ], | 87 'cflags': [ '-O3', ], |
| 87 }, | 88 }, |
| 88 }, | 89 }, |
| 89 }, | 90 }, |
| 90 } | 91 } |
| OLD | NEW |