提交 2c26e54e authored 作者: Pascal Lamblin's avatar Pascal Lamblin

Do not try to execute g++ if config.cxx is empty

上级 1619970c
...@@ -1491,6 +1491,9 @@ class GCC_compiler(object): ...@@ -1491,6 +1491,9 @@ class GCC_compiler(object):
Returns True if compilation was successful, False if there Returns True if compilation was successful, False if there
were errors. were errors.
''' '''
if not theano.config.cxx:
return False
rval = True rval = True
try: try:
code = """ code = """
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论