summaryrefslogtreecommitdiff
path: root/cygwin32/gcc2
diff options
context:
space:
mode:
Diffstat (limited to 'cygwin32/gcc2')
-rw-r--r--cygwin32/gcc214
1 files changed, 0 insertions, 14 deletions
diff --git a/cygwin32/gcc2 b/cygwin32/gcc2
deleted file mode 100644
index 6751348bd3..0000000000
--- a/cygwin32/gcc2
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-#
-# gcc wrapper for building dynamic lib version of perl
-# if -buildperl found on command line, then all args passed to
-# perlgcc, else pass all args to gcc.
-# jc 3/24/97
-#
-
-PERLPATH=/perl5.005
-
-case "$*" in
-*-buildperl*) $PERLPATH/miniperl perlgcc "$@" ;;
-*) gcc "$@" ;;
-esac