-
Notifications
You must be signed in to change notification settings - Fork 2
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
Building on windows? #90
Comments
This is what i have done so far: remove these lines from the cMakeLists.
commented out the <unistd.h> in openpose-plus-master\3rdparty\src\stdtracer-repo-build\stdtracer.vcxproj] stdtracer-repo d:\deep\opp\openpose-plus-master\3rdparty\src\stdtracer-repo\include\bits\stdtracer_log_ctx Then you get an error about isatty. change the isatty to _isatty, and add #include <io.h> to fix that one. That leaves errors: #include <cxxabi.h> //can't find this file and 'illegal indirection' in A little more googling tells me that we can just comment out //#include <cxxabi.h> and adjust the function below to:
ref: https://en-mlog.blogspot.com/2012/01/using-cmdlineh-in-visual-c.html Now we have the
Which has me stumped. Thanks! |
@antithing thanks for your valuable debug information. I will have a deep look into this. As a quick look, the last error suggests the following is private
so you may try moving it to public section after
I'm also wondering how this error gets triggered, because in openpose-plus, raw_tensor is not used at all. |
note: the error is triggered at stdtensor/include/ttl/bits/raw_tensor.hpp Line 16 in 00519f4
|
Hi, I am attempting to build this code on Windows / visual studio.
I am seeing this error:
It seems to be this line:
using S = basic_flat_shape<Dim>;
Is there anything I can do to get this building on windows?
Thanks!
The text was updated successfully, but these errors were encountered: