| OLD | NEW |
| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le" and h
ost_arch!="s390" and host_arch!="s390x"', { | 162 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le" and h
ost_arch!="s390" and host_arch!="s390x"', { |
| 163 'host_clang%': 1, | 163 'host_clang%': 1, |
| 164 }, { | 164 }, { |
| 165 'host_clang%': 0, | 165 'host_clang%': 0, |
| 166 }], | 166 }], |
| 167 # linux_use_bundled_gold: whether to use the gold linker binary checked | 167 # linux_use_bundled_gold: whether to use the gold linker binary checked |
| 168 # into third_party/binutils. Force this off via GYP_DEFINES when you | 168 # into third_party/binutils. Force this off via GYP_DEFINES when you |
| 169 # are using a custom toolchain and need to control -B in ldflags. | 169 # are using a custom toolchain and need to control -B in ldflags. |
| 170 # Do not use 32-bit gold on 32-bit hosts as it runs out address space | 170 # Do not use 32-bit gold on 32-bit hosts as it runs out address space |
| 171 # for component=static_library builds. | 171 # for component=static_library builds. |
| 172 ['(OS=="linux" or OS=="android") and (target_arch=="x64" or target_arch=
="arm" or (target_arch=="ia32" and host_arch=="x64"))', { | 172 ['((OS=="linux" or OS=="android") and (target_arch=="x64" or target_arch
=="arm" or (target_arch=="ia32" and host_arch=="x64"))) or (OS=="linux" and targ
et_arch=="mipsel")', { |
| 173 'linux_use_bundled_gold%': 1, | 173 'linux_use_bundled_gold%': 1, |
| 174 }, { | 174 }, { |
| 175 'linux_use_bundled_gold%': 0, | 175 'linux_use_bundled_gold%': 0, |
| 176 }], | 176 }], |
| 177 ], | 177 ], |
| 178 }, | 178 }, |
| 179 'base_dir%': '<(base_dir)', | 179 'base_dir%': '<(base_dir)', |
| 180 'clang_dir%': '<(clang_dir)', | 180 'clang_dir%': '<(clang_dir)', |
| 181 'host_arch%': '<(host_arch)', | 181 'host_arch%': '<(host_arch)', |
| 182 'host_clang%': '<(host_clang)', | 182 'host_clang%': '<(host_clang)', |
| (...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1476 '-fsanitize=cfi-vcall', | 1476 '-fsanitize=cfi-vcall', |
| 1477 '-fsanitize=cfi-derived-cast', | 1477 '-fsanitize=cfi-derived-cast', |
| 1478 '-fsanitize=cfi-unrelated-cast', | 1478 '-fsanitize=cfi-unrelated-cast', |
| 1479 ], | 1479 ], |
| 1480 }], | 1480 }], |
| 1481 ], | 1481 ], |
| 1482 }, | 1482 }, |
| 1483 }], | 1483 }], |
| 1484 ], | 1484 ], |
| 1485 } | 1485 } |
| OLD | NEW |