Difference between revisions of "Make.conf"

From Funtoo
Jump to navigation Jump to search
m (add some garbage)
m (add unpacking sources in ram, format with file template)
Line 12: Line 12:
== Variables ==
== Variables ==


{{file|name=/etc/portage/make.conf|lang=|desc=example make.conf variables|body=
* CFLAGS="-march=amdfam10 -O2 -pipe"
* CFLAGS="-march=amdfam10 -O2 -pipe"
* CXXFLAGS="-march=amdfam10 -O2 -pipe"
* CXXFLAGS="-march=amdfam10 -O2 -pipe"
Line 22: Line 23:
* RUBY_TARGETS="ruby21"
* RUBY_TARGETS="ruby21"
* ACCEPT_LICENSE="*"
* ACCEPT_LICENSE="*"
}}
== Compile Packages in RAM ==
To use tmpfs to unpack sources in ram:
{{file|name=/etc/portage/make.conf|lang=|desc=unpack sources in ram|body=
PORTAGE_TMPDIR="/run"
}}


== Video_Cards ==
== Video_Cards ==
Line 30: Line 39:
MAKEOPTS can be used to define how many parallel compilations should occur when you compile a package, which can speed up compilation significantly. A rule of thumb is the number of CPUs (or CPU threads) in your system plus one. If for example you have a dual core processor without [[wikipedia:Hyper-threading|hyper-threading]], then you would set MAKEOPTS to 3:
MAKEOPTS can be used to define how many parallel compilations should occur when you compile a package, which can speed up compilation significantly. A rule of thumb is the number of CPUs (or CPU threads) in your system plus one. If for example you have a dual core processor without [[wikipedia:Hyper-threading|hyper-threading]], then you would set MAKEOPTS to 3:


<pre>
{{file|name=/etc/portage/make.conf|lang=|desc=set portage to use 3 threads|body=
MAKEOPTS="-j3"  
MAKEOPTS="-j3"  
</pre>
}}


If you are unsure about how many processors/threads you have then use /proc/cpuinfo to help you.
If you are unsure about how many processors/threads you have then use /proc/cpuinfo to help you.
Line 42: Line 51:
Set MAKEOPTS to this number plus one:
Set MAKEOPTS to this number plus one:


<pre>
{{file|name=/etc/portage/make.conf|lang=|desc=set portage to use 17 threads|body=
MAKEOPTS="-j17"
MAKEOPTS="-j17"
</pre>
}}


USE flags define what functionality is enabled when packages are built. It is not recommended to add a lot of them during installation; you should wait until you have a working, bootable system before changing your USE flags. A USE flag prefixed with a minus ("<tt>-</tt>") sign tells Portage not to use the flag when compiling.  A Funtoo guide to USE flags will be available in the future. For now, you can find out more information about USE flags in the [http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?part=2&chap=2 Gentoo Handbook].
USE flags define what functionality is enabled when packages are built. It is not recommended to add a lot of them during installation; you should wait until you have a working, bootable system before changing your USE flags. A USE flag prefixed with a minus ("<tt>-</tt>") sign tells Portage not to use the flag when compiling.  A Funtoo guide to USE flags will be available in the future. For now, you can find out more information about USE flags in the [http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?part=2&chap=2 Gentoo Handbook].
Line 51: Line 60:
LINGUAS tells Portage which local language to compile the system and applications in (those who use LINGUAS variable like OpenOffice). It is not usually necessary to set this if you use English. If you want another language such as French (fr) or German (de), set LINGUAS appropriately:
LINGUAS tells Portage which local language to compile the system and applications in (those who use LINGUAS variable like OpenOffice). It is not usually necessary to set this if you use English. If you want another language such as French (fr) or German (de), set LINGUAS appropriately:


<pre>
{{file|name=/etc/portage/make.conf|lang=|desc=set system language to french|body=
LINGUAS="fr"
LINGUAS="fr"
</pre>
}}


[[Category:System]]
[[Category:System]]

Revision as of 02:41, September 24, 2014

What is the make.conf file? What is its purpose?

Make.conf is portage's and Funtoo's main configuration file. It contains many variables that define how a package will installed in a Funtoo system. You can customize portage internal variables, such as, portage tree location, sources tarball location, overlays, to name a few. You can customize hardware specs, such as TMPFS, disk limits, GCC compilation flags to achieve best performance, etc. A great deal of this customization is done through the make.conf file. This page will attempt to explain the uses of the make.conf file, different variables that can be added to it, and their uses.

Where does this file reside?

The make.conf file is found at /etc/portage/make.conf and /etc/make.conf though /etc/make.conf is its deprecated location.

to edit:

root # nano /etc/portage/make.conf

Variables

   /etc/portage/make.conf - example make.conf variables
* CFLAGS="-march=amdfam10 -O2 -pipe"
* CXXFLAGS="-march=amdfam10 -O2 -pipe"
* INPUT_DEVICES="evdev"
* VIDEO_CARDS="vesa nouveau"
* MAKEOPTS="-j 2"
* USE="mmx sse"
* PYTHON_ABIS="2.7 3.3"
* PYTHON_TARGETS="2.7 3.3"
* RUBY_TARGETS="ruby21"
* ACCEPT_LICENSE="*"

Compile Packages in RAM

To use tmpfs to unpack sources in ram:

   /etc/portage/make.conf - unpack sources in ram
PORTAGE_TMPDIR="/run"

Video_Cards

several options for the video cards variable exist. see Video

Makeopts

MAKEOPTS can be used to define how many parallel compilations should occur when you compile a package, which can speed up compilation significantly. A rule of thumb is the number of CPUs (or CPU threads) in your system plus one. If for example you have a dual core processor without hyper-threading, then you would set MAKEOPTS to 3:

   /etc/portage/make.conf - set portage to use 3 threads
MAKEOPTS="-j3"

If you are unsure about how many processors/threads you have then use /proc/cpuinfo to help you.

(chroot) # grep "processor" /proc/cpuinfo | wc -l
16

Set MAKEOPTS to this number plus one:

   /etc/portage/make.conf - set portage to use 17 threads
MAKEOPTS="-j17"

USE flags define what functionality is enabled when packages are built. It is not recommended to add a lot of them during installation; you should wait until you have a working, bootable system before changing your USE flags. A USE flag prefixed with a minus ("-") sign tells Portage not to use the flag when compiling. A Funtoo guide to USE flags will be available in the future. For now, you can find out more information about USE flags in the Gentoo Handbook.

Linguas

LINGUAS tells Portage which local language to compile the system and applications in (those who use LINGUAS variable like OpenOffice). It is not usually necessary to set this if you use English. If you want another language such as French (fr) or German (de), set LINGUAS appropriately:

   /etc/portage/make.conf - set system language to french
LINGUAS="fr"