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

Function gcc_version_ge

configure.py:1802–1809  ·  view source on GitHub ↗
(version_checked)

Source from the content-addressed store, hash-verified

1800 return False
1801
1802def gcc_version_ge(version_checked):
1803 for compiler in [(CC, 'c'), (CXX, 'c++')]:
1804 _, is_clang, _1, gcc_version, _2 = (
1805 try_check_compiler(compiler[0], compiler[1])
1806 )
1807 if is_clang or gcc_version < version_checked:
1808 return False
1809 return True
1810
1811def configure_node_lib_files(o):
1812 o['variables']['node_library_files'] = SearchFiles('lib', 'js')

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…