Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report.
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=224320
Summary: Unable to create sub named "" at /usr/lib64/perl5/5.8.8/x86_64-linux-thread- multi/XSLoader.pm line 99 Product: Fedora Core Version: fc6 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: normal Component: perl AssignedTo: rnorwood@redhat.com ReportedBy: backes@rhrk.uni-kl.de QAContact: dkl@redhat.com CC: fedora-perl-devel-list@redhat.com
Description of problem: perlcc is broken!
Version-Release number of selected component (if applicable):perl-5.8.8-10
How reproducible: Each time
Steps to Reproduce: 1.compile the following text with perlcc: #!/usr/bin/perl use strict; my $datei; my $i; my @csv_dateien = glob "*.csv"; foreach $datei (@csv_dateien) { open (INHALT, "+<$datei"); open (NEU, ">>new$datei") or die "Kann die Datei $datei nicht oeffnen: $!"; while(defined($i = <INHALT>)) { $i =~ s/,/./g; $i =~ s/;/,/g; print NEU $i; } close INHALT; close NEU; }
2. Make some file named ...csv 3. start a.out
Actual results: Unable to create sub named "" at /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/XSLoader.pm line 99.
Expected results: a.out runs correctly
Additional info:
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report.
Summary: Unable to create sub named "" at /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/XSLoader.pm line 99
https://bugzilla.redhat.com/show_bug.cgi?id=224320
------- Additional Comments From backes@rhrk.uni-kl.de 2008-02-24 05:15 EST ------- The problem persists in Fedora 8!
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report.
Summary: Unable to create sub named "" at /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/XSLoader.pm line 99
https://bugzilla.redhat.com/show_bug.cgi?id=224320
mmaslano@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |WONTFIX
------- Additional Comments From mmaslano@redhat.com 2008-03-17 06:23 EST ------- Sorry, but I won't fix it, because upstream decided to dump whole perlcc thing.
Official Perl 5.10 release note: Removal of the bytecode compiler and of perlcc perlcc, the byteloader and the supporting modules (B::C, B::CC, B::Bytecode, etc.) are no longer distributed with the perl sources. Those experimental tools have never worked reliably, and, due to the lack of volunteers to keep them in line with the perl interpreter developments, it was decided to remove them instead of shipping a broken version of those. The last version of those modules can be found with perl 5.9.4.
perl-devel@lists.fedoraproject.org