Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正規表現にブースト ライブラリを使用しています。boost::regex() 関数を使用して正規表現をコンパイルしました。この関数呼び出しによってスローされた例外をキャッチする必要があります。だから私boost:regex_errorはcatch()で使いました。
boost:regex_error
ただし、この関数を使用すると、次のエラーが発生します。
undefined symbol: _ZTIN5boost11regex_errorE
上記のエラーの理由は何ですか?
とリンクする必要がありboost_regexます。GCC では、-lboost_regexリンカー呼び出しに追加します。他のコンパイラには同等のオプションがあります。
boost_regex
-lboost_regex
$ c++filt _ZTIN5boost11regex_errorE typeinfo for boost::regex_error
そのため、typeinfo がありません。RTTI (実行時型情報) を有効にしてプロジェクトをコンパイルする必要があると思います。
また
typeinfo への g++ 未定義参照