summaryrefslogtreecommitdiff
path: root/winddk.py
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-24 16:43:07 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-24 16:43:07 +0900
commite70a431c3d87a829b3eb1b931d5af365ceee75b5 (patch)
treefa71a04f07cba37bc79d3679c8489daa6c3a3648 /winddk.py
parent7aadb475e58b91f3c17c2a70f6700225e9ef25ed (diff)
A few more tweaks to get correct WINDDK compilation.
Diffstat (limited to 'winddk.py')
-rw-r--r--winddk.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/winddk.py b/winddk.py
index af4335dbb0..1a5a0d1aa7 100644
--- a/winddk.py
+++ b/winddk.py
@@ -212,6 +212,48 @@ def generate(env):
SCons.Tool.mslink.generate(env)
+ # See also:
+ # - WINDDK's bin/makefile.new for more info.
+ # - http://alter.org.ua/docs/nt_kernel/vc8_proj/
+ env.Append(CPPDEFINES = [
+ 'WIN32',
+ '_WINDOWS',
+ ('i386', '1'),
+ ('_X86_', '1'),
+ 'STD_CALL',
+ ('CONDITION_HANDLING', '1'),
+ ('NT_INST', '0'),
+ ('_NT1X_', '100'),
+ ('WINNT', '1'),
+ ('_WIN32_WINNT', '0x0500'), # minimum required OS version
+ ('WIN32_LEAN_AND_MEAN', '1'),
+ ('DEVL', '1'),
+ ('FPO', '1'),
+ ])
+ cflags = [
+ '/GF', # Enable String Pooling
+ #'/EHsc', # Enable C++ Exceptions
+ '/Zp8', # 8bytes struct member alignment
+ #'/GS-', # No Buffer Security Check
+ #'/GR-', # Disable Run-Time Type Info
+ '/Gz', # __stdcall Calling convention
+ ]
+ env.Append(CFLAGS = cflags)
+ env.Append(CXXFLAGS = cflags)
+
+ env.Append(LINKFLAGS = [
+ '/DEBUG',
+ '/NODEFAULTLIB',
+ '/SUBSYSTEM:NATIVE',
+ '/INCREMENTAL:NO',
+ #'/DRIVER',
+
+ #'-subsystem:native,4.00',
+ '-base:0x10000',
+
+ '-entry:DrvEnableDriver',
+ ])
+
if not env.has_key('ENV'):
env['ENV'] = {}
if not env['ENV'].has_key('SystemRoot'): # required for dlls in the winsxs folders