1package ExtUtils::CBuilder::Platform::dec_osf;
2
3use warnings;
4use strict;
5use ExtUtils::CBuilder::Platform::Unix;
6use File::Spec;
7
8our $VERSION = '0.280240'; # VERSION
9our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
10
11sub link_executable {
12  my $self = shift;
13  # $Config{ld} is 'ld' but that won't work: use the cc instead.
14  local $self->{config}{ld} = $self->{config}{cc};
15  return $self->SUPER::link_executable(@_);
16}
17
181;
19