We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db0e610 + 8d418ab commit f4a254cCopy full SHA for f4a254c
SConstruct
@@ -142,7 +142,7 @@ env['RANLIB'] = prefix + "ranlib"
142
143
if not GetOption("help"):
144
try:
145
- compiler_ver = subprocess.check_output([env['CXX'], "-dumpversion"]).strip()
+ compiler_ver = subprocess.check_output(env['CXX'].split() + ["-dumpversion"]).strip()
146
except OSError:
147
print("ERROR: Compiler '%s' not found" % env['CXX'])
148
Exit(1)
0 commit comments