On Mon, Dec 27, 2010 at 8:10 AM, Jacques Montier <jacques.mont...@numericable.fr> wrote: > Hi all, > > I am waiting for a new PC... > motherboard Asus P6X58D-E > Intel Core i7 950 > 4Go DDR > Gforce GT240 > > I use Gentoo for nearly 8 years, and of course, it will be Gentoo on > that new pc. > Besides desktop working, i am going to study and produce some image and > video synthesis. > I have some questions : > 32 bits or 64 bits ? advantages and inconvenients ? > What CFLAGS have i to choose and what about kernel settings (Processor > type and features) ? > > Thank you very much for your advices, > > Cheers, > > -- > Jacques > Site web <https://sites.google.com/site/jacquesfr35/> > > >
I cannot really recommend what I'm using and I certainly don't consider this advice but I'm happy to share it. Note that in general I tend to keep use flags limited in make.conf and then add them to packages I emerge. The processor is an Intel i7-980x, ATI 5770 VGA. I think this conversation could result in interesting learning. (For me anyway!) If there are things that improve performance then we'd all like to be better educated. Cheers, Mark m...@c2stable ~ $ cat /etc/make.conf # Please consult /usr/share/portage/config/make.conf.example for a more # detailed example. CFLAGS="-O2 -march=native -pipe" #Safe CFlags for the Core-i7 (web info) saved for reference #CFLAGS="-march=core2 -msse4 -mcx16 -msahf -O2 -pipe" CXXFLAGS="${CFLAGS}" # WARNING: Changing your CHOST is not something that should be done lightly. # Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing. CHOST="x86_64-pc-linux-gnu" # These are the USE flags that were used in addition to what is provided by the # profile used for building. #FEATURES="buildpkg parallel-fetch userfetch" USE="nptl nptlonly -ipv6 fortran unicode -hal dbus X -bluetooth -esound -timidity -cups -java gnome gstreamer kde qt4 qt3support -arts -eds pngi policykit" MAKEOPTS="-j9" GENTOO_MIRRORS="http://gentoo.osuosl.org/ " SYNC="rsync://rsync.namerica.gentoo.org/gentoo-portage" EMERGE_DEFAULT_OPTS="--with-bdeps y" INPUT_DEVICES="evdev mouse keyboard" VIDEO_CARDS="radeon fbdev vmware" ALSA_CARDS="hda-intel" LINGUAS="en" ACCEPT_LICENSE="dlj-1.1 PUEL AdobeFlash-10.1" source /var/lib/layman/make.conf m...@c2stable ~ $