python - 使用 Boost.python 构建 Hello World

标签 python c++ boost makefile

我只是在学习使用 Boost.Python,所以如果它看起来很傻,请原谅。 我有来自 here 的这些代码在 python 中包装一个 c++ 函数。
我还搜索了几个小时以找到一个工作示例,最相关的问题是 this ,但我在构建和运行时仍然遇到问题。

这是zoo.cpp

#include <boost/python.hpp>
#include <string>

/*
 * This is the C++ function we write and want to expose to Python.
 */
const std::string hello() {
    return std::string("hello, zoo");
}

/*
 * This is a macro Boost.Python provides to signify a Python extension module.
 */
BOOST_PYTHON_MODULE(zoo) {
    // An established convention for using boost.python.
    using namespace boost::python;

    // Expose the function hello().
    def("hello", hello);
}

visit_zoo.py

import zoo
# In zoo.cpp we expose hello() function, and it now exists in the zoo module.
assert 'hello' in dir(zoo)
# zoo.hello is a callable.
assert callable(zoo.hello)
# Call the C++ hello() function from Python.
print zoo.hello()

这是ma​​kefile

CC = g++
PYLIBPATH = $(shell python-config --exec-prefix)/lib
LIB = -L$(PYLIBPATH) $(shell python-config --libs) -lboost_python
OPTS = $(shell python-config --include) -O2

default: zoo.so
    @python ./visit_zoo.py

zoo.so: zoo.o
    $(CC) $(LIB) -Wl,-rpath,$(PYLIBPATH) -shared $< -o $@

zoo.o: zoo.cpp Makefile
    $(CC) $(OPTS) -c $< -o $@

clean:
    rm -rf *.so *.o

.PHONY: default clean

错误消息:

g++ Usage: /usr/bin/python-config --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--configdir -O2 -c zoo.cpp -o zoo.o
g++: error: Usage:: No such file or directory
g++: error: missing argument to ‘--prefix’
/bin/sh: 1: --exec-prefix: not found
/bin/sh: 1: --includes: not found
/bin/sh: 1: --libs: not found
/bin/sh: 1: --cflags: not found
/bin/sh: 1: --ldflags: not found
/bin/sh: 1: --extension-suffix: not found
/bin/sh: 1: --help: not found
/bin/sh: 1: --configdir: not found
Makefile:13: recipe for target 'zoo.o' failed
make: *** [zoo.o] Error 127

最佳答案

我使用了这个有效的 makefile。谢谢阅读。我从 here 得到了帮助

PYTHON_VERSION = 2.7
PYTHON_INCLUDE = /usr/include/python$(PYTHON_VERSION)

# location of the Boost Python include files and library

BOOST_INC = /usr/include
BOOST_LIB = /usr/lib

# compile mesh classes
TARGET = zoo

$(TARGET).so: $(TARGET).o
    # g++ -shared -Wl,--export-dynamic $(TARGET).o -L$(BOOST_LIB) -lboost_python-$(PYTHON_VERSION) -L/usr/lib/python$(PYTHON_VERSION)/config -lpython$(PYTHON_VERSION) -o $(TARGET).so
    g++ -shared -Wl,--export-dynamic $(TARGET).o -L$(BOOST_LIB) -lboost_python -L/usr/lib/python$(PYTHON_VERSION)/config -lpython$(PYTHON_VERSION) -o $(TARGET).so

$(TARGET).o: $(TARGET).cpp
    g++ -I$(PYTHON_INCLUDE) -I$(BOOST_INC) -fPIC -c $(TARGET).cpp

关于python - 使用 Boost.python 构建 Hello World ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46313063/

相关文章:

Python:如何提取字典条目的变量名?

javascript - Cordova 混合应用程序 - HTTP 请求非常慢

c++ - 如何将静态类成员放入命名空间中?

c++ - Typedef 泛化

c++ - 为 iOS 4.x 使用 Boost 和 C++0x 方言

python - 如何使用 matplotlib 将数组中的数字绘制为注释?

Python:在播放过程中改变声音的速度

c++ - 替换装饰器模式以强制执行创建顺序

c++ - 非重复系列的非重复数字

c++ - std::bind 占位符的重载运算符