Difference between revisions of "Make.conf"

From Funtoo
Jump to navigation Jump to search
m (fix some garbage and templates)
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== What is the make.conf file? What is its purpose? ==
== What is the make.conf file? ==
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.  
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? ===
== Where is make.conf located? ==
The {{f|make.conf}} file is found at {{f|/etc/portage/make.conf}} and {{f|/etc/make.conf}} though {{f|/etc/make.conf}} is its deprecated location.
{{f|make.conf}} can be found in two different places:
# As a text file at {{f|/etc/portage/make.conf}}
# As a symbolic link to the above text file, located at {{f|/etc/make.conf}} (this is now deprecated).


to edit:
No special tool is required to edit {{f|/etc/portage/make.conf}}, besides your favorite text editor, of course:
{{console|body=
{{console|body=
###i## nano /etc/portage/make.conf
###i## nano /etc/portage/make.conf
}}
}}
 
== Variables ==
=== Variables ===
Portage is very cutomizable. Because of this, many variables are available to configure {{f|/etc/portage/make.conf}}. Below is an example {{f|make.conf}} file showing some of the variables that can be used to customize portage. The format of a line of this file is usually <code>VARIABLENAME="variable arguments"</code>.
 
{{file|name=/etc/portage/make.conf|lang=|desc=example make.conf variables|body=
{{file|name=/etc/portage/make.conf|lang=|desc=example make.conf variables|body=
CFLAGS="-march=amdfam10 -O2 -pipe"
CFLAGS="-march=amdfam10 -O2 -pipe"
Line 17: Line 18:
INPUT_DEVICES="evdev"
INPUT_DEVICES="evdev"
VIDEO_CARDS="vesa nouveau"
VIDEO_CARDS="vesa nouveau"
MAKEOPTS="-j 2"
MAKEOPTS="-j2"
USE="mmx sse"
USE="mmx sse"
PYTHON_ABIS="2.7 3.3"
PYTHON_ABIS="2.7 3.3"
Line 24: Line 25:
ACCEPT_LICENSE="*"
ACCEPT_LICENSE="*"
}}
}}
Below is a list of variables that can be used in {{f|make.conf}}, along with a description of what they do. For more information on these and other variables, read {{c|man make.conf}}.


=== Accept All Licenses ===
=== Accept All Licenses ===
Line 32: Line 35:
=== Relocate Source Compile Directory ===
=== Relocate Source Compile Directory ===


By default portage unpacks and compiles sources in /var/tmp/  it appends portage/pkg-cat/pkg to compile a package elsewhere such as /tmp/portage/pkg-cat/pkg
By default portage unpacks and compiles sources in {{f|/var/tmp/}} it appends {{f|portage/pkg-cat/pkg}} to compile a package elsewhere. For example, if portage compiles a package in {{f|/tmp}}, it will be built at: {{f|/tmp/portage/pkg-cat/pkg}}. If you have Funtoo installed on an SSD, it may be a wise decision to mount {{f|/tmp}} in RAM or on a HDD so that you can minimize the number of writes to your SSD and extend its lifetime. After {{f|/tmp}} has been mounted off of your SSD, you can tell portage to compile future packages in {{f|/tmp}}, instead of in {{f|/var/tmp}}. To do this, add the following line to your {{f|/etc/portage/make.conf}}:


{{file|name=/etc/portage/make.conf|lang=|desc=unpack & compile sources in alternate location|body=
{{file|name=/etc/portage/make.conf|lang=|desc= |body=
PORTAGE_TMPDIR="/tmp"
PORTAGE_TMPDIR="/tmp"
}}
}}
Line 40: Line 43:
=== Video_Cards ===
=== Video_Cards ===


several options for the video cards variable exist.  see [[Video]]
The {{c|VIDEO_CARDS}} variable tells portage which video drivers you wish to use on your system. To see the different options that exist for this variable, see [[Video]].


