您的位置:首页 > 运维架构

驱动开发的几种编译环境配置法(转)

2009-12-10 14:46 465 查看
转链接:

http://www.vcfans.com/2009/07/windows-driver-compiler-link-config.html

很不错,值得收藏!

 

英文版

/ /How to Configure Visual Studio 2008 for Compiling Drivers

 

 

Setup Visual Studio 2008.

Setup DDK (WDK).

Add to VS paths DDK include files, libs and bins.

Create new empty "Win32 project" and add source file (i.e. HelloWorld.c).

Configure project properties (All Configurations):

C/C++ - General - Debug Information Format = Program Database (/Zi)

C/C++ - Preprocessor - Preprocessor Definitions = _X86_ [add also DBG for Debug config]

C/C++ - Code Generation - Enable C++ Exceptions = No

C/C++ - Code Generation - Basic Runtime Checks = Default

C/C++ - Code Generation - Buffer Security Check = No (/GS-)

C/C++ - Advanced - Calling Convention = __stdcall (/Gz)

C/C++ - Advanced - Compile As = Compile as C Code (/TC) [if you are going to use plain C]

Linker - General - Output File = $(OutDir)/$(ProjectName).sys

Linker - General - Enable Incremental Linking = Default

Linker - Input - Additional Dependencies = ntoskrnl.lib hal.lib $(NOINHERIT) [add needed libs here e.g. ntoskrnl.lib hal.lib]

Linker - Input - Ignore All Default Libraries = Yes (/NODEFAULTLIB)

Linker - Manifest File - Generate Manifest = No

Linker - System - SubSystem = Native (/SUBSYSTEM:NATIVE)

Linker - System - Driver = Driver (/DRIVER)

Linker - Advanced - Entry Point = DriverEntry

Linker - Advanced - Base Address = 0x10000

Linker - Advanced - Randomized Base Address = Disable (/DYNAMICBASE:NO)

Linker - Advanced - Data Execution Prevention (DEP) = Disable (/NXCOMPAT:NO)

#include "ntddk.h"

NTSTATUS
DriverEntry(PDRIVER_OBJECT DriverObject,PUNICODE_STRING
RegistryPath)
{
return STATUS_UNSUCCESSFUL;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息