| 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 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1091 ], | 1091 ], |
| 1092 }], | 1092 }], |
| 1093 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ | 1093 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ |
| 1094 or OS=="netbsd" or OS=="qnx" or OS=="aix"', { | 1094 or OS=="netbsd" or OS=="qnx" or OS=="aix"', { |
| 1095 'conditions': [ | 1095 'conditions': [ |
| 1096 [ 'v8_no_strict_aliasing==1', { | 1096 [ 'v8_no_strict_aliasing==1', { |
| 1097 'cflags': [ '-fno-strict-aliasing' ], | 1097 'cflags': [ '-fno-strict-aliasing' ], |
| 1098 }], | 1098 }], |
| 1099 ], # conditions | 1099 ], # conditions |
| 1100 }], | 1100 }], |
| 1101 # GCC 6+ can optimize away pointer comparisons to null. This is | |
| 1102 # problematic as V8 encodes Values through tagged pointers and comparisons | |
| 1103 # with 0 are actually necessary in many cases. As a temporary Workaround | |
| 1104 # we disable this optimization. See: https://crbug.com/v8/3782 | |
| 1105 ['OS!="win" and clang==0', { | |
| 1106 'cflags': [ '-fno-delete-null-pointer-checks' ] | |
| 1107 }], | |
| 1108 ['OS=="solaris"', { | 1101 ['OS=="solaris"', { |
| 1109 'defines': [ '__C99FEATURES__=1' ], # isinf() etc. | 1102 'defines': [ '__C99FEATURES__=1' ], # isinf() etc. |
| 1110 }], | 1103 }], |
| 1111 ['OS=="freebsd" or OS=="openbsd"', { | 1104 ['OS=="freebsd" or OS=="openbsd"', { |
| 1112 'cflags': [ '-I/usr/local/include' ], | 1105 'cflags': [ '-I/usr/local/include' ], |
| 1113 }], | 1106 }], |
| 1114 ['OS=="netbsd"', { | 1107 ['OS=="netbsd"', { |
| 1115 'cflags': [ '-I/usr/pkg/include' ], | 1108 'cflags': [ '-I/usr/pkg/include' ], |
| 1116 }], | 1109 }], |
| 1117 ['OS=="aix"', { | 1110 ['OS=="aix"', { |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1418 ], | 1411 ], |
| 1419 }, | 1412 }, |
| 1420 'Release_x64': { | 1413 'Release_x64': { |
| 1421 'inherit_from': ['ReleaseBase'], | 1414 'inherit_from': ['ReleaseBase'], |
| 1422 }, | 1415 }, |
| 1423 }], | 1416 }], |
| 1424 ], | 1417 ], |
| 1425 }, # configurations | 1418 }, # configurations |
| 1426 }, # target_defaults | 1419 }, # target_defaults |
| 1427 } | 1420 } |
| OLD | NEW |