| 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     'dart_debug_optimization_level%': '2', |    7     'dart_debug_optimization_level%': '2', | 
|    8   }, |    8   }, | 
|    9   'target_defaults': { |    9   'target_defaults': { | 
|   10     'configurations': { |   10     'configurations': { | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
|   23           #'-ansi', |   23           #'-ansi', | 
|   24           '-fno-rtti', |   24           '-fno-rtti', | 
|   25           '-fno-exceptions', |   25           '-fno-exceptions', | 
|   26           # '-fvisibility=hidden', |   26           # '-fvisibility=hidden', | 
|   27           # '-fvisibility-inlines-hidden', |   27           # '-fvisibility-inlines-hidden', | 
|   28         ], |   28         ], | 
|   29       }, |   29       }, | 
|   30  |   30  | 
|   31       'Dart_Linux_ia32_Base': { |   31       'Dart_Linux_ia32_Base': { | 
|   32         'abstract': 1, |   32         'abstract': 1, | 
|   33         'cflags': [ '-m32', '-msse2' ], |   33         'cflags': [ '-m32', '-msse2', '-mfpmath=sse' ], | 
|   34         'ldflags': [ '-m32', ], |   34         'ldflags': [ '-m32', ], | 
|   35       }, |   35       }, | 
|   36  |   36  | 
|   37       'Dart_Linux_x64_Base': { |   37       'Dart_Linux_x64_Base': { | 
|   38         'abstract': 1, |   38         'abstract': 1, | 
|   39         'cflags': [ '-m64', '-msse2' ], |   39         'cflags': [ '-m64', '-msse2' ], | 
|   40         'ldflags': [ '-m64', ], |   40         'ldflags': [ '-m64', ], | 
|   41       }, |   41       }, | 
|   42  |   42  | 
|   43       'Dart_Linux_simarm_Base': { |   43       'Dart_Linux_simarm_Base': { | 
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  147           # The sampling profiler uses the frame pointer to walk the stack. |  147           # The sampling profiler uses the frame pointer to walk the stack. | 
|  148           '-fno-omit-frame-pointer', |  148           '-fno-omit-frame-pointer', | 
|  149           # Clang on Linux will still omit frame pointers from leaf functions |  149           # Clang on Linux will still omit frame pointers from leaf functions | 
|  150           # unless told otherwise: |  150           # unless told otherwise: | 
|  151           # '-mno-omit-leaf-frame-pointer', |  151           # '-mno-omit-leaf-frame-pointer', | 
|  152         ], |  152         ], | 
|  153       }, |  153       }, | 
|  154     }, |  154     }, | 
|  155   }, |  155   }, | 
|  156 } |  156 } | 
| OLD | NEW |