提交 63e92464 authored 作者: Frederic's avatar Frederic

Small crash fix when cxx=icpc

上级 b320ab29
...@@ -1749,7 +1749,8 @@ class GCC_compiler(object): ...@@ -1749,7 +1749,8 @@ class GCC_compiler(object):
GCC_compiler.march_flags) GCC_compiler.march_flags)
#Add the detected -march=native equivalent flags #Add the detected -march=native equivalent flags
cxxflags.extend(GCC_compiler.march_flags) if GCC_compiler.march_flags:
cxxflags.extend(GCC_compiler.march_flags)
#NumPy 1.7 Deprecate the old API. I updated most of the places #NumPy 1.7 Deprecate the old API. I updated most of the places
#to use the new API, but not everywhere. When finished, enable #to use the new API, but not everywhere. When finished, enable
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论