This is an automated email from the ASF dual-hosted git repository.

klueska pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit e7bd571e5c8bb3a3b91f589b9a03d07320070e3e
Author: Armand Grillet <agril...@mesosphere.io>
AuthorDate: Mon Nov 19 10:49:28 2018 -0500

    Added configuration docs describing how to use Python 3.
    
    For Autotools, this means how to use 'PYTHON_3' and 'PYTHON_3_VERSION'.
    For CMake, this means how to use '-DPYTHON_3'.
    
    Review: https://reviews.apache.org/r/69380/
---
 docs/configuration/autotools.md | 23 ++++++++++++++++++++---
 docs/configuration/cmake.md     |  9 +++++++++
 2 files changed, 29 insertions(+), 3 deletions(-)

diff --git a/docs/configuration/autotools.md b/docs/configuration/autotools.md
index 3c3c59a..b85de19 100644
--- a/docs/configuration/autotools.md
+++ b/docs/configuration/autotools.md
@@ -569,7 +569,7 @@ it to find libraries and programs with nonstandard 
names/locations.
       PYTHON
     </td>
     <td>
-      Which Python interpreter to use.
+      Which Python 2 interpreter to use.
     </td>
   </tr>
   <tr>
@@ -577,8 +577,25 @@ it to find libraries and programs with nonstandard 
names/locations.
       PYTHON_VERSION
     </td>
     <td>
-      The installed Python version to use, for example '2.3'. This string will
-      be appended to the Python interpreter canonical name.
+      The installed Python 2 version to use, for example '2.3'. This string 
will
+      be appended to the Python 2 interpreter canonical name.
+    </td>
+  </tr>
+  <tr>
+    <td>
+      PYTHON_3
+    </td>
+    <td>
+      Which Python 3 interpreter to use.
+    </td>
+  </tr>
+  <tr>
+    <td>
+      PYTHON_3_VERSION
+    </td>
+    <td>
+      The installed Python 3 version to use, for example '3.6'. This string 
will
+      be appended to the Python 3 interpreter canonical name.
     </td>
   </tr>
 </table>
diff --git a/docs/configuration/cmake.md b/docs/configuration/cmake.md
index 0cba405..188c60a 100644
--- a/docs/configuration/cmake.md
+++ b/docs/configuration/cmake.md
@@ -167,6 +167,15 @@ See more information in the [CMake 
documentation](../cmake.md).
   </tr>
   <tr>
     <td>
+      -DPYTHON_3=[path]
+    </td>
+    <td>
+      Specify the path to Python 3, e.g. "python36".
+      [default=unspecified]
+    </td>
+  </tr>
+  <tr>
+    <td>
       -D3RDPARTY_DEPENDENCIES=[path_or_url]
     </td>
     <td>

Reply via email to