summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/cygwin32
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-04-29 22:53:00 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-04-29 22:53:00 +0000
commitc25c5c3c87d89b68324dc98b7c8aaabc750c7cec (patch)
tree2943af9b1f84d88d863a9ba36a234877561bf5f0 /gnu/usr.bin/perl/cygwin32
parent37583d269f066aa8aa04ea18126b188d12257e6d (diff)
perl5.005_03 (stock)
Diffstat (limited to 'gnu/usr.bin/perl/cygwin32')
-rw-r--r--gnu/usr.bin/perl/cygwin32/cw32imp.h1
-rw-r--r--gnu/usr.bin/perl/cygwin32/ld22
-rw-r--r--gnu/usr.bin/perl/cygwin32/perlgcc25
-rw-r--r--gnu/usr.bin/perl/cygwin32/perlld26
4 files changed, 30 insertions, 24 deletions
diff --git a/gnu/usr.bin/perl/cygwin32/cw32imp.h b/gnu/usr.bin/perl/cygwin32/cw32imp.h
index 1fb11d3e03c..885cbb12025 100644
--- a/gnu/usr.bin/perl/cygwin32/cw32imp.h
+++ b/gnu/usr.bin/perl/cygwin32/cw32imp.h
@@ -165,7 +165,6 @@
#define Perl_scopestack (*__imp_Perl_scopestack)
#define Perl_scopestack_ix (*__imp_Perl_scopestack_ix)
#define Perl_scopestack_max (*__imp_Perl_scopestack_max)
-#define Perl_scrgv (*__imp_Perl_scrgv)
#define Perl_sh_path (*__imp_Perl_sh_path)
#define Perl_sig_name (*__imp_Perl_sig_name)
#define Perl_sig_num (*__imp_Perl_sig_num)
diff --git a/gnu/usr.bin/perl/cygwin32/ld2 b/gnu/usr.bin/perl/cygwin32/ld2
index 9aec8798fed..cdec9d96eff 100644
--- a/gnu/usr.bin/perl/cygwin32/ld2
+++ b/gnu/usr.bin/perl/cygwin32/ld2
@@ -4,6 +4,6 @@
# passes all args to ld.
#
-PERLPATH=/perl5.004
+PERLPATH=/perl5.005
$PERLPATH/perl $PERLPATH/perlld "$@"
diff --git a/gnu/usr.bin/perl/cygwin32/perlgcc b/gnu/usr.bin/perl/cygwin32/perlgcc
index 97d7d1a8a53..202ed29a4f9 100644
--- a/gnu/usr.bin/perl/cygwin32/perlgcc
+++ b/gnu/usr.bin/perl/cygwin32/perlgcc
@@ -30,21 +30,21 @@ $libflagString = join(" ",@libFlags);
# make exports file
my $command = "echo EXPORTS > perl.def";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
$command ="nm $libstring | grep '^........ [TCD] _'| grep -v _impure_ptr | sed 's/[^_]*_//' >> perl.def";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
# Build the perl.a lib to link to:
$command ="dlltool --as=as --dllname perl.exe --def perl.def --output-lib perl.a";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
# change name of export lib to libperlexp so that is can be understood by ld2/perlld
$command ="mv perl.a libperlexp.a";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
# get the full path name of a few libs:
my $crt0 = `gcc -print-file-name=crt0.o`;
@@ -53,25 +53,32 @@ my $libdir = `gcc -print-file-name=libcygwin.a`;
chomp $libdir;
$libdir =~ s/libcygwin\.a//g;
+# when $crt0 and $libdir get used in the system calls below, the \'s
+# from the gcc -print-file-name get used to create special characters,
+# such as \n, \t. Replace the \'s with /'s so that this does not
+# happen:
+$crt0 =~ s:\\:/:g;
+$libdir =~ s:\\:/:g;
+
# Link exe:
$command = "ld --base-file perl.base -o perl.exe $crt0 $obsString $libstring -L$libdir $libflagString";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
$command = "dlltool --as=as --dllname perl.exe --def perl.def --base-file perl.base --output-exp perl.exp";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
$command = "ld --base-file perl.base perl.exp -o perl.exe $crt0 $obsString $libstring -L$libdir $libflagString";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
$command = "dlltool --as=as --dllname perl.exe --def perl.def --base-file perl.base --output-exp perl.exp";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
$command = "ld perl.exp -o perl.exe $crt0 $obsString $libstring -L$libdir $libflagString";
print "$command\n";
-system($command);
+system($command) == 0 or die "system() failed.\n";
print "perlgcc: Completed\n";
diff --git a/gnu/usr.bin/perl/cygwin32/perlld b/gnu/usr.bin/perl/cygwin32/perlld
index 1622f2ffaf2..97edfd64dd6 100644
--- a/gnu/usr.bin/perl/cygwin32/perlld
+++ b/gnu/usr.bin/perl/cygwin32/perlld
@@ -47,54 +47,54 @@ if( $args=~/\-o (.+?)\.dll/i){
writeInit();
$command = "gcc -c $fixup.c\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "gcc -c $init.cc\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "echo EXPORTS > $libname.def\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "nm ".join(" ",@objs)." $init.o $fixup.o | grep '^........ [TCD] _' | sed 's/[^_]*_//' >> $libname.def\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "ld --base-file $libname.base --dll -o $libname.dll ".join(" ",@objs)." $init.o $fixup.o ";
$command .= join(" ",@flags)." -e _dll_entry\@12 \n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "dlltool --as=as --dllname $libname.dll --def $libname.def --base-file $libname.base --output-exp $libname.exp\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "ld --base-file $libname.base $libname.exp --dll -o $libname.dll ".join(" ",@objs)." $init.o $fixup.o ";
$command .= join(" ",@flags)." -e _dll_entry\@12 \n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "dlltool --as=as --dllname $libname.dll --def $libname.def --base-file $libname.base --output-exp $libname.exp\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "ld $libname.exp --dll -o $libname.dll ".join(" ",@objs)." $init.o $fixup.o ";
$command .= join(" ",@flags)." -e _dll_entry\@12 \n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
print "Build the import lib\n";
$command = "dlltool --as=as --dllname $libname.dll --def $libname.def --output-lib $libname.a\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
# if there was originally a path, copy the dll and a to that location:
if($path && $path ne "./" && $path."\n" ne "`pwd`"){
$command = "mv $libname.dll $path".$libname.".dll\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
$command = "mv $libname.a $path".$libname.".a\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
}
@@ -102,7 +102,7 @@ if( $args=~/\-o (.+?)\.dll/i){
else{ # no special processing, just call ld
$command = "ld $args\n";
print $command;
- system($command);
+ system($command) == 0 or die "system() failed.\n";
}
#---------------------------------------------------------------------------