11

次のコードでリンカーエラーが発生します。

#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
4

2 に答える 2

8

から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();

まだ準備ができていないと思います。

更新: 現在の最前線の GCC (SVN @153546) はまだ実装されていないようです。

于 2009-10-26T05:58:54.520 に答える
1

実装状況は http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt01ch01.html#manual.intro.status.standard.tr1から取得できます。

正規表現を使用するには、boost ライブラリをインストールすると、その tr1 には既に正規表現が含まれています。

于 2009-12-04T05:34:52.077 に答える