-
Notifications
You must be signed in to change notification settings - Fork 65
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
Upgrade vcpkg dependencies for the missed boost-format dependency #427
base: main
Are you sure you want to change the base?
Conversation
### Motivation See microsoft/vcpkg#36510 Currently the commit id of the vcpkg submodule is old. With latest dependencies in vcpkg, it requires a `boost-format` dependency to build. ### Modifications Upgrade the vcpkg submodule to the latest commit at the moment and add the `boost-format` dependency to fix the build.
There are some failed tests. I'm going to check if they were introduced by an upgraded dependency |
It's an issue with the JSON serialization for key-value schema. Maybe caused by the |
The root cause is that latest's Boost.PropertyTree does not write a line ending in |
There is a bug for GCC 4.8 that it does not support I sent an email to drop GCC 4.8 in the next release (see https://lists.apache.org/thread/7o8hpv1gtoffvzx053wm0ss2s9xt0795), so I will open a PR to drop the support for GCC 4.8 first and then go back to this PR. |
Motivation
See microsoft/vcpkg#36510
Currently the commit id of the vcpkg submodule is old. With latest dependencies in vcpkg, it requires a
boost-format
dependency to build.Modifications
Upgrade the vcpkg submodule to the latest commit at the moment and add the
boost-format
dependency to fix the build.