Tweaks for the Macintosh.

This commit is contained in:
rsc 2004-03-02 16:58:49 +00:00
parent 6e2cec77b2
commit 53dbac9485
5 changed files with 87 additions and 9 deletions

4
bin/9c
View file

@ -19,7 +19,9 @@ usegcc()
tag="`uname`-`uname -m`-${CC9:-cc}"
case "$tag" in
*BSD*) usegcc ;;
*Darwin*) usegcc ;;
*Darwin*) usegcc
cflags=`echo $cflags|sed 's/-ggdb/-g3 -no-cpp-precomp/'`
;;
*HP-UX*) cc=cc; cflags="-g -O -c -Ae" ;;
*Linux*) usegcc ;;
*OSF1*) cc=cc; cflags="-g -O -c" ;;