Upgrade libedit. 1/2
[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 October 21, 2014
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 variable definitions are mandatory:
57 .Bl -tag -width ".Va <version>_INCOPTCXX"
58 .It Va <version>_CC
59 The pathname of the
60 .Nm cc
61 compiler.
62 .It Va <version>_CXX
63 The pathname of the
64 .Nm c++
65 and
66 .Nm CC
67 compilers.
68 .It Va <version>_CPP
69 The pathname of the
70 .Nm cpp
71 pre-processor.
72 .It Va <version>_INCOPT
73 The include flags passed to the invocation of every version of c compiler,
74 c++ compiler, and pre-processor program.
75 This is normally set to the
76 predefined STD_INCOPT variable.
77 .It Va <version>_INCOPTCXX
78 The include flags passed to the invocation of every version of c++
79 compiler.
80 This is normally set to either the DPORT_GCC_STD_INCOPTXX or
81 DPORT_CLANG_STD_INCOPTXX predefined variables.
82 .El
83 .Pp
84 These variables are optionally available:
85 .Bl -tag -width ".Va <version>_INCOPTCXX"
86 .It Va <version>_GCC
87 The pathname of the
88 .Nm gcc
89 compiler.
90 .It Va <version>_GXX
91 The pathname of the
92 .Nm g++
93 compiler.
94 .It Va <version>_GCOV
95 The pathname of the
96 .Nm gcov
97 coverage testing tool.
98 .\"
99 .\" Uncomment the following after clang is brought into base
100 .\".It Va <version>_CLANG
101 .\"The pathname of the
102 .\".Nm clang
103 .\"compiler.
104 .\".It Va <version>_CLANGCXX
105 .\"The pathname of the
106 .\".Nm clang++
107 .\"compiler.
108 .\".It Va <version>_CLANGCPP
109 .\"The pathname of the
110 .\".Nm clang-cpp
111 .\"pre-processor.
112 .\"
113 .It Va <version>_CFLAGS
114 Additional flags to pass to the c compilers.
115 .It Va <version>_CXXFLAGS
116 Additional flags to pass to the c++ compilers.
117 .It Va <version>_CPPFLAGS
118 Additional flags to pass to the pre-processors.
119 .El
120 .Pp
121 Currently, defaults are provided for the
122 .Xr dports 7
123 compilers of
124 .Nm clang35
125 .Pa ( lang/clang35 ) ,
126 .Nm gcc48
127 .Pa ( lang/gcc48 ) ,
128 .Nm gcc49
129 .Pa ( lang/gcc49 ) ,
130 and
131 .Nm gcc5
132 .Pa ( lang/gcc5 ) .
133 .Sh IMPLEMENTATION NOTES
134 In
135 .Dx ,
136 compilers are selected by setting the
137 .Ev CCVER
138 variable.
139 The
140 .Pa cpp ,
141 .Pa cc ,
142 etc\&. programs in
143 .Pa /usr/bin
144 are actually links to the
145 .Xr objformat 1
146 deflector program which is responsible for executing the
147 correct programs (located in
148 .Pa /usr/libexec/$CCVER ) .
149 .Pp
150 Traditionally,
151 .Dx
152 has 2 compilers in base, one of which is the default compiler and the other
153 is either a newer or older version.
154 In order to allow additional non-base compilers into
155 .Dx Ap s
156 build process,
157 .Xr objformat 1
158 deflects to
159 .Pa /usr/libexec/custom
160 when
161 .Ev CCVER Ap s
162 setting is not one of the compilers in base.
163 This directory contains a
164 .Pa cc
165 wrapper script (and some links to it).
166 The wrapper script then takes care of making the compiler look and behave
167 like a compiler in base.
168 .Pp
169 The settings in
170 .Nm
171 specify paths and flags for the
172 .Pa /usr/libexec/custom/cc
173 script.
174 .Sh FILES
175 .Bl -tag -width ".Pa /etc/compilers.conf" -compact
176 .It Pa /etc/compilers.conf
177 external compiler configuration file
178 .El
179 .Sh EXAMPLES
180 Once configured the compiler can be used like this:
181 .Bd -literal -offset indent
182 env CCVER=<version> make
183 .Ed
184 .Pp
185 To try building world and kernel, use:
186 .Bd -literal -offset indent
187 cd /usr/src
188 env WORLD_CCVER=<version> make buildworld
189 env WORLD_CCVER=<version> make buildkernel KERNCONF=MYCONF
190 .Ed
191 .Sh SEE ALSO
192 .Xr objformat 1 ,
193 .Xr build 7
194 .Sh HISTORY
195 The
196 .Nm
197 file first appeared in
198 .Dx 2.3 .