setup.py 文件源码

python
阅读 27 收藏 0 点赞 0 评论 0

项目:py_find_1st 作者: roebel 项目源码 文件源码
def compiler_is_clang(comp) :
    print("check for clang compiler ...", end=' ')
    try:
        cc_output = subprocess.check_output(comp+['--version'],
                                            stderr = subprocess.STDOUT, shell=False)
    except OSError as ex:
        print("compiler test call failed with error {0:d} msg: {1}".format(ex.errno, ex.strerror))
        print("no")
        return False

    ret = re.search(b'clang', cc_output) is not None
    if ret :
        print("yes")
    else:
        print("no")
    return ret
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号