MCPcopy Index your code
hub / github.com/nodejs/node / clang_version_ge

Function clang_version_ge

configure.py:1793–1800  ·  view source on GitHub ↗
(version_checked)

Source from the content-addressed store, hash-verified

1791 raise Exception('--static-zoslib-gyp=<path to zoslib.gyp file> is required.')
1792
1793def clang_version_ge(version_checked):
1794 for compiler in [(CC, 'c'), (CXX, 'c++')]:
1795 _, is_clang, clang_version, _1, _2 = (
1796 try_check_compiler(compiler[0], compiler[1])
1797 )
1798 if is_clang and clang_version >= version_checked:
1799 return True
1800 return False
1801
1802def gcc_version_ge(version_checked):
1803 for compiler in [(CC, 'c'), (CXX, 'c++')]:

Callers 1

configure_nodeFunction · 0.85

Calls 1

try_check_compilerFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…