提交 702277a9 编写于 作者: M MurphyZhao

[tools] 修复 GCC 版本判断的方式并增加异常捕获

Signed-off-by: NMurphyZhao <d2014zjt@163.com>
上级 854d0144
......@@ -24,6 +24,7 @@
import sys
import os
import re
def splitall(loc):
"""
......@@ -245,10 +246,11 @@ def ProjectInfo(env):
return proj
def VersionCmp(ver1, ver2):
la=[];
la=[]
if ver1:
la = ver1.split('.')
lb = ver2.split('.')
la = re.split("[. ]", ver1)
lb = re.split("[. ]", ver2)
f = 0
if len(la) > len(lb):
f = len(la)
......@@ -262,7 +264,7 @@ def VersionCmp(ver1, ver2):
continue
else:
return -1
except IndexError as e:
except (IndexError, ValueError) as e:
if len(la) > len(lb):
return 1
else:
......@@ -274,7 +276,7 @@ def GCCC99Patch(cflags):
gcc_version = building.GetDepend('GCC_VERSION')
if gcc_version:
gcc_version = gcc_version.replace('"', '')
if VersionCmp(gcc_version, "4.8.0"):
if VersionCmp(gcc_version, "4.8.0") == 1:
# remove -std=c99 after GCC 4.8.x
cflags = cflags.replace('-std=c99', '')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册