1 | initial version |
Ok so problem with x86 was compilation not linking. First was about stdint.h file, which could not be found by Visual Studio. I simply copied stdint.h from Visual Studio 2010. Second one was about using C++11 code there was one line of code where there was data method from std::vector used, so I had to change it into &(std::vector[0]) (I cant remeber class name for it.)
2 | No.2 Revision |
Ok so problem with x86 was compilation not linking. First was about stdint.h file, which could not be found by Visual Studio. I simply copied stdint.h from Visual Studio 2010. Second one was about using C++11 code there was one line of code where there was data method from std::vector used, so I had to change it into &(std::vector[0]) (I cant remeber class object name for it.)