-
Notifications
You must be signed in to change notification settings - Fork 11
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
Linux Boost version mismatch for CXX20 #22
Comments
That depends on the Linux distribution and version and how it's setup I guess... Which Linux version are you using? |
This error was produced by CI workflow, which is running on ubuntu-latest. No other change was made to the repos except for the addition of |
Their development images used for building quantlib install boost from scratch. And the version used currently in their Linux builds is The container images can be found here, and we see it's using Boost 1.85. Perhaps we should try to use the same container for our CI builds that QuantLib is using - that would make things easier to stay compatible.... |
(and note that you can set the standard using the CMake command-line, i.e. add |
Good idea, I'll match the Linux workflow to QuantLib's. Is it also worth adding matrix configuration for CXX 20? |
yes |
Should be fixed by #23 |
QuantLib expects Boost ver. ≥1.75.0 for CXX ≥20 but Linux fetches 1.74.0 with
sudo apt install -y libboost-dev ccache ninja-build
:The text was updated successfully, but these errors were encountered: