#511: [CAGE] deprecate searching runtime/parrot for libraries and includes
---------------------+------------------------------------------------------
 Reporter:  allison  |       Owner:     
     Type:  cage     |      Status:  new
 Priority:  normal   |   Milestone:     
Component:  library  |     Version:     
 Severity:  medium   |    Keywords:     
     Lang:           |       Patch:     
 Platform:           |  
---------------------+------------------------------------------------------
 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.

-- 
Ticket URL: <https://trac.parrot.org/parrot/ticket/511>
Parrot <https://trac.parrot.org/parrot/>
Parrot Development
_______________________________________________
parrot-tickets mailing list
[email protected]
http://lists.parrot.org/mailman/listinfo/parrot-tickets

Reply via email to