| 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 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 ['OS=="freebsd" or OS=="openbsd"', { | 1080 ['OS=="freebsd" or OS=="openbsd"', { |
| 1081 'cflags': [ '-I/usr/local/include' ], | 1081 'cflags': [ '-I/usr/local/include' ], |
| 1082 }], | 1082 }], |
| 1083 ['OS=="netbsd"', { | 1083 ['OS=="netbsd"', { |
| 1084 'cflags': [ '-I/usr/pkg/include' ], | 1084 'cflags': [ '-I/usr/pkg/include' ], |
| 1085 }], | 1085 }], |
| 1086 ['OS=="aix"', { | 1086 ['OS=="aix"', { |
| 1087 'defines': [ | 1087 'defines': [ |
| 1088 # Support for malloc(0) | 1088 # Support for malloc(0) |
| 1089 '_LINUX_SOURCE_COMPAT=1', | 1089 '_LINUX_SOURCE_COMPAT=1', |
| 1090 '__STDC_FORMAT_MACROS', |
| 1090 '_ALL_SOURCE=1'], | 1091 '_ALL_SOURCE=1'], |
| 1091 'conditions': [ | 1092 'conditions': [ |
| 1092 [ 'v8_target_arch=="ppc"', { | 1093 [ 'v8_target_arch=="ppc"', { |
| 1093 'ldflags': [ '-Wl,-bmaxdata:0x60000000/dsa' ], | 1094 'ldflags': [ '-Wl,-bmaxdata:0x60000000/dsa' ], |
| 1094 }], | 1095 }], |
| 1095 [ 'v8_target_arch=="ppc64"', { | 1096 [ 'v8_target_arch=="ppc64"', { |
| 1096 'cflags': [ '-maix64' ], | 1097 'cflags': [ '-maix64' ], |
| 1097 'ldflags': [ '-maix64' ], | 1098 'ldflags': [ '-maix64' ], |
| 1098 }], | 1099 }], |
| 1099 ], | 1100 ], |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1388 ], | 1389 ], |
| 1389 }, | 1390 }, |
| 1390 'Release_x64': { | 1391 'Release_x64': { |
| 1391 'inherit_from': ['ReleaseBase'], | 1392 'inherit_from': ['ReleaseBase'], |
| 1392 }, | 1393 }, |
| 1393 }], | 1394 }], |
| 1394 ], | 1395 ], |
| 1395 }, # configurations | 1396 }, # configurations |
| 1396 }, # target_defaults | 1397 }, # target_defaults |
| 1397 } | 1398 } |
| OLD | NEW |