- 论坛徽章:
- 0
|
def checkGccVersion(self):
gccVersion = commands.getoutput("%s --v" % self.gcc)
pattern = re.compile(".*gcc\s*(?:version|版本)\s*([\d\.]+)",re.S)
match = pattern.match(gccVersion)
找出GCC的版本 , 现在这个我改成了这样,貌似是比较好的写法
因为在有些中文的Ubuntu 上是显示中文的 比如:
tools$ gcc -v
使用内建 specs。
目标:x86_64-linux-gnu
配置为:../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.4.6-11ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
线程模型:posix
gcc 版本 4.4.6 (Ubuntu/Linaro 4.4.6-11ubuntu2)
但是1楼的那个,谁能解释下吗 |
|