patch to support computed regular subexpressions
[p5sagit/p5-mst-13.2.git] / cygwin32 / gcc2
CommitLineData
5aabfad6 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
9case "$*" in
10*-buildperl*) miniperl perlgcc "$@" ;;
11*) gcc "$@" ;;
12esac