Chromatic <[EMAIL PROTECTED]> wrote: > Ah, I've made Parrot build again on Linux PPC (and make testj only has > the expected t/library/streams.t failure present with make test too).
He he, great. > The attached file works as the eventual src/platform_asm.s file, at > least on my architecture. I'm not sure how to plug it in to the > generated fileset cleanly, but that's a lot easier than trying to debug > assembly code on a platform you don't have. > Leo, what do you suggest to connect the dots here? Well, we need a more generic way to include such files. * platform_asm.s is just one file and depends on $platform. But we have as $jitarchname: ppc-darwin ppc-aix ppc-linux # AFAIK This file is common for all PPC JIT architectures. OTOH there is a config dispatch on $cpu in config/gen/cpu, but that is for C files. But as this "asm.s" is JIT-specific and needed for PPC it should be included by jit.pl. Where are the config hackers ;) leo