| 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 12 matching lines...) Expand all Loading... |
| 23 # TODO(iposva): Figure out if we need to pass anything else. | 23 # TODO(iposva): Figure out if we need to pass anything else. |
| 24 #'-ansi', | 24 #'-ansi', |
| 25 '-fno-rtti', | 25 '-fno-rtti', |
| 26 '-fno-exceptions', | 26 '-fno-exceptions', |
| 27 '-fvisibility=hidden', | 27 '-fvisibility=hidden', |
| 28 '-fvisibility-inlines-hidden', | 28 '-fvisibility-inlines-hidden', |
| 29 ], | 29 ], |
| 30 }, | 30 }, |
| 31 | 31 |
| 32 'Dart_ia32_Base': { | 32 'Dart_ia32_Base': { |
| 33 'cflags': [ '-m32', '-msse2' ], | 33 'cflags': [ '-m32', '-msse2', '-mfpmath=sse'], |
| 34 'ldflags': [ '-m32', ], | 34 'ldflags': [ '-m32', ], |
| 35 }, | 35 }, |
| 36 | 36 |
| 37 'Dart_x64_Base': { | 37 'Dart_x64_Base': { |
| 38 'cflags': [ '-m64', '-msse2' ], | 38 'cflags': [ '-m64', '-msse2' ], |
| 39 'ldflags': [ '-m64', ], | 39 'ldflags': [ '-m64', ], |
| 40 }, | 40 }, |
| 41 | 41 |
| 42 'Dart_simarm_Base': { | 42 'Dart_simarm_Base': { |
| 43 'cflags': [ '-O3', '-m32', '-msse2' ], | 43 'cflags': [ '-O3', '-m32', '-msse2' ], |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 '-fno-omit-frame-pointer', | 88 '-fno-omit-frame-pointer', |
| 89 ], | 89 ], |
| 90 }, | 90 }, |
| 91 | 91 |
| 92 'Dart_Release': { | 92 'Dart_Release': { |
| 93 'cflags': [ '-O3', ], | 93 'cflags': [ '-O3', ], |
| 94 }, | 94 }, |
| 95 }, | 95 }, |
| 96 }, | 96 }, |
| 97 } | 97 } |
| OLD | NEW |