From owner-freebsd-hackers Fri Jun 6 14:54:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA14667 for hackers-outgoing; Fri, 6 Jun 1997 14:54:12 -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 OAA14662 for ; Fri, 6 Jun 1997 14:54:09 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id HAA16814; Sat, 7 Jun 1997 07:48:47 +1000 Date: Sat, 7 Jun 1997 07:48:47 +1000 From: Bruce Evans Message-Id: <199706062148.HAA16814@godzilla.zeta.org.au> To: craig@gnofn.org, hackers@FreeBSD.ORG Subject: Re: gcc -m486, gcc -O2 Sender: owner-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Is -m486 desireable/useful on various flavors of 586-class >chips? Specifically curious about AMD K5. It is sometimes a pessimization on 486's and often a pessimization on 586's. `-m486 -malign-functions=2 -mailign-jumps=2 -malign-loops=2' may be best on 586's. >Is there any reason -O2 would not be a good idea for kernel/make >world in make.conf? I notice that the suggested use is -O2 for >everything else and -O for the kernel. -O2 is sometimes a pessimization. `-O2 -m486' was suggested in 1994. It is wronger now. Bruce