The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/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
#

case "$*" in
*-buildperl*)	miniperl perlgcc "$@" ;;
*)		gcc "$@" ;;
esac