Skip to content

Commit 8564a9f

Browse files
Henrique Aparecido Lavezzoorangemocha
Henrique Aparecido Lavezzo
authored andcommitted
build: gcc version detection on openSUSE Tumbleweed
PR-URL: nodejs/node-v0.x-archive#25671 Reviewed-By: Alexis Campailla <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
1 parent e192f61 commit 8564a9f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

configure

+4-1
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,10 @@ def configure_node(o):
495495
o['variables']['clang'] = 1 if is_clang else 0
496496

497497
if not is_clang and cc_version != 0:
498-
o['variables']['gcc_version'] = 10 * cc_version[0] + cc_version[1]
498+
try:
499+
o['variables']['gcc_version'] = 10 * cc_version[0] + cc_version[1]
500+
except IndexError:
501+
o['variables']['gcc_version'] = 10 * cc_version[0]
499502

500503
# clang has always supported -fvisibility=hidden, right?
501504
if not is_clang and cc_version < (4,0,0):

0 commit comments

Comments
 (0)