=== Makeopts ===
=== 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 [[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:


{{file|name=/etc/portage/make.conf|lang=|desc=set portage to use 3 threads|body=
{{file|name=/etc/portage/make.conf|lang=|desc=set portage to use 3 threads|body=
Line 67: Line 70:
=== USE flags ===
=== USE flags ===


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 ("<code>-</code>") 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 (" - ") sign tells Portage not to use the flag when compiling.  Through use flags we generate more secure stripped down binaries with reduced attack surface & (slightly) better performance.  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 [https://wiki.gentoo.org/wiki/Handbook:AMD64/Working/USE Gentoo Handbook].


Some hardware options should be turned on if they're not already.  To see what your hardware supports:
Some hardware options should be turned on if they're not already.  To see what your hardware supports:
Line 79: Line 82:


=== Input ===
=== Input ===
some devices need defined such as synaptics for touch pads.
some devices need defined such as {{package|x11-drivers/xf86-input-synaptics}} for touch pads.


{{file|name=/etc/portage/make.conf|lang=|desc=synaptics example|body=
{{file|name=/etc/portage/make.conf|lang=|desc=synaptics example|body=
Line 92: Line 95:
}}
}}


{{PageNeedsUpdates}}
[[Category:System]]
[[Category:System]]

Revision as of 19:08, February 24, 2015

What is the make.conf file?

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 is make.conf located?

make.conf can be found in two different places:

  1. As a text file at /etc/portage/make.conf
  2. As a symbolic link to the above text file, located at /etc/make.conf (this is now deprecated).

No special tool is required to edit /etc/portage/make.conf, besides your favorite text editor, of course:

root # nano /etc/portage/make.conf

Variables

Portage is very cutomizable. Because of this, many variables are available to configure /etc/portage/make.conf. Below is an example make.conf file showing some of the variables that can be used to customize portage. The format of a line of this file is usually VARIABLENAME="variable arguments".

   /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="-j2"
USE="mmx sse"
PYTHON_ABIS="2.7 3.3"
PYTHON_TARGETS="2.7 3.3"
RUBY_TARGETS="ruby21"
ACCEPT_LICENSE="*"

Below is a list of variables that can be used in make.conf, along with a description of what they do. For more information on these and other variables, read man make.conf.

Accept All Licenses

   /etc/portage/make.conf - accept all licenses
ACCEPT_LICENSE="*"

Relocate Source Compile Directory

By default portage unpacks and compiles sources in /var/tmp/ it appends portage/pkg-cat/pkg to compile a package elsewhere. For example, if portage compiles a package in /tmp, it will be built at: /tmp/portage/pkg-cat/pkg. If you have Funtoo installed on an SSD, it may be a wise decision to mount /tmp in RAM or on a HDD so that you can minimize the number of writes to your SSD and extend its lifetime. After /tmp has been mounted off of your SSD, you can tell portage to compile future packages in /tmp, instead of in /var/tmp. To do this, add the following line to your /etc/portage/make.conf:

   /etc/portage/make.conf
PORTAGE_TMPDIR="/tmp"

Video_Cards

The VIDEO_CARDS variable tells portage which video drivers you wish to use on your system. To see the different options that exist for this variable, 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

Set MAKEOPTS to this number plus one:

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


   Important

Use processors +1 if you use Completely Fair Queuing I/O scheduler. If you use BFQ use only as many jobs as you have CPUs. However chances are that you use CFQ.


USE flags

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. Through use flags we generate more secure stripped down binaries with reduced attack surface & (slightly) better performance. 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.

Some hardware options should be turned on if they're not already. To see what your hardware supports:

root # cat /proc/cpuinfo
   /etc/portage/make.conf - Example of Turning On Hardware Optimizations
USE="mmx, sse, sse2, sse3, 3dnow, 3dnowext"

Input

some devices need defined such as x11-drivers/xf86-input-synaptics for touch pads.

   /etc/portage/make.conf - synaptics example
INPUT_DEVICES="synaptics evdev"

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"