aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-08-23 15:44:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-08-23 15:44:32 +0200
commit0ad79d629278ff8fd0c4bedffc21e50d7bbcbda1 (patch)
tree3bd69cd3e657e772ff363d12a851bcb09ce0d1b2
parent285c6f8787b99350c47954d0a53c2eb0fbd40c65 (diff)
Fix typo in manual and add another example
-rw-r--r--doc/manual.cli33
1 files changed, 19 insertions, 14 deletions
diff --git a/doc/manual.cli b/doc/manual.cli
index 5332281..a786f98 100644
--- a/doc/manual.cli
+++ b/doc/manual.cli
@@ -1330,20 +1330,20 @@ parenthesized expression. Some examples (based on the
\l{https://ci.cppget.org/?build-configs cppget.org} deployment):
\
-builds: none ; None.
-builds: all ; All (suitable for libraries).
-builds: host ; All host (suitable for tools).
-builds: default ; All default.
-builds: host : &default ; Host default.
-builds: default legacy ; All default and legacy.
-builds: host: &( +default +legacy) ; Host default and legacy.
-builds: -windows ; Default except Windows.
-builds: all : -windows ; All except Windows.
-builds: all : -mobile ; All except mobile.
-builds: all : &gcc ; All with GCC only.
-builds: all : &gcc-8+ ; All with GCC 8 and up only.
-builds: gcc : -optimized ; GCC without optimization.
-builds: gcc : &( +linux +macos ) ; GCC on Linux and Mac OS.
+builds: none ; None.
+builds: all ; All (suitable for libraries).
+builds: host ; All host (suitable for tools).
+builds: default ; All default.
+builds: host : &default ; Host default.
+builds: default legacy ; All default and legacy.
+builds: host: &( +default +legacy ) ; Host default and legacy.
+builds: -windows ; Default except Windows.
+builds: all : -windows ; All except Windows.
+builds: all : -mobile ; All except mobile.
+builds: all : &gcc ; All with GCC only.
+builds: all : &gcc-8+ ; All with GCC 8 and up only.
+builds: gcc : -optimized ; GCC without optimization.
+builds: gcc : &( +linux +macos ) ; GCC on Linux and Mac OS.
\
Notice that the colon and parentheses must be separated with spaces from both
@@ -1361,6 +1361,11 @@ builds: -gcc ; GCC is not supported.
builds: -clang ; Clang is not supported.
\
+\
+builds: default
+builds: -( +macos &gcc) ; Homebrew GCC is not supported.
+\
+
\N|The \c{builds} value comments are used by the web interface (\c{brep}) to
display the reason for the build configuration exclusion.|