(o)
| 1782 | o['variables']['v8_host_byteorder'] = host_byteorder |
| 1783 | |
| 1784 | def configure_zos(o): |
| 1785 | o['variables']['node_static_zoslib'] = b(True) |
| 1786 | if options.static_zoslib_gyp: |
| 1787 | # Apply to all Node.js components for now |
| 1788 | o['variables']['zoslib_include_dir'] = Path(options.static_zoslib_gyp).parent / 'include' |
| 1789 | o['include_dirs'] += [o['variables']['zoslib_include_dir']] |
| 1790 | else: |
| 1791 | raise Exception('--static-zoslib-gyp=<path to zoslib.gyp file> is required.') |
| 1792 | |
| 1793 | def clang_version_ge(version_checked): |
| 1794 | for compiler in [(CC, 'c'), (CXX, 'c++')]: |
no test coverage detected
searching dependent graphs…