Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: tools/gyp/configurations_make.gypi

Issue 236193003: Add SSE2 compilation mode ofr Linux ia32. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698