Volumes Of Fun http://www.volumesoffun.com/phpBB3/ |
|
|fatal error: cstdint: No such file or directory| http://www.volumesoffun.com/phpBB3/viewtopic.php?f=14&t=324 |
Page 1 of 1 |
Author: | aaammmsterdddam [ Mon Jan 30, 2012 8:09 pm ] |
Post subject: | |fatal error: cstdint: No such file or directory| |
so yeah. I am screwed. (can't compile the static library thus, no integrating into my project until finished ![]() now, for the information you seek IDE: Code::Blocks Compiler: MinGW 4.5.2 4.3 and up SHOULD work. what did I miss? Google did not help btw, so don't even recommend that. Thanks in advance //aaammmsterdddam |
Author: | ker [ Tue Jan 31, 2012 10:03 am ] |
Post subject: | Re: |fatal error: cstdint: No such file or directory| |
tip: post the error messages. otherwise it's like saying my car doesn't work, it's a porsche ![]() |
Author: | David Williams [ Tue Jan 31, 2012 10:56 am ] |
Post subject: | Re: |fatal error: cstdint: No such file or directory| |
'cstdint' is a part of the standard library and should be included with your compiler. However, I think it's only available for C++11. According to this article, GCC 4.5 should include it though you might need to compile with the flag '–std=c++0x' to enable C++11 support. Probably this flag is missing? Have a look at the CMake file here. You can see these lines: Code: IF(CMAKE_COMPILER_IS_GNUCXX) #Maybe "OR MINGW" ADD_DEFINITIONS(-std=c++0x) #Enable C++0x mode ENDIF() Looks like we didn't know whether we had to define 'MINGW'. Perhaps you can try adding this, or just removing the IF and ENDIF so the definition always get created? |
Author: | aaammmsterdddam [ Mon Feb 20, 2012 7:13 pm ] |
Post subject: | Re: |fatal error: cstdint: No such file or directory| |
sorry for replying so late! (been busy with IRL stuff!) ker, the title IS the error. david williams, that line is there :/ so I am not really sure where it went..... though, I do not have ANY file with cstdint in it's name.... so that could be the problem..... **fixes what you told me to fix** Nope, still fails epically ![]() |
Author: | David Williams [ Tue Feb 21, 2012 8:49 am ] |
Post subject: | Re: |fatal error: cstdint: No such file or directory| |
If you have searched your compiler directories and you don't have any file with 'cstdint' in the name then I can only assume you compiler does not yet have support for this. You can try a more recent version or ask on the compiler forums about where this file might be. Otherwise, you can also try installing Boost. You will probably then need to edit Typedef.h to make PolyVox use the Boost files as an alternative to 'cstdint' (which is what it does for the early Microsoft compilers. |
Author: | aaammmsterdddam [ Sat Mar 03, 2012 1:30 pm ] |
Post subject: | Re: |fatal error: cstdint: No such file or directory| |
well, looking at the install logs of MinGW I noticed that the console did say one or two downloads failed, MinGW will still install though some downloads failed.... with my luck that is what happened... will reinstall... |
Page 1 of 1 | All times are UTC |
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group http://www.phpbb.com/ |