This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Teach ExtUtils::CBuilder to handle mod2fname properly
[perl5.git] / dist / ExtUtils-CBuilder / lib / ExtUtils / CBuilder / Platform / cygwin.pm
CommitLineData
6b09c160
YST
1package ExtUtils::CBuilder::Platform::cygwin;
2
3use strict;
4use File::Spec;
5use ExtUtils::CBuilder::Platform::Unix;
6
7use vars qw($VERSION @ISA);
5e4a7f81 8$VERSION = '0.280213';
6b09c160
YST
9@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
10
506098d4
DG
11# TODO: If a specific exe_file name is requested, if the exe created
12# doesn't have that name, we might want to rename it. Apparently asking
13# for an exe of "foo" might result in "foo.exe". Alternatively, we should
14# make sure the return value is correctly "foo.exe".
15# C.f http://rt.cpan.org/Public/Bug/Display.html?id=41003
6b09c160
YST
16sub link_executable {
17 my $self = shift;
6b09c160
YST
18 return $self->SUPER::link_executable(@_);
19}
20
21sub link {
22 my ($self, %args) = @_;
673223b5
DM
23
24 my $lib = $self->{config}{useshrplib} ? 'libperl.dll.a' : 'libperl.a';
6b09c160 25 $args{extra_linker_flags} = [
673223b5 26 File::Spec->catfile($self->perl_inc(), $lib),
6b09c160
YST
27 $self->split_like_shell($args{extra_linker_flags})
28 ];
29
30 return $self->SUPER::link(%args);
31}
32
331;