提交 7c672596 authored 作者: Pascal Lamblin's avatar Pascal Lamblin

Merge pull request #2060 from ziyuang/master

Resolved issue #2055
......@@ -313,6 +313,10 @@ class NVCC_compiler(object):
# add flags for Microsoft compiler to create .pdb files
preargs2.extend(['/Zi', '/MD'])
cmd.extend(['-Xlinker', '/DEBUG'])
# remove the complaints for the duplication of `double round(double)`
# in both math_functions.h and pymath.h,
# by not including the one in pymath.h
cmd.extend(['-D HAVE_ROUND'])
if local_bitwidth() == 64:
cmd.append('-m64')
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论