Я использую Centos 6.7, установил дистрибутив devtools-3 и "включил" его, чтобы сделать gcc 4.9.2 по умолчанию. Простая программа на C++, которая использует регулярные выражения, будет компилироваться, но не будет ссылаться.
// regex_search example
#include <iostream>
#include <string>
#include <regex>
int main()
{
    std::string s("this subject has a submarine as a subsequence");
    std::smatch m;
    std::regex e("\\b(sub)([^ ]*)");   // matches words beginning by "sub"
    std::cout << "Target sequence: " << s << std::endl;
    std::cout << "Regular expression: /\\b(sub)([^ ]*)/" << std::endl;
    std::cout << "The following matches and submatches were found:" << std::endl;
    while (std::regex_search(s, m, e)) {
        for (auto x : m) std::cout << x << " ";
        std::cout << std::endl;
        s = m.suffix().str();
    }
    return 0;
}
 