Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.145.89.181
package ExtUtils::CBuilder::Platform::dec_osf;
$ExtUtils::CBuilder::Platform::dec_osf::VERSION = '0.280225';
use warnings;
use strict;
use ExtUtils::CBuilder::Platform::Unix;
use File::Spec;
use vars qw(@ISA);
@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
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;
|