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 3 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 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

Copy link
Collaborator

@eramongodb eramongodb Jul 10, 2025

Choose a reason for hiding this comment

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

The current wording conflates the new minimum required compiler versions, which require support for C++11 and newer, with the C++17 requirement that is relevant only for this tutorial page (although it is still recommended over using C++11). Most of these compiler versions Clang 3.8 and VS 2015 do not support C++17.

Suggest moving the list of "minimum required compiler versions" into a separate note into the "Compatibility" page and referencing that page within the existing "Pre-C++17 Configurations" note below.

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

Expand Down
Loading