Cygwin64: openssl target arch mismatch

2015-08-17 Thread zosrothko
Hi Everybody It seems that the Cygwin-X86_64 setup is installing the cygwin32 openssl package as show in the below window capture and the find command result. Did I miss something? FrancisANDRE@idefix /usr> find . -name "*ssl.a" ./i686-pc-cygwin/sys-root/usr/lib/libssl.a ./lib/w32api/libw3ssl

Re: g++ linker problem with libcygwin.a

2014-03-16 Thread zosrothko
Hi Here the definition of the cmain.c program, part of libcygwin.a. This code has a "main" entry point which is calling the WinMain by the end So the question remains: Why g++/ld links with this "main" entry instead of the one of the user's main program? zos /* libcmain.c Copyright 1996

cvs localtion for /usr/include/*

2014-03-15 Thread zosrothko
Hello I am looking for the cvs location of all the /usr/include/* includes files but did not found any. I checked out the repository :pserver:anon...@cygwin.com:/cvs/src. Did I miss something? zos -- View this message in context: http://cygwin.1069669.n5.nabble.com/cvs-localtion-for-usr-inc

Re: C++11 program link failure under GCC 4.8.2-1

2014-03-12 Thread zosrothko
Hi Below are the compile time __STRICT_ANSI__ defines for various standards supported by g++ FrancisANDRE@idefix /usr/include $ gcc -xc++ -std=c++0x -dM -E - < /dev/null | grep ANSI #define __STRICT_ANSI__ 1 FrancisANDRE@idefix /usr/include $ gcc -xc++ -std=c++11 -dM -E - < /dev/null | grep ANSI