Skip to content

DOCSP-50761 Add minimum compiler versions to build from source #140

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions source/get-started.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,13 @@ Download and Install
Before you begin this tutorial, ensure you have the following dependencies
installed in your development environment:

- Compiler that supports C++17, such as `GCC <https://gcc.gnu.org/install/>`__, `Clang <https://clang.llvm.org/>`__,
or `Visual Studio <https://visualstudio.microsoft.com/>`__
- Compiler that supports C++17, such as one of the following:

- `GCC <https://gcc.gnu.org/install/>`__ v8.1 or newer
- `Clang <https://clang.llvm.org/>`__ v3.8 or newer
- `Apple Clang <https://developer.apple.com/xcode/>`__ v13.1 or newer
- `Visual Studio <https://visualstudio.microsoft.com/vs/features/cplusplus/>`__ 2015 Update 3 or newer
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: I'd use "later" instead of "newer":

Suggested change
- `GCC <https://gcc.gnu.org/install/>`__ v8.1 or newer
- `Clang <https://clang.llvm.org/>`__ v3.8 or newer
- `Apple Clang <https://developer.apple.com/xcode/>`__ v13.1 or newer
- `Visual Studio <https://visualstudio.microsoft.com/vs/features/cplusplus/>`__ 2015 Update 3 or newer
- `GCC <https://gcc.gnu.org/install/>`__ v8.1 or later
- `Clang <https://clang.llvm.org/>`__ v3.8 or later
- `Apple Clang <https://developer.apple.com/xcode/>`__ v13.1 or later
- `Visual Studio <https://visualstudio.microsoft.com/vs/features/cplusplus/>`__ 2015 Update 3 or later


- `CMake <https://cmake.org/>`__ v3.15 or later
- `pkg-config <https://www.freedesktop.org/wiki/Software/pkg-config/>`__

Expand Down
Loading