-
Notifications
You must be signed in to change notification settings - Fork 246
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
unable to compile x64 #27
Comments
The reason should be the lack of 64bit libraries for boost, tbb and OpenCV which you will need to compile yourself. The compiler error should tell you which file in particular is having issues, don't forget you will need to change all the location of the lib files and their names if the x64 versions for them differ. |
hi tadas. |
I was thinking of trying the x64 version to see if it has any impact on performance and if it does I might include it in the later versions. The reason I did not consider including it initially was that the libraries take up quite a bit of space already and including both x86 and x64 might be a bit excessive. |
Hi Tadas, Thanks for thanks for sharing your code. I created a branch that builds on x64 and x86: https://github.com/lmurmann/CLM-framework/tree/x64build. In my case, I want to link CLM with an existing x64 project, and converting that project to x86 is not an option. It is set up to build into directories like Release-x64, Debug-x86 and so on. Works on vs2013. |
Awesome work, I'll have a look once I got the time. I'm slowly moving my code to vs2015 and adding support for x64, will have a look how you set it up and might borrow some ideas :) Thanks, |
in visual studio i changed target platform to x64. but every time i compile it says "Error LNK1112 module machine type 'X86' conflicts with target machine type 'x64' ".
i think it is because of 32 bit versions of tbb and openVC binaries. i changed those but still no success.
The text was updated successfully, but these errors were encountered: