-
Notifications
You must be signed in to change notification settings - Fork 219
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
x64 not working #17
Comments
More precisely, VS 2017 says "module machine type 'x86' conflicts with target machien type 'x64'", with regard to jrtplib_d.lib |
You need to tell cmake to create x64 code, see e.g. https://cmake.org/cmake/help/v3.12/generator/Visual%20Studio%2015%202017.html |
Did as you say and when trying to build jthread in Visual Studio it says module machine type 'x64' conflicts with target machine type 'x86' for file jmutex.obj |
Yes, you need to build an x64 version of jthread as well, and make sure that version is used for linking |
That happens when I try to build jthread. |
Solved. Thanks. For the record, in case anybody faces this problem in the future: |
It seems that the .lib files created as per the video tutorial you provided are x86. Is there anyway to make them work within a x64 project?
The text was updated successfully, but these errors were encountered: