使用Anaconda、Python 3.4和Win7 64bit,我无法运行:
C代码:

    int addInts(int a, int b)
{
    return a+b;
}

PYX文件:
cdef extern from "square.cpp":
    int addInts(int, int)

def pAddInts(int a, int b):
    return addInts(a, b)

和测试文件:
res = callCpp.pAddInts(3, 4)

错误消息:
Traceback (most recent call last):
  File "testScript.py", line 9, in <module>
    res = callCpp.pAddInts(a, b)
  File "callCpp.pyx", line 16, in callCpp.pAddInts (callCpp.cpp:952)
    def pAddInts(int a, int b):
TypeError: __int__ returned non-int (type int)

double和double*都没有问题,但是int不起作用。。
这里有什么问题?谢谢!

最佳答案

好的,找到解决办法:
MIWW不适合这项工作,它必须是微软VC++。这完全有助于:
https://github.com/cython/cython/wiki/InstallingOnWindows

10-08 06:35