[win32] integrate mainline
[p5sagit/p5-mst-13.2.git] / cygwin32 / gcc2
1 #!/bin/sh
2 #
3 # gcc wrapper for building dynamic lib version of perl
4 #  if -buildperl found on command line, then all args passed to
5 #     perlgcc, else pass all args to gcc.
6 #  jc 3/24/97
7 #
8
9 case "$*" in
10 *-buildperl*)   miniperl perlgcc "$@" ;;
11 *)              gcc "$@" ;;
12 esac