[Bug libstdc++/90646] std::filesystem::absolute( "yourpathhere" ) segfaults

2019-05-30 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90646 --- Comment #9 from Jonathan Wakely --- (In reply to myLC from comment #8) > This is possible. I built 9.1.0 from source and got new issues, though. > Chances are, my system could be too old. The std::filesystem code (and everything else in libs

[Bug libstdc++/90646] std::filesystem::absolute( "yourpathhere" ) segfaults

2019-05-29 Thread myLC at gmx dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90646 --- Comment #8 from myLC at gmx dot net --- (In reply to Jonathan Wakely from comment #7) > It could also be Bug 90557 (which is fixed in the gcc-9-branch but present > in the gcc 9.1.0 release) but the symptoms don't look similar. This is possib

[Bug libstdc++/90646] std::filesystem::absolute( "yourpathhere" ) segfaults

2019-05-28 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90646 --- Comment #7 from Jonathan Wakely --- It could also be Bug 90557 (which is fixed in the gcc-9-branch but present in the gcc 9.1.0 release) but the symptoms don't look similar.

[Bug libstdc++/90646] std::filesystem::absolute( "yourpathhere" ) segfaults

2019-05-28 Thread myLC at gmx dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90646 --- Comment #6 from myLC at gmx dot net --- I'm afraid that wasn't it. I rebuilt the Nana (GUI) library with the same compiler (gcc/c++-9.1.0) and I'm still facing the same problem. Valgrind croaked with 'Process finished with exit code 9', which

[Bug libstdc++/90646] std::filesystem::absolute( "yourpathhere" ) segfaults

2019-05-27 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90646 --- Comment #5 from Jonathan Wakely --- Is it possible you're mixing code compiled with GCC 8 and GCC 9? In general that works, but not for the new C++17 components that were still experimental in GCC 8, such as filesystem::path. Valgrind might

[Bug libstdc++/90646] std::filesystem::absolute( "yourpathhere" ) segfaults

2019-05-27 Thread myLC at gmx dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90646 myLC at gmx dot net changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug libstdc++/90646] std::filesystem::absolute( "yourpathhere" ) segfaults

2019-05-27 Thread myLC at gmx dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90646 --- Comment #3 from myLC at gmx dot net --- (In reply to Andrew Pinski from comment #2) > Can you provide a compilable example? Good point. The example works, hence the problem seems to be somewhere else: #include #include #include #include

[Bug libstdc++/90646] std::filesystem::absolute( "yourpathhere" ) segfaults

2019-05-27 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90646 Andrew Pinski changed: What|Removed |Added Component|c++ |libstdc++ --- Comment #2 from Andrew Pin