From 64bcfff3a12695f4e3f54b0590e896611da71c3b Mon Sep 17 00:00:00 2001 From: rsc Date: Tue, 25 Nov 2003 02:11:11 +0000 Subject: More tweaks on Linux and Solaris. --- bin/9c | 3 +-- bin/9l | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/9c b/bin/9c index 9104a08c..8a7148e8 100755 --- a/bin/9c +++ b/bin/9c @@ -5,7 +5,6 @@ usegcc() cc=gcc cflags=" \ -O2 \ - -I$PLAN9/include \ -c \ -ggdb \ -Wall \ @@ -29,4 +28,4 @@ case "$tag" in exit 1 esac -exec $cc $cflags "$@" +exec $cc -I$PLAN9/include $cflags "$@" diff --git a/bin/9l b/bin/9l index adc66038..19be47ed 100755 --- a/bin/9l +++ b/bin/9l @@ -7,7 +7,7 @@ case "$tag" in *BSD*) ld=gcc ;; *Linux*) ld=gcc ;; *Darwin*) ld=gcc ;; -*SunOS*) ld=${CC9:-cc} +*SunOS*) ld="${CC9:-cc} -g" extralibs="$extralibs -lrt -lpthread -lsocket -lnsl" ;; *) -- cgit v1.2.3