-Scott
--
Jonathan Scott Duff
du...@pobox.com
No. We have:
load_bytecode => Parrot_load_bytecode
*.pbc => PackFile_append.pbc => Parrot_readbc =>
Parrot_locate_runtime_file( ... PARROT_RUNTIME_FT_PBC)
else => IMCC_compile_file => imcc_compile_file =>
Parrot_locate_runtime_file( ... PARROT_RUNTIME_FT_SOURCE)
In Parrot_locate_runtime_file() there is no special case for these file
types, they go along with the include paths, which isn't quite right.
Therefore we'd need another default search path for these two file
kinds.
Takers wanted.
> -Scott
leo
Fixed.
load_bytecode "PGE.pbc" # should work now
i.e. load_bytecode searches now:
- runtime/parrot/library/
- runtime/parrot/
- ./
currently prefixed by the directory parrot was built in.
prefix path for an installed parrot will follow soon.
> -Scott
leo