Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I link to cppunit?

I think I'm missing something really stupid here.

I have libcppunit installed: (I'm using Ubuntu 12.04)

$ apt-cache policy libcppunit-dev 
libcppunit-dev:
  Installed: 1.12.1-4
  Candidate: 1.12.1-4
  Version table:
 *** 1.12.1-4 0
        500 http://archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
        100 /var/lib/dpkg/status

$ apt-cache policy libcppunit-1.12-1 
libcppunit-1.12-1:
  Installed: 1.12.1-4
  Candidate: 1.12.1-4
  Version table:
 *** 1.12.1-4 0
        500 http://archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
        100 /var/lib/dpkg/status

And I have a simple test:

#include <iostream>

#include <cppunit/ui/text/TestRunner.h>
#include <cppunit/CompilerOutputter.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

int main() {
    CppUnit::Test* suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();

    CppUnit::TextUi::TestRunner runner;
    runner.addTest(suite);
    runner.setOutputter(new CppUnit::CompilerOutputter(&runner.result(), std::cerr));

    return runner.run() ? 0 : 1;
}

And I this is the compiler output:

$ g++ -lcppunit -o test.bin test.cpp 
/tmp/ccoQDuGC.o: In function `main':
test.cpp:(.text+0x36): undefined reference to `CppUnit::TestFactoryRegistry::getRegistry(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
test.cpp:(.text+0x75): undefined reference to `CppUnit::TextTestRunner::TextTestRunner(CppUnit::Outputter*)'
test.cpp:(.text+0x8b): undefined reference to `CppUnit::TestRunner::addTest(CppUnit::Test*)'
test.cpp:(.text+0x9a): undefined reference to `CppUnit::TextTestRunner::result() const'
test.cpp:(.text+0xe2): undefined reference to `CppUnit::CompilerOutputter::CompilerOutputter(CppUnit::TestResultCollector*, std::basic_ostream<char, std::char_traits<char> >&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
test.cpp:(.text+0xf4): undefined reference to `CppUnit::TextTestRunner::setOutputter(CppUnit::Outputter*)'
test.cpp:(.text+0x150): undefined reference to `CppUnit::TextTestRunner::run(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, bool, bool, bool)'
test.cpp:(.text+0x189): undefined reference to `CppUnit::TextTestRunner::~TextTestRunner()'
test.cpp:(.text+0x227): undefined reference to `CppUnit::TextTestRunner::~TextTestRunner()'
collect2: ld returned 1 exit status

To make sure, the libraries do exist under /usr/lib

$ ls /usr/lib/ | grep cppunit
libcppunit-1.12.so.1
libcppunit-1.12.so.1.0.0
libcppunit.a
libcppunit.la
libcppunit.so

What am I missing that is causing this?

like image 818
Naddiseo Avatar asked Apr 19 '12 03:04

Naddiseo


3 Answers

You have to tell the compiler which libraries to link to after you tell it which files to compile, i.e.

g++ test.cpp -lcppunit -o test.bin 
like image 106
steffen Avatar answered Oct 14 '22 13:10

steffen


I ran into the same issue(with Ubuntu 11.04)

This appears to be a bug in Ubuntu. Your workaround "-Wl,--no-as-needed" works for me and is also mentioned as a workaround in the linked bug report. I haven't dived into it enough to discover the actual cause.

like image 1
prestomation Avatar answered Oct 14 '22 13:10

prestomation


The root cause I guess is the cppunit doc tutorial file "money_example.html" which proposes to add to the Makefile.am a line

MoneyApp_LDFLAGS = $(CPPUNIT_LIBS) -ldl

instead of the correct

MoneyApp_LDADD = $(CPPUNIT_LIBS) -ldl

or even more correct

MoneyApp_LDADD = $(CPPUNIT_LIBS)

since CPPUNIT_LIBS brings in the -ldl at any rate. LDFLAGS adds the flags right after the linker executable name, LDADD adds them in the end, eliminating the error in the original post.

like image 1
Vassilii Khachaturov Avatar answered Oct 14 '22 14:10

Vassilii Khachaturov