2010/4/23 David Vergin <dver...@gmail.com>: > 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