golden hour
/usr/share/perl5/ExtUtils/CBuilder/Platform
⬆️ Go Up
Upload
File/Folder
Size
Actions
Unix.pm
1.02 KB
Del
OK
VMS.pm
10.75 KB
Del
OK
Windows
-
Del
OK
Windows.pm
8.83 KB
Del
OK
aix.pm
621 B
Del
OK
cygwin.pm
928 B
Del
OK
darwin.pm
516 B
Del
OK
dec_osf.pm
424 B
Del
OK
os2.pm
2.67 KB
Del
OK
Edit: dec_osf.pm
package ExtUtils::CBuilder::Platform::dec_osf; use strict; use ExtUtils::CBuilder::Platform::Unix; use File::Spec; use vars qw($VERSION @ISA); @ISA = qw(ExtUtils::CBuilder::Platform::Unix); $VERSION = '0.280206'; sub link_executable { my $self = shift; # $Config{ld} is 'ld' but that won't work: use the cc instead. local $self->{config}{ld} = $self->{config}{cc}; return $self->SUPER::link_executable(@_); } 1;
Save