chromatic wrote:
# New Ticket Created by chromatic
# Please include the string: [perl #44745]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=44745 >
We use the PBC_COMPAT top-level file to keep track of changes to the Parrot
ByteCode format. When it changes in an incompatible way, we need to rebuild
all of the .pbc files in the system, especially those under compilers/.
Am not sure which .pbc files "under compilers/" you're referring to.
When I search for *.pbc files in a pre-configuration state, this is what
I get:
[parrot] 505 $ fnsa . '*.pbc'
./t/native_pbc/integer_1.pbc
./t/native_pbc/integer_2.pbc
./t/native_pbc/integer_3.pbc
./t/native_pbc/integer_4.pbc
./t/native_pbc/number_1.pbc
./t/native_pbc/number_2.pbc
./t/native_pbc/number_3.pbc
./t/native_pbc/number_4.pbc
./t/native_pbc/number_5.pbc
./t/native_pbc/string_1.pbc
./t/native_pbc/string_2.pbc
Are you referring to .pbc files which are created during configuration?
Or during build?
kid51