- 在Qt中使用Python时报错,主要原因是include了一个 <pybind11/embed.h>文件
//object.h
PyType_Slot *slots;
----------------------报错信息----------------------
/usr/include/python3.8/object.h:190: error: expected unqualified-id before ';' token190 | PyType_Slot *slots; /* terminated by slot==0. */| ^
这里是python中的object文件,不应该是这个头文件出错了,而是头文件里面冲突了,在Qt中,slots是特殊的宏,define slots __attribute__((annotate("qt_slot")))
它被用来声明函数是槽函数,当qt的头文件在<pybind11/embed.h>之前时,后者的slots变量就被替换成了qt中的宏,导致分号前没有变量名字而报错。
解决方法:将<pybind11/embed.h>这个头文件放到Qt的头文件之前。
参考:https://github.com/pybind/pybind11/issues/2305#issuecomment-660540709