summaryrefslogtreecommitdiff
blob: 620dea0af51b949ed6a8ff985e83cac69fa0f17f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/tools/features/debug-feature.jam
+++ b/tools/features/debug-feature.jam
@@ -18,7 +18,7 @@ common usage is to build release variant with debugging information.
 |# # end::doc[]
 
 feature.feature debug-symbols
-    : on off
+    : on off none
     : propagated ;
 
 #| tag::prof-doc[]
--- a/tools/features/optimization-feature.jam
+++ b/tools/features/optimization-feature.jam
@@ -16,7 +16,7 @@ smaller binary.
 |# # end::doc[]
 
 feature.feature optimization
-    : off speed space minimal debug
+    : off none speed space minimal debug
     : propagated ;
 
 #| tag::inline-doc[]