OLD | NEW |
1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 'conditions': [ | 308 'conditions': [ |
309 ['v8_target_arch=="s390x"', { | 309 ['v8_target_arch=="s390x"', { |
310 'defines': [ | 310 'defines': [ |
311 'V8_TARGET_ARCH_S390X', | 311 'V8_TARGET_ARCH_S390X', |
312 ], | 312 ], |
313 }], | 313 }], |
314 ['v8_host_byteorder=="little"', { | 314 ['v8_host_byteorder=="little"', { |
315 'defines': [ | 315 'defines': [ |
316 'V8_TARGET_ARCH_S390_LE_SIM', | 316 'V8_TARGET_ARCH_S390_LE_SIM', |
317 ], | 317 ], |
| 318 }, { |
| 319 'cflags': [ '-march=z196' ], |
318 }], | 320 }], |
319 ], | 321 ], |
320 }], # s390 | 322 }], # s390 |
321 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { | 323 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { |
322 'defines': [ | 324 'defines': [ |
323 'V8_TARGET_ARCH_PPC', | 325 'V8_TARGET_ARCH_PPC', |
324 ], | 326 ], |
325 'conditions': [ | 327 'conditions': [ |
326 ['v8_target_arch=="ppc64"', { | 328 ['v8_target_arch=="ppc64"', { |
327 'defines': [ | 329 'defines': [ |
(...skipping 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1411 ], | 1413 ], |
1412 }, | 1414 }, |
1413 'Release_x64': { | 1415 'Release_x64': { |
1414 'inherit_from': ['ReleaseBase'], | 1416 'inherit_from': ['ReleaseBase'], |
1415 }, | 1417 }, |
1416 }], | 1418 }], |
1417 ], | 1419 ], |
1418 }, # configurations | 1420 }, # configurations |
1419 }, # target_defaults | 1421 }, # target_defaults |
1420 } | 1422 } |
OLD | NEW |