Lines Matching refs:Config
11 use Config;
16 my $cc = $Config{'cc'};
17 if ( $Config{usecrosscompile} && !can_run($cc) ) {
34 my $skip_exe = $^O eq 'os2' && $Config{ldflags} =~ /(?<!\S)-Zexe\b/;
36 $exe .= $Config{'exe_ext'} unless $skip_exe; # Linker will auto-append it
37 my $obj = 'embed_test' . $Config{'obj_ext'};
63 push(@cmd2,$Config{'ld'}, $Config{'ldflags'}, "/exe=$exe");
73 if ($^O eq 'dec_osf' && !defined $Config{usedl}) {
86 $ccflags =~ s/-D_FORTIFY_SOURCE=\d+// if $Config{optimize} =~ /-O/;
97 push(@cmd,'-link',"-libpath:$lib\\lib\\CORE",$Config{'libperl'},$Config{'libs'});
100 push(@cmd,"-L$lib",$lib.'\lib\CORE\\'.$Config{'libperl'},$Config{'libc'});
103 elsif ($^O eq 'os390' && $Config{usedl}) {
111 if $^O eq 'os2' and $Config{ldflags} =~ /(?<!\S)-Zomf\b/;
125 elsif ($Config{'libperl'} !~ /\Alibperl\./) {
127 $testlib = $Config{'libperl'};
134 my $ln_or_cp = $Config{'ln'} || $Config{'cp'};
162 unlink("$exe.manifest") if $cl and $Config{'ccversion'} =~ /^(\d+)/ and $1 >= 14;
163 unlink("$exe$Config{exe_ext}") if $skip_exe;