Gentoo Archives: gentoo-user

From: "Hemmann
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Re: firewall make.conf settings
Date: Thu, 24 Jan 2008 19:39:45
Message-Id: 200801242039.35446.volker.armin.hemmann@tu-clausthal.de
In Reply to: [gentoo-user] Re: firewall make.conf settings by James
1 On Donnerstag, 24. Januar 2008, James wrote:
2 > Hemmann, Volker Armin <volker.armin.hemmann <at> tu-clausthal.de> writes:
3 > > > -mcpu is deprecated, according to the examples file as of gcc 3.4, SO:
4 > > >
5 > > > CFLAGS="-Os -march=i586 -pipe -fomit-frame-pointer"
6 > > > CHOST="i586-pc-linux-gnu"
7 > > >
8 > > > changed to:
9 > > > CFLAGS="-Os -mtune=i586 -pipe -fomit-frame-pointer"
10 > > > or
11 > > > CFLAGS="-Os -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
12 > >
13 > > sure about that? doesn't march include everything mtune would do?
14 >
15 > No, I'm not sure. The more I read the more I see different opinions!
16 > That's why I'm asking. Remember the goals are:
17 > 1) keep executible (binaries) as small as possible
18 > 2) use one make.conf on a master system to generate binaries
19 > for most old pentiums and the K6(amd) systems....
20 >
21 > My gut tells me that
22 >
23 > CFLAGS="-Os -march=i586 -pipe -fomit-frame-pointer"
24 > CHOST="i586-pc-linux-gnu"
25 >
26 > is the best choice in this cause. However, my 'gut' is more focused
27 > on the 'kiss' principal: (kiss whoever does the cooking and cleans
28 > the dishes)........ aka keep it simple.
29
30 well, I like your line ;)
31 --
32 gentoo-user@l.g.o mailing list

Replies

Subject Author
Re: [gentoo-user] Re: firewall make.conf settings tecnic5@××××××××.com