Skip to content

Commit ec20b0a

Browse files
committedFeb 13, 2024
8325626: Allow selection of non-matching configurations using CONF=!string
Reviewed-by: erikj, jwaters
1 parent 618af39 commit ec20b0a

File tree

4 files changed

+50
-21
lines changed

4 files changed

+50
-21
lines changed
 

‎doc/building.html

+20-9
Original file line numberDiff line numberDiff line change
@@ -2166,15 +2166,26 @@ <h3 id="using-multiple-configurations">Using Multiple
21662166
<code>configure</code> from there, e.g.
21672167
<code>mkdir build/&lt;name&gt; &amp;&amp; cd build/&lt;name&gt; &amp;&amp; bash ../../configure</code>.</p>
21682168
<p>Then you can build that configuration using
2169-
<code>make CONF_NAME=&lt;name&gt;</code> or
2170-
<code>make CONF=&lt;pattern&gt;</code>, where
2171-
<code>&lt;pattern&gt;</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/&lt;name&gt; &amp;&amp; make</code>.</p>
2169+
<code>make CONF=&lt;selector&gt;</code>, where
2170+
<code>&lt;selector&gt;</code> is interpreted as follows:</p>
2171+
<ul>
2172+
<li>If <code>&lt;selector&gt;</code> exacly matches the name of a
2173+
configuration, this and only this configuration will be selected.</li>
2174+
<li>If <code>&lt;selector&gt;</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>&lt;selector&gt;</code> is empty (i.e. <code>CONF=</code>),
2178+
then all configurations will be selected.</li>
2179+
<li>If <code>&lt;selector&gt;</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=&lt;name&gt;</code> also
2184+
exists, which will only match if the given <code>&lt;name&gt;</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/&lt;name&gt; &amp;&amp; make</code>.</p>
2188+
<p><code>make CONF_NAME=&lt;name&gt;</code> or</p>
21782189
<h3 id="handling-reconfigurations">Handling Reconfigurations</h3>
21792190
<p>If you update the repository and part of the configure script has
21802191
changed, the build system will force you to re-run

‎doc/building.md

+19-6
Original file line numberDiff line numberDiff line change
@@ -1952,12 +1952,25 @@ configuration with the name `<name>`. Alternatively, you can create a directory
19521952
under `build` and run `configure` from there, e.g. `mkdir build/<name> && cd
19531953
build/<name> && bash ../../configure`.
19541954
1955-
Then you can build that configuration using `make CONF_NAME=<name>` or `make
1956-
CONF=<pattern>`, where `<pattern>` is a substring matching one or several
1957-
configurations, e.g. `CONF=debug`. The special empty pattern (`CONF=`) will
1958-
match *all* available configuration, so `make CONF= hotspot` will build the
1959-
`hotspot` target for all configurations. Alternatively, you can execute `make`
1960-
in the configuration directory, e.g. `cd build/<name> && make`.
1955+
Then you can build that configuration using `make CONF=<selector>`, where
1956+
`<selector>` is interpreted as follows:
1957+
1958+
* If `<selector>` exacly matches the name of a configuration, this and only
1959+
this configuration will be selected.
1960+
* If `<selector>` matches (i.e. is a substring of) the names of several
1961+
configurations, then all these configurations will be selected.
1962+
* If `<selector>` is empty (i.e. `CONF=`), then all configurations will be
1963+
selected.
1964+
* If `<selector>` begins with `!`, then all configurations **not** matching the
1965+
string following `!` will be selected.
1966+
1967+
A more specialized version, `CONF_NAME=<name>` also exists, which will only
1968+
match if the given `<name>` exactly matches a single configuration.
1969+
1970+
Alternatively, you can execute `make` in the configuration directory, e.g. `cd
1971+
build/<name> && make`.
1972+
1973+
`make CONF_NAME=<name>` or
19611974
19621975
### Handling Reconfigurations
19631976

‎make/Global.gmk

+3-4
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,9 @@ help:
8787
$(info $(_) # (gensrc, java, copy, libs, launchers, gendata))
8888
$(info )
8989
$(info Make control variables)
90-
$(info $(_) CONF= # Build all configurations (note, assignment is empty))
91-
$(info $(_) CONF=<substring> # Build the configuration(s) with a name matching)
92-
$(info $(_) # <substring>)
93-
$(info $(_) CONF_NAME=<string> # Build the configuration with exactly the <string>)
90+
$(info $(_) CONF=<selector> # Select which configuration(s) to build)
91+
$(info $(_) CONF= # Select all configurations (note, assignment is empty))
92+
$(info $(_) CONF_NAME=<string> # Select the configuration with the name <string>)
9493
$(info $(_) SPEC=<spec file> # Build the configuration given by the spec file)
9594
$(info $(_) LOG=<loglevel> # Change the log level from warn to <loglevel>)
9695
$(info $(_) # Available log levels are:)

‎make/InitSupport.gmk

+8-2
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,14 @@ ifeq ($(HAS_SPEC),)
202202
matching_confs := $$(strip $$(all_confs))
203203
else
204204
# Otherwise select those that contain the given CONF string
205-
matching_confs := $$(strip $$(foreach var, $$(all_confs), \
206-
$$(if $$(findstring $$(CONF), $$(var)), $$(var))))
205+
ifeq ($$(patsubst !%,,$$(CONF)),)
206+
# A CONF starting with ! means we should negate the search term
207+
matching_confs := $$(strip $$(foreach var, $$(all_confs), \
208+
$$(if $$(findstring $$(subst !,,$$(CONF)), $$(var)), ,$$(var))))
209+
else
210+
matching_confs := $$(strip $$(foreach var, $$(all_confs), \
211+
$$(if $$(findstring $$(CONF), $$(var)), $$(var))))
212+
endif
207213
ifneq ($$(filter $$(CONF), $$(matching_confs)), )
208214
# If we found an exact match, use that
209215
matching_confs := $$(CONF)

0 commit comments

Comments
 (0)
Please sign in to comment.