Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
proc
/
thread-self
/
root
/
usr
/
share
/
perl
/
5.24
/
ExtUtils
/
CBuilder
/
Platform
/
//proc/self/root/proc/thread-self/root/usr/share/perl/5.24/ExtUtils/CBuilder/Platform/darwin.pm
package ExtUtils::CBuilder::Platform::darwin; $ExtUtils::CBuilder::Platform::darwin::VERSION = '0.280225'; use warnings; use strict; use ExtUtils::CBuilder::Platform::Unix; use vars qw(@ISA); @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;