Add github action to ensure build [VC2022]#146
Open
cielavenir wants to merge 7 commits intomasterfrom
Open
Conversation
This was referenced Dec 8, 2023
hemangandhi
reviewed
Apr 17, 2024
| cmake .. -G 'Visual Studio 17 2022' -A x64 -DRAPIDJSON_HAS_STDSTRING=ON -DRAPIDJSON_BUILD_DOC=OFF -DRAPIDJSON_BUILD_EXAMPLES=OFF -DRAPIDJSON_BUILD_TESTS=OFF | ||
| msbuild ALL_BUILD.vcxproj /p:Configuration=Release | ||
| cd ..\.. | ||
| - name: Install libzmq |
There was a problem hiding this comment.
If we're maintaining this approach, should we also get rid of the msvc_binaries?
| } | ||
| } | ||
|
|
||
| #ifndef _MSC_VER |
There was a problem hiding this comment.
Should we #include <stdint.h> instead? Based on https://stackoverflow.com/questions/13604137/definition-of-int64-t
Contributor
Author
There was a problem hiding this comment.
@hemangandhi The thing is, there exists a branch which supports VC2010 https://github.com/mujin/controllerclientcpp/tree/savebackup and VC2010 does not support <stdint.h>.
Contributor
Author
|
omg, it was passing before but now it is failing..... |
4973027 to
4af30c6
Compare
4af30c6 to
bb0096c
Compare
cielavenir
commented
Feb 3, 2026
| #include <boost/thread.hpp> // for sleep | ||
| #include <boost/algorithm/string.hpp> | ||
| #include <netdb.h> | ||
| #include <arpa/inet.h> |
Contributor
Author
There was a problem hiding this comment.
- somehow these two files are not needed
- on windows these two files are not found
Contributor
Author
|
@kanbouchou please check |
cielavenir
commented
Feb 4, 2026
|
|
||
| boost::asio::ip::tcp::socket socket(*ioContext); | ||
| boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::address::from_string(host), port); | ||
| boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::make_address(host), port); |
Contributor
Author
There was a problem hiding this comment.
@woswos fyi address::from_string has been removed in boost 1.87
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I remember that controllerclientcpp is compatible with msvc. But how to maintain compatibility is unclear. Here we start to maintain it as code.