Gentoo Archives: gentoo-user

From: James <wireless@×××××××××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] Re: firewall make.conf settings
Date: Thu, 24 Jan 2008 16:02:39
Message-Id: loom.20080124T153947-602@post.gmane.org
In Reply to: Re: [gentoo-user] firewall make.conf settings by tecnic5@silvanoc.com
1 <tecnic5 <at> silvanoc.com> writes:
2
3 >If you'd like to use the same make.conf for different machines you should
4 >make sure they all have same processors or, at least, same family of >
5 >processors; in your case, I recommend using -mcpu instead of -march. Keep
6 >in mind that K6 processors have their own -marc=k6 and might not be
7 >comptable with -march=i586. More in /etc/make.conf.example.
8
9
10 Good point:
11
12 -mcpu is deprecated, according to the examples file as of gcc 3.4, SO:
13
14 CFLAGS="-Os -march=i586 -pipe -fomit-frame-pointer"
15 CHOST="i586-pc-linux-gnu"
16
17 changed to:
18 CFLAGS="-Os -mtune=i586 -pipe -fomit-frame-pointer"
19 or
20 CFLAGS="-Os -march=i586 -mtune=i586 -pipe -fomit-frame-pointer"
21
22 <????? Remember I want one set of binaries for both k6 and old pentiums>
23
24
25
26
27 --
28 gentoo-user@l.g.o mailing list

Replies

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