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

Unified Diff: tools/gyp/configurations_make.gypi

Issue 12223115: SSE Assembler + Linux build fixes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: -msse2 Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/disassembler_x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gyp/configurations_make.gypi
diff --git a/tools/gyp/configurations_make.gypi b/tools/gyp/configurations_make.gypi
index edbe56eb08ece3bfd780167a9db8b9030e930246..8a73b91479d8efc0a0577af75132eb600ccac5ce 100644
--- a/tools/gyp/configurations_make.gypi
+++ b/tools/gyp/configurations_make.gypi
@@ -33,17 +33,17 @@
},
'Dart_ia32_Base': {
- 'cflags': [ '-m32', ],
+ 'cflags': [ '-m32', '-msse2' ],
'ldflags': [ '-m32', ],
},
'Dart_x64_Base': {
- 'cflags': [ '-m64', ],
+ 'cflags': [ '-m64', '-msse2' ],
'ldflags': [ '-m64', ],
},
'Dart_simarm_Base': {
- 'cflags': [ '-O3', '-m32', ],
+ 'cflags': [ '-O3', '-m32', '-msse2' ],
'ldflags': [ '-m32', ],
},
@@ -57,7 +57,7 @@
},
'Dart_simmips_Base': {
- 'cflags': [ '-O3', '-m32', ],
+ 'cflags': [ '-O3', '-m32', '-msse2' ],
'ldflags': [ '-m32', ],
},
« no previous file with comments | « runtime/vm/disassembler_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698