我正在尝试按照此处的指南将 Python 嵌入到 C++ 中:
https://docs.python.org/3.7/extending/embedding.html
这对于较旧的系统范围的 Python 2.7 安装非常有效。我现在正在尝试使用安装了我想使用的库的特定 Anaconda 环境来做同样的事情。
我的 hello world 示例是
#include <iostream>
#include <Python.h>
int main(int argc, char* argv[]){
wchar_t *program = Py_DecodeLocale(argv[0], NULL);
Py_SetProgramName(program);
Py_Initialize();
std::cout << "trying to import dolfin" << std::endl;
PyRun_SimpleString("import dolfin");
std::cout << "success?" << std::endl;
Py_Finalize();
return 0;
}
试图通过编译这个
g++ -I/home/peter/anaconda3/envs/fenicsproject/include/python3.7m/ python_from_cpp.cpp -L/home/peter/anaconda3/envs/fenicsproject/lib/python3.7/config-3.7m-x86_64-linux-gnu/ -lpython3.7m
(注 1:包含部分有效,其他标志建议链接标志,请参阅上面链接中的 1.6。)(注 2:我想最后通过 mpic++ 编译,但尝试先进行此操作。)
这给出了输出:
lto1: internal compiler error: in lto_tag_to_tree_code, at lto-streamer.h:1005
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-7/README.Bugs> for instructions.
lto-wrapper: fatal error: g++ returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
任何帮助/见解表示赞赏。