2 # Perl script being a wrapper around the gnu ld. When a dll is specified to
3 # to be built, special processing is done, else the standard ld is called.
6 # these are pretty mandatory
8 my $EXPORT_ALL = @EXPORT_ALL@;
10 # if some of extensions are undefined,
11 # no corresponding output will be done.
12 # most probably, you'd like to have an export library
13 # my $DEF_EXT = '@DEF_EXT@';
14 # my $EXP_EXT = '@EXP_EXT@';
15 my $LIB_EXT = '@LIB_EXT@';
17 #my $DEBUG ="perlld.out";
20 my $args = join(" ",@ARGV); # get args
21 my $verbose =grep(/^\-(v|\-verbose)$/, @ARGV);
26 open DEBUGFILE, ">>$DEBUG";
27 print DEBUGFILE "\n--- " .localtime() ."\nargs:\n$args\n\nenvironment:\n";
28 foreach (keys(%ENV)) { print DEBUGFILE $_, "=", $ENV{$_}, "\n"; };
31 if ($args !~ /\-o (\S+)/) {
32 print DEBUGFILE "+ no dll output -- passing to gcc\n\n" if $DEBUG;
33 shellexec("$CC $args\n");
35 my ($path, $command, $dllname, $libname) ='';
38 print DEBUGFILE "output file: $dllname\n" if $DEBUG;
40 $args =~ s/(^| )\-o \S+/$1/;
43 if( $dllname =~ /.*[\/\\]/){
46 $path =~ s,[/\\](\.[/\\])*,/,g;
48 if ($dllname =~ /\./) { $libname =$`; } else { $libname =$dllname; };
49 my $v_e_r_s = '@VERSION@';
51 if ( $dllname =~ /libperl.*/) {
52 $dllname ="cygperl$v_e_r_s.dll";
54 $dllname ="$libname.dll";
56 $libname ="lib$libname" unless ($libname =~ /^lib/);
57 print DEBUGFILE "dll name: $dllname\nimport library: $libname\npath: $path\n" if $DEBUG;
59 $command ="$CC -shared -o $dllname";
60 # $command .=" --verbose" if $verbose;
62 $command .=" -Wl,--output-def=$libname$DEF_EXT" if $DEF_EXT;
63 $command .=" -Wl,--output-exp=$libname$EXP_EXT" if $EXP_EXT;
64 $command .=" -Wl,--out-implib=$libname.dll$LIB_EXT" if $LIB_EXT;
65 $command .=" -Wl,--export-all-symbols" if $EXPORT_ALL;
66 $command .=" -Wl,--enable-auto-import -Wl,--stack,8388608"; # always
68 # other args are passed through
69 shellexec("$command \\\n$args\n");
72 $command ="mv $dllname";
73 $command .=" $libname.dll$LIB_EXT" if $LIB_EXT;
74 shellexec("$command $path\n");
77 close DEBUGFILE if $DEBUG;
79 #---------------------------------------------------------------------------
82 print STDERR $command;
83 print DEBUGFILE $command if $DEBUG;
85 or die "perlld: *** system() failed to execute\n$command\n";