簡體   English   中英

無法加載 Boost.Python 模塊 - 未定義的符號

[英]Can't load Boost.Python module - undefined symbols

我有一個用 C 編寫的庫,需要從 Python 訪問,所以我使用 Boost.Python 包裝了它。 我可以毫無問題地將我的庫編譯成 Boost .so 文件,但是當我嘗試將它加載到 Python 中時(使用import tropmodboost ),我收到以下錯誤:

ImportError: ./tropmodboost.so: undefined symbol: _Z12simplex_freeP7simplex

發現這是一個常見的錯誤,通常可以通過在我的 g++ 鏈接器調用中重新排序-l指令來修復它,但據我所知,我的已經沒問題了。

這是我在 Ubuntu 上運行的 Makefile 的文本:

# location of the Python header files
PYTHON_VERSION = 2.7
PY_VER2        = 27

# various include directories, used separately in different compiler tasks
PYN_INC = /usr/include/python$(PYTHON_VERSION)
IGH_INC = /usr/local/include/igraph
BST_INC = /usr/include

# library locations for linking
LS = -L/usr/lib/x86_64-linux-gnu -L/usr/local/lib -L/usr/lib/python$(PYTHON_VERSION)/config
lS = -lboost_python-py$(PY_VER2) -lpython$(PYTHON_VERSION) 

# source files for different compiler tasks
CORE_SRC = permutation_src.c permutation_parity.c split.c simplex.c simplex_src.c build_complex.c
TEST_SRC = main.c tests/tests.c -ligraph -lm

# objects for linking the core to the boost module
CORE_OBJS = permutation_src.o permutation_parity.o split.o simplex.o simplex_src.o build_complex.o

.PHONY: clean tests

main: tropmod.boost.o
    g++ -shared -Wl,--export-dynamic tropmod.boost.o $(LS) $(lS) $(CORE_OBJS) -o tropmodboost.so

tropmod.boost.o: tropmod.boost.cpp tmstuff
    g++ -I$(PYN_INC) -I$(BST_INC) -I$(IGH_INC) -fPIC -c tropmod.boost.cpp

tmstuff: main.c permutation_src.c permutation_parity.c split.c simplex.c simplex_src.c tests/tests.c
    gcc -I. -I=$(IGH_INC) -fPIC -c $(CORE_SRC)

debug: main.c permutation_src.c permutation_parity.c split.c simplex.c simplex_src.c tests/tests.c
    gcc -I. -I=$(IGH_INC) -g -fPIC -c $(CORE_SRC)

tests:
    gcc -I. -I=$(IGH_INC) -g -o tmtest $(CORE_SRC) $(TEST_SRC) -L/usr/local/lib -ligraph -lm

clean:
    rm *.o *.so

調用ldd tropmodboost.so輸出:

linux-vdso.so.1 =>  (0x00007ffff79a3000)
libpython2.7.so.1.0 => /usr/lib/x86_64-linux-gnu/libpython2.7.so.1.0 (0x00007f34ea732000)
libboost_python-py27.so.1.58.0 => /usr/lib/x86_64-linux-gnu/libboost_python-py27.so.1.58.0 (0x00007f34ea4e6000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f34ea163000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f34e9f4d000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f34e9b84000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f34e9966000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f34e974c000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f34e9548000)
libutil.so.1 => /lib/x86_64-linux-gnu/libutil.so.1 (0x00007f34e9344000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f34e903b000)
/lib64/ld-linux-x86-64.so.2 (0x0000561fcfee3000)

這是 .hpp 文件中的一個例外,顯示了 Boost 包裝器代碼本身:

#include <boost/python/class.hpp>
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
#include <boost/python/list.hpp>
#include <boost/python/object.hpp>

[...]

BOOST_PYTHON_MODULE(tropmodboost) {

    using namespace boost::python;

    class_<ConfigSpace>("ConfigSpace", init<int, int>())
        .def("destroy", &ConfigSpace::destroy)
        .def("getTraceOfPerm", &ConfigSpace::getTraceOfPerm)
        ;


}

在我的一些目標文件上運行nm后,我發現在未定義的符號_Z12simplex_freeP7simplex ,在_Z12simplex_freeP7simplex中定義為simplex_free ,大概是因為它是使用 gcc 從 simplex.c 編譯的。 換句話說,我認為 gcc 和 g++ 的命名方式彼此不同,所以我將所有內容都切換到 g++ 並將我的 C 代碼編譯為 C++,從而解決了問題。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM