#!/bin/sh
# $Id: gcc-normal-64,v 1.4 2019/12/21 13:28:15 tom Exp $
OPT=none
case `partition` in
irix*)
	OPT=-mabi=64
	;;
*solaris*|sunos*)
	# GNU junk also tends to require "fix-local" around the whole build.
	OPT=-m64
	;;
esac
if test "$OPT" != none ; then
	gcc-normal $OPT "$@"
else
	echo "64-bit option unknown"
	exit 1
fi
