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 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1090 # Support for malloc(0) | 1090 # Support for malloc(0) |
1091 '_LINUX_SOURCE_COMPAT=1', | 1091 '_LINUX_SOURCE_COMPAT=1', |
1092 '__STDC_FORMAT_MACROS', | 1092 '__STDC_FORMAT_MACROS', |
1093 '_ALL_SOURCE=1'], | 1093 '_ALL_SOURCE=1'], |
1094 'conditions': [ | 1094 'conditions': [ |
1095 [ 'v8_target_arch=="ppc"', { | 1095 [ 'v8_target_arch=="ppc"', { |
1096 'ldflags': [ '-Wl,-bmaxdata:0x60000000/dsa' ], | 1096 'ldflags': [ '-Wl,-bmaxdata:0x60000000/dsa' ], |
1097 }], | 1097 }], |
1098 [ 'v8_target_arch=="ppc64"', { | 1098 [ 'v8_target_arch=="ppc64"', { |
1099 'cflags': [ '-maix64' ], | 1099 'cflags': [ '-maix64' ], |
1100 'ldflags': [ '-maix64' ], | 1100 'ldflags': [ '-maix64 -Wl,-bbigtoc' ], |
1101 }], | 1101 }], |
1102 ], | 1102 ], |
1103 }], | 1103 }], |
1104 ], # conditions | 1104 ], # conditions |
1105 'configurations': { | 1105 'configurations': { |
1106 # Abstract configuration for v8_optimized_debug == 0. | 1106 # Abstract configuration for v8_optimized_debug == 0. |
1107 'DebugBase0': { | 1107 'DebugBase0': { |
1108 'abstract': 1, | 1108 'abstract': 1, |
1109 'msvs_settings': { | 1109 'msvs_settings': { |
1110 'VCCLCompilerTool': { | 1110 'VCCLCompilerTool': { |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1391 ], | 1391 ], |
1392 }, | 1392 }, |
1393 'Release_x64': { | 1393 'Release_x64': { |
1394 'inherit_from': ['ReleaseBase'], | 1394 'inherit_from': ['ReleaseBase'], |
1395 }, | 1395 }, |
1396 }], | 1396 }], |
1397 ], | 1397 ], |
1398 }, # configurations | 1398 }, # configurations |
1399 }, # target_defaults | 1399 }, # target_defaults |
1400 } | 1400 } |
OLD | NEW |