Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

my cpp file:re.cpp

#include <iostream>
#include <string>
#include <boost/regex.hpp>
int main() {

std::string s = "who,lives:in-a,pineapple under the sea?";

boost::regex re(",|:|-|\\s+");
boost::sregex_token_iterator p(s.begin( ), s.end( ), re, -1);
boost::sregex_token_iterator end;

while (p != end)
std::cout << *p++ << '\n';
}

my compile commands:

#g++ -static re.cpp /usr/local/lib/libboost_regex.a -o re

but failed with following errors:

/usr/local/lib/libboost_regex.a(static_mutex.o): In function `boost::scoped_static_mutex_lock::unlock()':
static_mutex.cpp:(.text+0x14): undefined reference to `pthread_mutex_unlock'
/usr/local/lib/libboost_regex.a(static_mutex.o): In function `boost::scoped_static_mutex_lock::lock()':
static_mutex.cpp:(.text+0x44): undefined reference to `pthread_mutex_lock'
/usr/local/lib/libboost_regex.a(static_mutex.o): In function `boost::scoped_static_mutex_lock::~scoped_static_mutex_lock()':
static_mutex.cpp:(.text+0x74): undefined reference to `pthread_mutex_unlock'
/usr/local/lib/libboost_regex.a(static_mutex.o): In function `boost::scoped_static_mutex_lock::~scoped_static_mutex_lock()':
static_mutex.cpp:(.text+0xa4): undefined reference to `pthread_mutex_unlock'
/usr/local/lib/libboost_regex.a(static_mutex.o): In function `boost::scoped_static_mutex_lock::scoped_static_mutex_lock(boost::static_mutex&, bool)':
static_mutex.cpp:(.text+0xd5): undefined reference to `pthread_mutex_lock'
/usr/local/lib/libboost_regex.a(static_mutex.o): In function `boost::scoped_static_mutex_lock::scoped_static_mutex_lock(boost::static_mutex&, bool)':
share|improve this question
I found the solution: change command as #g++ -static re.cpp /usr/local/lib/libboost_regex.a -lpthread -o re – user1600217 Aug 15 '12 at 12:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.