我无法使用 pybind11 将全局变量从 C 导出到 Python。这个问题可以从一个简单的例子中重现。假设我们有一个像这样的头文件(global.h):
#ifndef GLOBAL_H
#define GLOBAL_H
extern int array[];
#endif
该数组在 C 文件 (global.c) 中定义,如下所示:
#include "global.h"
int array[] = {1, 2, 3, 4};
我想使用 pybind11 和以下 C++ 文件 (pyglobal.cpp) 在 Python 模块中导出这个数组:
#include <pybind11/pybind11.h>
extern "C"
{
#include "global.h"
}
PYBIND11_MODULE(pyglobal, m)
{
m.attr("array") = array;
}
当我使用 CMake (CMakeLists.txt) 生成我的库时,一切正常:
cmake_minimum_required(VERSION 2.8.12)
project(pyglobal)
find_package(pybind11 PATHS ${PYBIND11_DIR} REQUIRED)
pybind11_add_module(pyglobal pyglobal.cpp global.c)
但是当我启动 python3 shell 并输入
import pyglobal
我收到以下错误消息:
> Python 3.5.2 (default, Nov 23 2017, 16:37:01)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyglobal
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: AttributeError: array
我在这里做错了什么?