up vote 0 down vote favorite
share [g+] share [fb]

I compiled the following code as a shared library using g++ -shared ...:

class Foo {
public:
  Foo() {}
  virtual ~Foo() = 0;
  virtual int Bar() = 0;
};

class TestFoo : public Foo {
public:
  int Bar() { return 0; }
};

extern "C" {
  Foo* foo;
  void init() {
    // Runtime error: undefined symbol: _ZN3FooD2Ev
    foo = new TestFoo(); // causes error
  }
  void cleanup() { delete(foo); }
  void bar() { foo->Bar(); }
}

The point is to expose the functionality of my classes (here just minimal toy classes as an example) as a simple C API with the three functions init, cleanup, and bar.

When I try to load the shared library (using dyn.load in R) I get an error:

unable to load shared library 'test.so':
test.so: undefined symbol: _ZN3FooD2Ev

So, it seems it cannot find the Foo constructor. What am I doing wrong and how can this be fixed?

UPDATE: Thanks, jbar! So it was the Foo destructor. Could I have known this from the cryptic symbol in the error message: _ZN3FooD2Ev? Does the D in FooD stand for destructor?

link|improve this question

78% accept rate
feedback

3 Answers

up vote 3 down vote accepted

We can't declare pure virtual destructor. Even if a virtual destructor is declared as pure, it will have to implement an empty body (at least) for the destructor.

link|improve this answer
Oh, an easy fix, thanks! – Frank Jul 11 '09 at 17:05
How would such a body be implemented? If I implement it for the base class g++ complains about a redefinition. – Legate Jan 17 at 10:01
feedback

UPDATE: So it was the Foo destructor. Could I have known this from the cryptic symbol in the error message: _ZN3FooD2Ev? Does the D in FooD stand for destructor?

You can use the program c++filt.

So c++filt _ZN3FooD2Ev returns "Foo::~Foo()".

link|improve this answer
2  
+1 Thank you so much for introducing me to c++filt! – Troubadour Jul 11 '09 at 23:37
You're very welcome. – Duck Jul 11 '09 at 23:50
feedback

Regardring your update, "_ZN3FooD2Ev" is "Foo::~Foo()" mangled.

Check out the "demangle" program.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.