Ticket #511 (closed cage: done)
[CAGE] deprecate searching runtime/parrot for libraries and includes
Reported by: | allison | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | library | Version: | |
Severity: | medium | Keywords: | |
Cc: | Language: | ||
Patch status: | Platform: |
Description
Currently, the library and include searches hit runtime/parrot in addition to runtime/parrot/library or runtime/parrot/include. This behavior is deprecated and will be removed after 1.4.
This means that all calls to:
load_bytecode 'library/foo.pbc' .include 'include/bar.pir'
Will need to be changed to a simple:
load_bytecode 'foo.pbc' .include 'bar.pir'
And the following is just plain evil and never should have been done in the first place:
.include 'library/dumper.pir'
Move dumper.pir to runtime/parrot/include, or split it into the "library" portions and the "include" portions.
Change History
Note: See
TracTickets for help on using
tickets.