diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-03-17 09:57:49 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-03-21 08:39:45 -0700 |
commit | c6b1234f9ca53a401cb589509e7d037e63c49884 (patch) | |
tree | c1cdf1661fa119ef1372dfaef3a2a47adbaf8476 /host/docs | |
parent | 4cfc809bd52ebf7b75c20e2e1750b44530198501 (diff) | |
download | uhd-c6b1234f9ca53a401cb589509e7d037e63c49884.tar.gz uhd-c6b1234f9ca53a401cb589509e7d037e63c49884.tar.bz2 uhd-c6b1234f9ca53a401cb589509e7d037e63c49884.zip |
Bumping minimum version requirements for our dependencies.
New minimum versions:
- Boost: 1.53
- gcc: 4.8
- Clang: 3.3
- Python: 2.7
- CMake: 2.8
Diffstat (limited to 'host/docs')
-rw-r--r-- | host/docs/build.dox | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/host/docs/build.dox b/host/docs/build.dox index 7b5cb00d7..95f7bab85 100644 --- a/host/docs/build.dox +++ b/host/docs/build.dox @@ -26,8 +26,8 @@ follow the auxiliary download URL for the Windows installer (below). The following compilers are known to work and officially supported: -- GCC >= 4.4 -- Clang >= 3.1 +- GCC >= 4.8 +- Clang >= 3.3 - MSVC >= 2012; the free <a href="https://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx">Visual Studio Express Edition for Desktop</a> works. Other compilers (or lower versions) may work, but are unsupported. @@ -35,14 +35,14 @@ Other compilers (or lower versions) may work, but are unsupported. ### CMake - **Purpose:** generates project build files -- **Minimum Version:** 2.6 +- **Minimum Version:** 2.8 - **Usage:** build time (required) - **Download URL:** http://www.cmake.org/cmake/resources/software.html ### Boost - **Purpose:** C++ library -- **Minimum Version:** 1.46 +- **Minimum Version:** 1.53 - **Usage:** build time + runtime (required) - **Download URL:** http://www.boost.org/users/download/ - **Download URL (Windows installer):** http://sourceforge.net/projects/boost/files/boost-binaries/ @@ -58,7 +58,7 @@ Other compilers (or lower versions) may work, but are unsupported. ### Python - **Purpose:** used by mako and utility scripts -- **Minimum Version:** 2.6 +- **Minimum Version:** 2.7 - **Usage:** build time + runtime utility scripts (required) - **Download URL:** http://www.python.org/download/ @@ -120,13 +120,13 @@ This will populate the `fpga-src` submodule inside the repository. You can also git submodule init git submodule update -Our source code repository contains two branches: +Our source code repository contains of two main branches: \li \b master: This is the main development branch, with updated new features and bug fixes. \li \b maint: This branch has all bugfixes since the last major release, but there are no new features. This is what you should be using if you need a stable release. We might also be publishing experimental feature branches which can then be found in the same repository. -All of our releases are associated with tags in the repository. +All of our versioned releases are associated with tags in the repository. \li <a href="https://github.com/EttusResearch/UHD/tags">Source archives for release tags</a> @@ -301,7 +301,7 @@ If your application uses CMake as a build system, the following command will setup up your build environment to link against UHD: \code{.cmake} -find_package(UHD "3.8.0") +find_package(UHD "3.10.0") \endcode This will set the CMake variable `UHD_INCLUDE_DIRS` and `UHD_LIBRARIES` |