Merge branch 'vendor/MPC'
[dragonfly.git] / share / man / man5 / compilers.conf.5
1 .\"
2 .\" Copyright (c) 2009
3 .\"     The DragonFly Project.  All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\"
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in
13 .\"    the documentation and/or other materials provided with the
14 .\"    distribution.
15 .\" 3. Neither the name of The DragonFly Project nor the names of its
16 .\"    contributors may be used to endorse or promote products derived
17 .\"    from this software without specific, prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
23 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 .\" INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .Dd July 9, 2012
33 .Dt COMPILERS.CONF 5
34 .Os
35 .Sh NAME
36 .Nm compilers.conf
37 .Nd configuration file for external compilers
38 .Sh SYNOPSIS
39 .Pa /etc/compilers.conf
40 .Sh DESCRIPTION
41 The
42 .Nm
43 file allows to configure
44 .Dq external
45 compilers for usage with the
46 .Dx
47 .Xr build 7
48 system.
49 .Pp
50 The
51 .Pa /etc/defaults/compilers.conf
52 file specifies the default settings for all variables, the
53 .Pa /etc/compilers.conf
54 file specifies override settings.
55 .Pp
56 The following variables are available:
57 .Bl -tag -width ".Va <version>_CPPFLAGS"
58 .It Va <version>_CC
59 The pathname of the
60 .Nm cc
61 program of the compiler.
62 .It Va <version>_CFLAGS
63 Any additional flags to pass to
64 .Va <version>_CC .
65 .It Va <version>_CPP
66 The pathname of the
67 .Nm cpp
68 program of the compiler.
69 .It Va <version>_CPPFLAGS
70 Any additional flags to pass to
71 .Va <version>_CPP .
72 .It Va <version>_CXX
73 The pathname of the
74 .Nm c++
75 program of the compiler.
76 .It Va <version>_CXXFLAGS
77 Any additional flags to pass to
78 .Va <version>_CXX .
79 .It Va <version>_VERSION
80 What to output when the
81 .Fl dumpversion
82 option is used.
83 This helps
84 .Nm clang
85 with
86 .Xr pkgsrc 7 .
87 .El
88 .Pp
89 Once configured the compiler can then be used like this:
90 .Bd -literal -offset indent
91 env CCVER=clang make
92 .Ed
93 .Pp
94 To build world and kernel, use the following instructions:
95 .Bd -literal -offset indent
96 cd /usr/src
97 fetch http://leaf.dragonflybsd.org/~swildner/world_clang.diff
98 patch -p1 <world_clang.diff
99 env WORLD_CCVER=clang make -DNO_GCC44 buildworld
100 env WORLD_CCVER=clang make buildkernel KERNCONF=MYCONF
101 .Ed
102 .Pp
103 Currently, defaults are provided for
104 .Nm clang
105 (installed from
106 .Xr pkgsrc 7 Ap s
107 .Pa lang/clang ) ,
108 .Nm clangsvn
109 (installed from SVN trunk as described in
110 .Pa http://clang.llvm.org/get_started.html ) ,
111 .Nm gcc46
112 (installed from
113 .Xr pkgsrc 7 Ap s
114 .Pa lang/gnat-aux ) ,
115 .Nm gcc47
116 (installed from
117 .Xr pkgsrc 7 Ap s
118 .Pa lang/gcc-aux )
119 and
120 .Nm pcc
121 (installed from
122 .Xr pkgsrc 7 Ap s
123 .Pa lang/pcc-current ) .
124 .Sh IMPLEMENTATION NOTES
125 In
126 .Dx ,
127 compilers are selected by setting the
128 .Ev CCVER
129 variable.
130 The
131 .Pa cpp ,
132 .Pa cc
133 etc\&. programs in
134 .Pa /usr/bin
135 are actually links to the
136 .Xr objformat 1
137 deflector program which is responsible for executing the
138 correct programs (located in
139 .Pa /usr/libexec/$CCVER ) .
140 .Pp
141 Traditionally,
142 .Dx
143 has 2 compilers in base, one of which is the default compiler and the other
144 is either a newer or older version.
145 In order to allow additional non-base compilers into
146 .Dx Ap s
147 build process,
148 .Xr objformat 1
149 deflects to
150 .Pa /usr/libexec/custom
151 when
152 .Ev CCVER Ap s
153 setting is not one of the compilers in base.
154 This directory contains a
155 .Pa cc
156 wrapper script (and some links to it).
157 The wrapper script then takes care of making the compiler look and behave
158 like a compiler in base.
159 .Pp
160 The settings in
161 .Nm
162 specify paths and flags for the
163 .Pa /usr/libexec/custom/cc
164 script.
165 .Sh FILES
166 .Bl -tag -width ".Pa /etc/compilers.conf" -compact
167 .It Pa /etc/compilers.conf
168 external compiler configuration file
169 .El
170 .Sh SEE ALSO
171 .Xr objformat 1 ,
172 .Xr build 7
173 .Sh HISTORY
174 The
175 .Nm
176 file first appeared in
177 .Dx 2.3 .