在使用boost的c中你好世界python扩展?

在使用boost的c中你好世界python扩展?,第1张

概述这是我使用boost进行python扩展的第一次尝试.有人可以帮助我理解导致编译错误的原因吗? #include <iostream> using namespace std; void say_hello(const char* name) { cout << 'Hello ' << name <&lt

这是我使用boost进行python扩展的第一次尝试.有人可以帮助我理解导致编译错误的原因吗?

#include 

user @ host:〜$g main.cpp -o test.so

In file included from /usr/include/boost/python/detail/prefix.hpp:13:0,from /usr/include/boost/python/module.hpp:8,from main.cpp:8:
/usr/include/boost/python/detail/wrap_python.hpp:50:23: Fatal error: pyconfig.h: No such file or directory compilation terminated.

最佳答案

/usr/include/boost/python/detail/wrap_python.hpp:50:23:
Fatal error: pyconfig.h: No such file
or directory compilation terminated.

这一行告诉它为什么不起作用.您的编译器不知道pyconfig.h文件在哪里.你有两个选择:

>将pyconfig.h放在一个位置
g知道(即你的
项目目录)
>添加-I DIRECTORY(这是资本i,
不小写L)标志为g
将为头文件搜索DIRECTORY

g++ -I /path/to/my/include/files main.cpp

总结

以上是内存溢出为你收集整理的在使用boost的c中你好世界python扩展?全部内容,希望文章能够帮你解决在使用boost的c中你好世界python扩展?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1046731.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)