Re: [ANNOUNCEMENT] Updated: cmake-3.14.5-1

2019-07-02 Thread Ivan Shynkarenka
Just want to confirm that I successfully build all my projects that support Cygwin with a new cmake-3.14.5-1. Some of my projects are open sourced and used Appveyour as a CI build with Cygwin build step (e.g. https://ci.appveyor.com/project/chronoxor/CppCommon ). Marco thanks a lot for the package

Re: [ANNOUNCEMENT] Test: cmake-3.13.1-1

2019-05-30 Thread Ivan Shynkarenka
> > I have no problem, but Tony thinks that as the cmake test suite test > is not perfect so he prefers to stay with the old one. > > 99% tests passed, 4 tests failed out of 548 > > > I was not able to identify the failures root cause, > and I suspect they are not fundamental and related to the tes

Is any chance to update cmake package?

2018-06-24 Thread Ivan Shynkarenka
Hello! Cygwin cmake package is too old with 3.6.2-1 version. Is there any chance to update the package to some recent version? According to https://cmake.org/download/ the latest cmake version is 3.11.4 Thanks in advance! -- Problem reports: http://cygwin.com/problems.html FAQ:

GCC 7.3.0 -std=gnu++17 failed to getline() from std::ifstream

2018-06-05 Thread Ivan Shynkarenka
Hello I use x64 bit Cygwin and it failed in my home, work and Appveyor. I add cygcheck.out with my environment. I'm sorry about misspell prefix space in my prev example. Please try the following one: #include #include int main(int argc, char** argv) { std::string line; std::ifstream

GCC 7.3.0 -std=gnu++17 failed to getline() from std::ifstream

2018-06-05 Thread Ivan Shynkarenka
Hello, I found an issue with Cygwin GCC 7.3.0 when building with -std=gnu++17 flag. The following test.cpp shows the issue: #include #include int main(int argc, char** argv) { std::string line; std::ifstream stream(" test.cpp"); while (getline(stream, line)) std::cout <<