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

Side by Side Diff: build/common.gypi

Issue 11289003: MIPS: fix mips_arch_variant bug in GYP build. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 [ 'v8_use_mips_abi_hardfloat=="true"', { 203 [ 'v8_use_mips_abi_hardfloat=="true"', {
204 'cflags': ['-mhard-float'], 204 'cflags': ['-mhard-float'],
205 'ldflags': ['-mhard-float'], 205 'ldflags': ['-mhard-float'],
206 }, { 206 }, {
207 'cflags': ['-msoft-float'], 207 'cflags': ['-msoft-float'],
208 'ldflags': ['-msoft-float'], 208 'ldflags': ['-msoft-float'],
209 }], 209 }],
210 ['mips_arch_variant=="mips32r2"', { 210 ['mips_arch_variant=="mips32r2"', {
211 'cflags': ['-mips32r2', '-Wa,-mips32r2'], 211 'cflags': ['-mips32r2', '-Wa,-mips32r2'],
212 }], 212 }],
213 ['mips_arch_variant=="mips32r1"', {
214 'cflags': ['-mips32', '-Wa,-mips32'],
215 }],
213 ['mips_arch_variant=="loongson"', { 216 ['mips_arch_variant=="loongson"', {
214 'cflags': ['-mips3', '-Wa,-mips3'], 217 'cflags': ['-mips3', '-Wa,-mips3'],
215 }, {
216 'cflags': ['-mips32', '-Wa,-mips32'],
217 }], 218 }],
218 ], 219 ],
219 }], 220 }],
220 ], 221 ],
221 }], 222 }],
222 [ 'v8_can_use_fpu_instructions=="true"', { 223 [ 'v8_can_use_fpu_instructions=="true"', {
223 'defines': [ 224 'defines': [
224 'CAN_USE_FPU_INSTRUCTIONS', 225 'CAN_USE_FPU_INSTRUCTIONS',
225 ], 226 ],
226 }], 227 }],
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 'OptimizeReferences': '2', 443 'OptimizeReferences': '2',
443 'EnableCOMDATFolding': '2', 444 'EnableCOMDATFolding': '2',
444 }, 445 },
445 }, 446 },
446 }], # OS=="win" 447 }], # OS=="win"
447 ], # conditions 448 ], # conditions
448 }, # Release 449 }, # Release
449 }, # configurations 450 }, # configurations
450 }, # target_defaults 451 }, # target_defaults
451 } 452 }
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