@@ -2166,15 +2166,26 @@ <h3 id="using-multiple-configurations">Using Multiple
2166
2166
< code > configure</ code > from there, e.g.
2167
2167
< code > mkdir build/<name> && cd build/<name> && bash ../../configure</ code > .</ p >
2168
2168
< p > Then you can build that configuration using
2169
- < code > make CONF_NAME=<name></ code > or
2170
- < code > make CONF=<pattern></ code > , where
2171
- < code > <pattern></ code > is a substring matching one or several
2172
- configurations, e.g. < code > CONF=debug</ code > . The special empty pattern
2173
- (< code > CONF=</ code > ) will match < em > all</ em > available configuration, so
2174
- < code > make CONF= hotspot</ code > will build the < code > hotspot</ code >
2175
- target for all configurations. Alternatively, you can execute
2176
- < code > make</ code > in the configuration directory, e.g.
2177
- < code > cd build/<name> && make</ code > .</ p >
2169
+ < code > make CONF=<selector></ code > , where
2170
+ < code > <selector></ code > is interpreted as follows:</ p >
2171
+ < ul >
2172
+ < li > If < code > <selector></ code > exacly matches the name of a
2173
+ configuration, this and only this configuration will be selected.</ li >
2174
+ < li > If < code > <selector></ code > matches (i.e. is a substring of)
2175
+ the names of several configurations, then all these configurations will
2176
+ be selected.</ li >
2177
+ < li > If < code > <selector></ code > is empty (i.e. < code > CONF=</ code > ),
2178
+ then all configurations will be selected.</ li >
2179
+ < li > If < code > <selector></ code > begins with < code > !</ code > , then
2180
+ all configurations < strong > not</ strong > matching the string following
2181
+ < code > !</ code > will be selected.</ li >
2182
+ </ ul >
2183
+ < p > A more specialized version, < code > CONF_NAME=<name></ code > also
2184
+ exists, which will only match if the given < code > <name></ code >
2185
+ exactly matches a single configuration.</ p >
2186
+ < p > Alternatively, you can execute < code > make</ code > in the configuration
2187
+ directory, e.g. < code > cd build/<name> && make</ code > .</ p >
2188
+ < p > < code > make CONF_NAME=<name></ code > or</ p >
2178
2189
< h3 id ="handling-reconfigurations "> Handling Reconfigurations</ h3 >
2179
2190
< p > If you update the repository and part of the configure script has
2180
2191
changed, the build system will force you to re-run
0 commit comments