This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Eliminate empty conditional branch
[perl5.git] / win32 / list_static_libs.pl
1 #!perl -w
2 use strict;
3
4 # prints libraries for static linking and exits
5
6 use Config;
7
8 my @statics = split /\s+/, $Config{static_ext};
9
10 my (@extralibs, %extralibs); # collect extralibs, preserving their order
11 for (@statics) {
12     my $file = "..\\lib\\auto\\$_\\extralibs.ld";
13     open my $fh, '<', $file or die "can't open $file for reading: $!";
14     push @extralibs, grep {!$extralibs{$_}++} grep {/\S/} split /\s+/, join '', <$fh>;
15 }
16 print map {s|/|\\|g;m|([^\\]+)$|;"..\\lib\\auto\\$_\\$1$Config{_a} "} @statics;
17 print map {"$_ "} @extralibs;