-
Notifications
You must be signed in to change notification settings - Fork 35
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
Compile under Win & VS 2010 #1
Comments
Hi Matthias, you can simply fork the project to your github user, do the fixes and push the results. I'll pick them up and merge them. |
Hi Stefan, thanks for the hint. will do that. lg matthias Am 26.07.2012 17:48, schrieb Stefan Eilemann:
|
Hi Thoenu,
|
Hi skywindy, No such file or directory C:\Users\jan\Documents\Visual Studio 2010\Projects\vmm\vmm\vmmlib\tensor_mmapper.hpp 16 1 vmm does not sounds right. You may check the path. lg Thoenu |
Hi Thoenu, |
Hi skywindy, |
Hi,
tried to compile under Win 7 & VS 2010. here some issues:
1.)
in vmmlib_config.hpp I had to correct the line to:
defined _WIN32
define VMMLIB_ALIGN( var ) __declspec (align (16)) var
2.)
Compiler throw the error in quaternion.hpp, that the vector is not accessible, because it is using varaibles from base class with "super". Had to change the declaration to:
class quaternion : public vector< 4, T >
instead of class quaternion : private vector< 4, T >
so that it worked.
lg matthias
The text was updated successfully, but these errors were encountered: