我用Python包装C ++类,我无法使用Cython模块编译任何C ++ 11特性。
单独编译C ++时,所有内容都可以正常编译。但是当我在下面运行这个setup.py时:
setup(
ext_modules = cythonize(
"marketdata.pyx", # our Cython source
sources=["cpp/OBwrapper.cpp, cpp/OrderBook/orderbook.h, cpp/OrderBook/orderbook.cpp"], # additional source file(s)
language="c++", # generate C++ code
extra_compile_args=["-std=c++11"]
))
在我的.pyx文件标题中:
# distutils: language = c++
# distutils: sources = cpp/OBwrapper.cpp cpp/OrderBook/orderbook.cpp
我收到大量与他们无法识别c ++ 11命令有关的错误,例如' auto'。
例如:
cpp/OrderBook/orderbook.cpp(168) : error C2065: 'nullptr' : undeclared identifier
我怎样才能让它发挥作用?
答案 0 :(得分:5)
尝试使用Extension
:setup(ext_modules=cythonize([Extension(...)], ...)
。
这个setup.py
对我有用(在Debian Linux上):
from setuptools import setup, find_packages, Extension
from Cython.Build import cythonize
from glob import glob
extensions = [
Extension(
'my_proj.cython.hello',
glob('my_proj/cython/*.pyx')
+ glob('my_proj/cython/*.cxx'),
extra_compile_args=["-std=c++14"])
]
setup(
name='my-proj',
packages=find_packages(exclude=['doc', 'tests']),
ext_modules=cythonize(extensions))