vote up 2 vote down star

I get a linker error with the following code:

#include <regex>

int main()
{
    std::regex rgx("ello");
    return 0;
}

test.o: In function `basic_regex':
/usr/lib/gcc/i586-redhat-linux/4.4.1/../../../../include/c++/4.4.1/tr1_impl/regex:769: undefined reference to `std::basic_regex<char, std::regex_traits<char> >::_M_compile()'
collect2: ld returned 1 exit status
flag

johndcook.com/cpp_regex.html#headernamespace/… – aJ Oct 26 at 5:49
I found that std::tr1 doesn't exist on my compiler. – Scott Oct 26 at 5:50
My version is: gcc version 4.4.1 20090725 (Red Hat 4.4.1-2) (GCC) – Scott Oct 26 at 5:52
Try: beans.seartipy.com/2006/12/… – dirkgently Oct 26 at 5:54
For the record, boost will work quite well instead. – GMan Oct 26 at 14:47

2 Answers

vote up 4 vote down check

From gcc-4.4.1/include/c++/4.4.1/tr1_impl/regex

template <...>
class basic_regexp {
...
   private:
      /**
       * @brief Compiles a regular expression pattern into a NFA.
       * @todo Implement this function.
       */
      void _M_compile();

I guess it's not ready yet.

UPDATE: current bleeding edge GCC (SVN @153546) doesn't appear to have the implementation yet.

link|flag
Oh wow. :) Strange that there are examples floating around. – Scott Oct 26 at 5:59
Well, I guess I'm not using the bleeding edge gcc either. – Scott Oct 26 at 6:00
vote up 0 vote down

you may get the implmentation status from: http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt01ch01.html#manual.intro.status.standard.tr1

to use regex, you could install boost library and their tr1 has already included regex.

link|flag

Your Answer

Get an OpenID
or

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