vote up 1 vote down star

Hi, today is officially my first day with C++ :P

I've downloaded Visual C++ 2005 express edition and Microsoft Platform SDK for Windows Server 2003 SP1

because I want to put my hands on open source Enso ( http : // code.google.com/p/enso ) .

So, after installing scons I went to the console and try to compile it using scons but I got this error:

C:\oreyes\apps\enso\enso-read-only\src\platform\win32\Include\WinSdk.h(64) : fatal error C1083: Cannot open include file: 'Windows.h': No such file or directory
scons: *** [src\platform\win32\InputManager\AsyncEventProcessorRegistry.obj] Error 2
scons: building terminated because of errors.

After checking these links:

VS ans PSDK

Include tiffi.h

Wndows.h

I've manage to configure my installation like this:

alt text

And even run this script

alt text

And I managed to compile the file below in the IDE.

// Test.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <Windows.h>


int _tmain(int argc, _TCHAR* argv[])
{
    return 0;
}

Bus I still get that exception in the console. Anyone has scons experience?

EDIT

Actually ( and I forgot to tell you this ) I start the command prompt with the link : "Visual Studio 2005 Command Prompt"

I assume this will include the paths in environment variables. Well after printing them I show It didn't

 echo %INCLUDE%
 echo %LIB%
 echo %PATH%

And they were not present, so I create this bat file:

set PATH=%PATH%;"C:\Program Files\Microsoft Platform SDK\Bin"
set INCLUDE=%INCLUDE%;"C:\ Program Files\Microsoft Platform SDK\Include"
set LIB=%LIB%;"C:\ Program Files\Microsoft Platform SDK\Lib"

Still the scons seeems not to take the vars... :(

flag

8 Answers

vote up 2 vote down check

Using the above recommendations will not work with scons: scons does not import the user environment (PATH and other variables). The fundamental problem is that scons does not handle recent versions of SDKs/VS .

I am an occasional contributor to scons, and am working on this feature ATM. Hopefully, it will be included soon in scons, but the feature is much harder to implement reliably than I first expected, partly because every sdk/compiler combination is different (and sometimes even MS does not get it right, some of their .bat files are broken), so I can't give you a date. I hope it will be included in 1.2 (to be released in approximatively one month).

link|flag
:S How do I manually add the environment variables to scons build process directly? – Oscar Reyes Oct 17 '08 at 17:24
There are two ways. Let say you have the SDK path in the python variable mssdk, you can then add the paths using env.Prepend(CPPPATH, [os.path.join(mssdk, "Include")]) and env.Prepend(LIBPATH, [os.path.join(mssdk, "libpath")]) – David Cournapeau Oct 20 '08 at 1:37
Another way is to simply import the environment into scons: env = Environment(ENV = os.environ). Then, scons will use whatever environment modification you will do in the shell (DOS shell here on windows). – David Cournapeau Oct 20 '08 at 1:40
Great I did the second and now a different error appears, but not Windows.h thanks a lot!! – Oscar Reyes Oct 21 '08 at 2:52
vote up 0 vote down

You show us how you configured Visual Studio for compilations within Visual Studio but you didn't show us what command line environment you tried. Sorry I haven't tried Express versions so I don't know if they create additional Start menu shortcuts like Pro and above do. If you open a suitable command prompt with its environment variables already set then you can compile on the command line. Otherwise you have to set variables yourself or execute a batch script to set them, each time you open a command prompt.

link|flag
vote up 1 vote down

You need to set the include file path (and possibly other things). At the command line this is typically done using a batch file that Visual Studio installs called vsvars32.bat (or vcvars32.bat for compatibility with VC6).

I'm not familiar with scons so I don't know the best way to get these settings configured for that tool, but for standard makefiles there's usually a line in the makefile which sets a macro variable with the include directory path and that macro is used as part of a command line parameter in the command that invokes the compiler.

Another possibility might be to have the scons process invoke vsvars32.bat or run the scons script from a command line that has been configured with the batch file.

In short you need to get the things that vsvars32.bat configures into the scons configuration somehow.

link|flag
I can confirm that this is the process that our team normally use when working with SCons on windows. – Andrew Walker Oct 17 '08 at 5:31
Andrew, can you further explain how do you include vcvars32 in scons? – Oscar Reyes Oct 17 '08 at 17:21
vote up 0 vote down

There will be a batch file similar to this one (for MSVC 2005) that sets up the environment variables:

c:\Program Files\Microsoft Visual Studio 8\Common7\Tools\vsvars32.bat

Step 1: Find a similar file in the Express installation folders

Step 2: Create a shortcut on the desktop with these target details and a suitably modified path:

cmd.exe /K "c:\Program Files\Microsoft Visual Studio 8\Common7\Tools\vsvars32.bat"

Step 3: Open the DOS prompt via this shortcut

The command line build should now work from within this console window.

link|flag
vote up 0 vote down

I have this same problem, where a build using scons fails to find windows.h. I did run vsvars32.bat in the commands prompt, and windows.h still cannot be found. I always have these problems trying to compile C or C++ projects. It's great that Microsoft tries to abstract away alot of this stuff, and they've eliminated alot of these problems in regards to .NET languages, but C++ is still a pain for me. It's so abstracted away I don't know what's using MS app.config files, or environment variables. I wish it'd just literally tell us "Searching X:\path\" and tell us exactly where it has looked and what logic was used to decide to look there. Most guides regarding this problem reference the platform sdk as being under C:\Program files\Microsoft Platform SDK\, but instead mine, which I installed just last week, is in a different location under "Microsoft SDKs" with about 4 different versions in there. Somebody at MS decided, "hey let's move this stuff around and see who's development environments we can break in the process and render all our previous documentation inaccurate!"

link|flag
vote up 0 vote down

Oscar, can you please describe in more detail what you did to resolve this. I'm not quite following the suggestions in the first set of comments, as I'm not really familier with scons, and am just trying to get an open source project to compile for the first time.

link|flag
vote up 0 vote down

It'll be nice when scons does this automatically. For now, I use this (run from an SDK command prompt, not sure if there is a difference if run after vsvars32.bat):

import os
env = Environment(ENV={'PATH': os.environ['PATH']})

env['ENV']['TMP'] = os.environ['TMP']
env.AppendUnique(CPPPATH=os.environ['INCLUDE'].split(';'))
env.AppendUnique(LIBPATH=os.environ['LIB'].split(';'))
link|flag
vote up 0 vote down

This works for me while compiling wxwidgets with visual c++ 2005 express using the command line prompt

REM Fix Error error C1083 'windows.h' (use /useenv option when compiling)

set PDSKWIN=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2 (Change to right one)

set INCLUDE=%PDSKWIN%\Include;%INCLUDE%

set LIB=%PDSKWIN%\Lib;%LIB%

Then I use this line when compile but I just belive just add /useenv to yours lines and everything works fine vcbuild /useenv /nohtmllog /nologo name.proj (or any file to compile)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.