⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cygwin.pm

📁 source of perl for linux application,
💻 PM
字号:
package ExtUtils::CBuilder::Platform::cygwin;use strict;use File::Spec;use ExtUtils::CBuilder::Platform::Unix;use vars qw($VERSION @ISA);$VERSION = '0.21';@ISA = qw(ExtUtils::CBuilder::Platform::Unix);sub link_executable {  my $self = shift;  # $Config{ld} is set up as a special script for building  # perl-linkable libraries.  We don't want that here.  local $self->{config}{ld} = 'gcc';  return $self->SUPER::link_executable(@_);}sub link {  my ($self, %args) = @_;  $args{extra_linker_flags} = [    File::Spec->catdir($self->perl_inc(), 'libperl.dll.a'),    $self->split_like_shell($args{extra_linker_flags})  ];  return $self->SUPER::link(%args);}1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -