tags:

views:

465

answers:

2

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
+6  A: 

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.

Employed Russian
Oh wow. :) Strange that there are examples floating around.
Scott
Well, I guess I'm not using the bleeding edge gcc either.
Scott
I must say it's very sadistic to do this to developers! One should at LEAST print a warning at compile time saying that it's not implemented, to avoid developers loosing so much time thinking they are doing something wrong.
krico
A: 

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.