Lines Matching refs:Config

15 use Config;
30 if ($^O =~ 'os2' and $Config{perllibs}) {
35 $potential_libs .= $Config{perllibs};
40 my($so) = $Config{so};
41 my($libs) = defined $Config{perllibs} ? $Config{perllibs} : $Config{libs};
42 my $Config_libext = $Config{lib_ext} || ".a";
50 my(@libpath) = split " ", $Config{'libpth'};
69 if ($Config{'lddlflags'} =~ /-Wl,-R/) {
71 } elsif ($Config{'lddlflags'} =~ /-R/) {
129 && (($Config{'dlsrc'} ne "dl_dld.xs") || ($thislib eq "m"))){
131 && (! $Config{'archname'} =~ /RM\d\d\d-svr4/)
174 ($Config{'osname'} eq 'next' &&
180 if ( ($Config{'dlsrc'} =~ /dl_next/ && $Config{'osvers'} lt '4_0')
181 || ($Config{'dlsrc'} =~ /dl_dld/) )
225 # (caller should probably use the list in $Config{libs})
228 my $cc = $Config{cc};
232 my $so = $Config{'so'};
233 my $libs = $Config{'perllibs'};
234 my $libpth = $Config{'libpth'};
235 my $libext = $Config{'lib_ext'} || ".lib";
239 # If Config.pm defines a set of default libs, we always
263 # add "$Config{installarchlib}/CORE" to default search path
264 push @libpath, "$Config{installarchlib}/CORE";
378 my($dbgqual) = $self->{OPTIMIZE} || $Config{'optimize'} ||
379 $self->{CCFLAGS} || $Config{'ccflags'};
380 @crtls = ( ($dbgqual =~ m-/Debug-i ? $Config{'dbgprefix'} : '')
382 push(@crtls, grep { not /\(/ } split /\s+/, $Config{'perllibs'});
383 push(@crtls, grep { not /\(/ } split /\s+/, $Config{'libc'});
384 # In general, we pass through the basic libraries from %Config unchanged.
393 if (lc $type eq '/share') { $locspec .= $Config{'exe_ext'}; }
394 elsif (lc $type eq '/library') { $locspec .= $Config{'lib_ext'}; }
395 else { $locspec .= $Config{'obj_ext'}; }
410 my($so,$lib_ext,$obj_ext) = @Config{'so','lib_ext','obj_ext'};
420 if ($Config{'vms_cc_type'} ne 'decc') { $libmap{'curses'} = 'VAXCCURSE'; }
432 push(@dirs,split(' ',$Config{'libpth'}));