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

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

Issue 1858283002: Initial SIMDBC interpreter. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/testing/dart/runtime_configuration.dart » ('j') | 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 '-O3', 106 '-O3',
107 '-m64', 107 '-m64',
108 '-msse2', 108 '-msse2',
109 '-mfpmath=sse', 109 '-mfpmath=sse',
110 ], 110 ],
111 'ldflags': [ 111 'ldflags': [
112 '-m64', 112 '-m64',
113 ], 113 ],
114 }, 114 },
115 115
116 'Dart_Linux_simdbc_Base': {
117 'abstract': 1,
118 'cflags': [ '-O3', '-m32', '-msse2', '-mfpmath=sse' ],
119 'ldflags': [ '-m32', ],
120 },
121
116 # ARM cross-build 122 # ARM cross-build
117 'Dart_Linux_xarm_Base': { 123 'Dart_Linux_xarm_Base': {
118 'abstract': 1, 124 'abstract': 1,
119 'target_conditions': [ 125 'target_conditions': [
120 ['_toolset=="target"', { 126 ['_toolset=="target"', {
121 'cflags': [ 127 'cflags': [
122 '-marm', 128 '-marm',
123 '-mfpu=vfp', 129 '-mfpu=vfp',
124 '-Wno-psabi', # suppresses va_list warning 130 '-Wno-psabi', # suppresses va_list warning
125 '-fno-strict-overflow', 131 '-fno-strict-overflow',
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 '-ffunction-sections', 343 '-ffunction-sections',
338 '-fomit-frame-pointer', 344 '-fomit-frame-pointer',
339 ], 345 ],
340 'ldflags': [ 346 'ldflags': [
341 '-Wl,--gc-sections', 347 '-Wl,--gc-sections',
342 ], 348 ],
343 }, 349 },
344 }, 350 },
345 }, 351 },
346 } 352 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/testing/dart/runtime_configuration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698