=?gb2312?q?=C3=F7=20=D6=EC?= <[EMAIL PROTECTED]> wrote: > Hello! > I'm new to parrot, sorry for my pool english first. > > I downloaded parrot-0.1.2 to my debian-arm box --- > its cpu(arm920t) is s3c2410 of Samsung.
> first , I run "perl Configure.pl --cc=gcc --cxx=g++ > --link=gcc" to config parrot. The config successly > finished and generated the Makefile , but there are > wrong in the config process: > Determining architecture, OS and JIT capability...... JIT/arm is broken since quite a time. But I see no Configure option to disable JIT. The simplest way to start is probably: $ mv jit/arm jit/no-arm $ perl Configure.pl --nomanicheck Better would be to make config/auto/jit.pl a bit more intelligent to understand: $ perl Configure.pl --jitcapable=0 or to fix jit/arm/* ;) leo