On 05/29/2018 05:32 PM, Alberto Escrig Vidal wrote: > > Thanks so much Jon! > > > I have noticed a couple of issues with g++-7. > > > 1) > > > #include > #include > #include > > int main() > { > std::string Str; > std::stringstream ss("hello"); > std::getline(ss,Str); > std::cout << Str; > > return 0; > } > > Compiling the above program with: > > g++ -g -std=c++17 foo.cpp > > Compiles just fine, but aborts when running it. > > Running it with gdb: > > Program received signal SIGABRT, Aborted. > 0x6326126a in cygstdc++-6!_ZNSs7reserveEj () from /usr/bin/cygstdc++-6.dll I suspect --enable-fully-dynamic-string may affect it, but this breaks libstdc++ ABI. I'll test it soon-ish.