>-----Original Message----- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of >Pinhas Krengel >Sent: Tuesday, January 27, 2004 9:09 AM >To: [EMAIL PROTECTED] >Subject: perlcc does not work on my cygwin-please help > >perlcc does not work on my cygwin (win XP). I have tried to re-install >cygwin, read the assorted documents but can not figure out what is wrong. >It seems to be a very basic problem as it reports error of not finding some >file that are installed in my perl package. For example perl.h is not found. >The file is on my system at >/lib/perl5/5.8.2/cygwin-thread-multi-64int/CORE/perl.h. A place where cygwin >selected to install it. >I use mingw as the gcc compiler. It was recommended to install it not under
The normal Cygwin perlcc works just fine. perlcc creates a binary that is linked to the Perl DLL. The Perl DLL is linked to Cygwin. What you are trying to do, that is making a non-cygwin binary that links to a Cygwin dll, makes no sense. And of course, the mingw gcc will not understand Cygwin paths. Also, when you have Cygwin installed there's no real need to install mingw, you can use gcc -mno-cygwin instead with the w32api package, which is pretty much the same thing. If you want to use perlcc to create binaries that don't depend on Cygwin, you will have to compile a copy of Perl with mingw then use its perlcc. You might be able to get away with using ExtUtils::FakeConfig with activeperl and mingw if you don't want to use ActivePerl's perlcc which requires visual studio. This is all completely offtopic by the way. -- Rafael -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/