darwin.pm

来自「source of perl for linux application,」· PM 代码 · 共 23 行

PM
23
字号
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 + =
减小字号Ctrl + -
显示快捷键?