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

📄 darwin.pm

📁 source of perl for linux application,
💻 PM
字号:
package ExtUtils::CBuilder::Platform::darwin;use strict;use ExtUtils::CBuilder::Platform::Unix;use vars qw($VERSION @ISA);$VERSION = '0.21';@ISA = qw(ExtUtils::CBuilder::Platform::Unix);sub compile {  my $self = shift;  my $cf = $self->{config};  # -flat_namespace isn't a compile flag, it's a linker flag.  But  # it's mistakenly in Config.pm as both.  Make the correction here.  local $cf->{ccflags} = $cf->{ccflags};  $cf->{ccflags} =~ s/-flat_namespace//;  $self->SUPER::compile(@_);}1;

⌨️ 快捷键说明

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