Re: include path for libraries

2007-05-28 Thread Mike Mattie
On Mon, 28 May 2007 02:05:24 +0200 pancake <[EMAIL PROTECTED]> wrote: > Hi to everyone! > > How can I set a new include path into the library loader of parrot? There is a hook into init_library_paths in library.c on a C level. You have to provide C code to append to the array. On a PIR level I

include path for libraries

2007-05-27 Thread pancake
Hi to everyone! How can I set a new include path into the library loader of parrot? A gcc-like '-I' flag would be desirable instead of the raw @INC like perl5 does. Is the library path crosslanguage? How parrot handles these include paths for other languages than pasm/pir? I'm mixing concepts?