On Wed 19 Sep 2001 11:15, "H.Merijn Brand" <[EMAIL PROTECTED]> wrote:
> On Tue 18 Sep 2001 20:43, Dan Sugalski <[EMAIL PROTECTED]> wrote:
> > Okay, folks, the following platforms are considered core for the parrot 
> > interpreter. That means we need to run on all of them for any release of 
> > the interpreter to be considerd OK. They are:
> > 
> >     Linux (x86)
> >     CygWin
> >     Win32
> >     Tru64
> >     OpenVMS (Alpha)
> >     Solaris (Sparc)
> >     FreeBSD (x86)
> > 
> > If a platform's not here it's not because we don't want to run on it, 
> > rather it's because we can't guarantee the manpower to make it right. (If 
> > we can, then new platforms can and will come on board)
> > 
> > So remember, all the world is not *X*, for any value of X you might have...

And, maybe even more important, not all the world has gcc!

in build_interp_starter.pl I find:
--8<---
#define DO_OP(w,x,y,z) do { \\
    x = (void *)z->opcode_funcs; \\
    (void *)y = x[*w]; \\
    w = (y)(w,z); \\
 } while (0);
EOI
-->8---

(cast)foo = bar; syntax is *not* supported in most non-GNU C compilers:

cc -DDEBUGGING -Ae -D_HPUX_SOURCE -I/pro/local/include -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64  -I.. -I./include -g -o interpreter.o -c interpreter.c
cc: "interpreter.c", line 44: warning 524: Cast (non-lvalue) appears on left-hand side 
of assignment.
cc: "interpreter.c", line 44: error 1549: Modifiable lvalue required for assignment 
operator.

(Almost the same applies to AIX)

Please fix ASAP, so I can send useful test reports ;)

> If the nightly builds start OK, I could add a daily report for
> 
>       HP-UX 11.00 HPc/gcc 32/64 threading/non-threading
>       HP-UX 10.20 HPc     32    threading/non-threading
>       AIX 4.3.3   vac/gcc 32/64 threading/non-threading
>       AIX 4.2.1   xlc     32    threading/non-threading
> 
> If that's what it takes to get it on the list.
> 
> -- 
> H.Merijn Brand    Amsterdam Perl Mongers (http://www.amsterdam.pm.org/)
> using perl-5.6.1, 5.7.1 & 629 on HP-UX 10.20 & 11.00, AIX 4.2, AIX 4.3,
>   WinNT 4, Win2K pro & WinCE 2.11.  Smoking perl CORE: [EMAIL PROTECTED]
> http:[EMAIL PROTECTED]/   [EMAIL PROTECTED]
> send smoke reports to: [EMAIL PROTECTED], QA: http://qa.perl.org

-- 
H.Merijn Brand    Amsterdam Perl Mongers (http://www.amsterdam.pm.org/)
using perl-5.6.1, 5.7.1 & 629 on HP-UX 10.20 & 11.00, AIX 4.2, AIX 4.3,
  WinNT 4, Win2K pro & WinCE 2.11.  Smoking perl CORE: [EMAIL PROTECTED]
http:[EMAIL PROTECTED]/   [EMAIL PROTECTED]
send smoke reports to: [EMAIL PROTECTED], QA: http://qa.perl.org

Reply via email to