我在使用MacOSX上的共享库编译代码时遇到了一些麻烦。 在尝试在MacOSX上编译之前,我首先在Debian上编写了它。
以下是代码:
test.hxx:
#ifndef TEST_HXX
#define TEST_HXX
namespace test
{
class CFoo
{
/* data */
public:
CFoo (){}
virtual ~CFoo (){}
void bar();
}; /* CFoo */
} /* namespace test */
#endif /* TEST_HXX */
test.cxx:
#include <iostream>
#include "test.hxx"
void test::CFoo::bar()
{
std::cout << "Hello world!" << std::endl;
} /* bar() */
other.hxx:
#ifndef OTHER_HXX
#define OTHER_HXX
namespace other
{
class CBar
{
public:
CBar (){}
virtual ~CBar (){}
void foo();
}; /* CBar */
} /* namespace other */
#endif /* OTHER_HXX */
other.cxx:
#include <iostream>
#include "test.hxx"
#include "other.hxx"
void other::CBar::foo()
{
test::CFoo c;
c.bar();
} /* bar() */
main.cxx:
#include "other.hxx"
int main (int argc, const char *argv[])
{
other::CBar c;
c.foo();
return 0;
} /* main () */
一个简单的makefile:
LIBTEST = libtest.so
LIBOTHER = libother.so
all: $(LIBTEST) $(LIBOTHER)
g++ -ltest -lother -I. -L. main.cxx
libtest.so: test.o
g++ -shared test.o -o $(LIBTEST)
libother.so: other.o
g++ -shared other.o -o $(LIBOTHER)
test.o: test.cxx test.hxx
g++ -fPIC -c test.cxx
other.o: other.cxx other.hxx
g++ -fPIC -c other.cxx
clean:
$(RM) $(LIBOTHER) $(LIBTEST) test.o other.o a.out
所以我基本上创建了对象test.o
和other.o
,并从它们创建了两个共享库(每个对象一个)。
other.cxx
使用test.cxx
中包含的类来打印Hello world
。
所以这个makefile和代码在我的Debian上运行正常但是在尝试在MacOSX上编译时我遇到了编译错误:
g++ -fPIC -c test.cxx
g++ -shared test.o -o libtest.so
g++ -fPIC -c other.cxx
g++ -shared other.o -o libother.so
Undefined symbols for architecture x86_64:
"test::CFoo::bar()", referenced from:
other::CBar::foo() in other.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [libother.so] Error 1
它为test
编译和创建我的共享库,但在创建libother.so
时失败。
当仅使用一个共享库时(直接从Hello world
在main
中打印test
),它可以正常工作但使用多个共享库时会出现问题......
我不是Apple用户,之前从未在MacOSX上工作过,所以我真的不明白如何进行链接。这个错误对我来说真的没有意义......
感谢您帮助我理解这个错误!
答案 0 :(得分:5)
这是因为libother
使用了libtest
,但您没有与之关联。尝试
g++ -shared other.o -o libother.so -L. -ltest
-L
告诉编译器在哪里搜索库,-l
与之链接。