From owner-freebsd-hackers Tue May 13 20:55:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA12713 for hackers-outgoing; Tue, 13 May 1997 20:55:50 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA12708 for ; Tue, 13 May 1997 20:55:45 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id NAA26729; Wed, 14 May 1997 13:46:22 +1000 Date: Wed, 14 May 1997 13:46:22 +1000 From: Bruce Evans Message-Id: <199705140346.NAA26729@godzilla.zeta.org.au> To: hackers@FreeBSD.ORG, jimf@lodgenet.com Subject: Re: bsd.lib.mk Sender: owner-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >.c.o: > ${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET} > @${LD} -O ${.TARGET} -x -r ${.TARGET} >... >Is there a benefit to the ld -x option? ld -x is to strip local symbols. This saves space and time, perhaps a whole 200K for all libraries and 10 seconds for `make world' :-). Bruce