Fix gcc version check when running scons in python 3.
This commit is contained in:
parent
37c5aa1084
commit
4c90a66e74
|
@ -1,6 +1,7 @@
|
|||
import os
|
||||
import platform
|
||||
import sys
|
||||
from compat import decode_utf8
|
||||
|
||||
|
||||
def is_active():
|
||||
|
@ -154,6 +155,7 @@ def configure(env):
|
|||
import subprocess
|
||||
proc = subprocess.Popen([env['CXX'], '--version'], stdout=subprocess.PIPE)
|
||||
(stdout, _) = proc.communicate()
|
||||
stdout = decode_utf8(stdout)
|
||||
match = re.search('[0-9][0-9.]*', stdout)
|
||||
if match is not None:
|
||||
version = match.group().split('.')
|
||||
|
|
Loading…
Reference in New Issue