X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-1.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SARE_MSGID_LONG45,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org MIME-Version: 1.0 In-Reply-To: <4BD0F74C.9000509@gmail.com> References: <4BD0F74C DOT 9000509 AT gmail DOT com> Date: Sun, 25 Apr 2010 23:09:54 +0200 Message-ID: Subject: Re: perl6 fails From: Reini Urban To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com 2010/4/23 David Vergin : > I'm running cygwin on Windows 7 Pro with rakudo 2.3.0 and the most recent > perl6 installed. cygcheck.out attached. > > Simple perl6 test scripts fail. As does command line option -v. Am I missing > something? Is something broken? Thanks. yes, parrot is broken, as it compiled rakudo with including config.pir at run-time and not config.fpmc (the frozen state) and so stat.pasm is missing from the distro. An upstream error. Easy fix: Add this file /usr/lib/parrot/2.3.0/include/stat.pasm with: .macro_const STAT_EXISTS 0 .macro_const STAT_FILESIZE 1 .macro_const STAT_ISDIR 2 .macro_const STAT_ISREG 3 .macro_const STAT_ISDEV 4 .macro_const STAT_CREATETIME 5 .macro_const STAT_ACCESSTIME 6 .macro_const STAT_MODIFYTIME 7 .macro_const STAT_CHANGETIME 8 .macro_const STAT_BACKUPTIME 9 .macro_const STAT_UID 10 .macro_const STAT_GID 11 I'll try to get this fixed upstream. -- Reini Urban http://phpwiki.org/ http://murbreak.at/ -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple