You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configure performs a check to see if clang is newer than 3.4.2. However, this check is done against the string parsed out of the clang output in try_check_compiler: https://github.com/nodejs/node/blob/master/configure#L710 This results in miscomparisons for double-digit clang versions. For example, if clang_version is '10.0.0', then clang_version < '3.4.2' is false even though clang 10 is definitely newer than 3.
The text was updated successfully, but these errors were encountered:
Configure performs a check to see if clang is newer than 3.4.2. However, this check is done against the string parsed out of the clang output in
try_check_compiler
: https://github.com/nodejs/node/blob/master/configure#L710 This results in miscomparisons for double-digit clang versions. For example, ifclang_version
is'10.0.0'
, thenclang_version < '3.4.2'
is false even though clang 10 is definitely newer than 3.The text was updated successfully, but these errors were encountered: