Topic: stdinit.h not found

I have included the DIR where stdinit.h can be found ( Microsoft apparently isn't including it anymore in win8.1 , I guess ) ,  yet scons still can't find it, unless I tell each header where it is, which is time consuming of course.

Why isn't scons picking this up from PATH , where I clearly have it set ?

thx

Re: stdinit.h not found

do you mean "stdint.h" ?

Just copy stdint.h in the default visual studio include directory,
something like : "C:\Program Files\Microsoft Visual Studio 10.0\VC\include"

What version of visual studio are you using ?

Re: stdinit.h not found

anael wrote:

do you mean "stdint.h" ?

Just copy stdint.h in the default visual studio include directory,
something like : "C:\Program Files\Microsoft Visual Studio 10.0\VC\include"

What version of visual studio are you using ?

Not using VS at all, just scons. Im giving up temporarily on scons, so maybe VS will be able to find the header files ?? we'll see, I'll update this thread if I can get it working.

It always used to work, so I guess something changed between windows 8 and 8.1, seems I heard Microsoft removed some headers, no idea why.

I already copied one, but I'd rather have PATH find it, but atm oddly enough its not.

Last edited by VeganDev (2014-03-09 21:49:29)

Re: stdinit.h not found

on windows scons compiles using visual studio compiler (just the command line) so you still need a version of visual studio installed.

After some search it seems that stdint.h is not installed with all versions of visual studio. VS 10.0 seems to have it.

Re: stdinit.h not found

HM interesting...ok thx anael wink

Yup, I have VS 13 (latest, which  has windows phone 8 support, which I need)...DEBUG didn't work, I got lots of permission problems ( maybe due to where I have it, in 'downloads' for now), so im trying release atm.

Im not seeing any stdint.h missing errors, just tons of permission errors..ill keep trying.