raji
raji

Reputation: 101

Error in WDK while compile using x64 checked build environment

I try to build a kernel mode driver in windows 7 x64.I already disable the patch guard.whenever i open the x64 checked build environment command prompt i get this error "WARNING: x64 Native compiling isn't supported. Using cross compilers".Please help me to solve this error.

Upvotes: 0

Views: 1670

Answers (1)

Carey Gregory
Carey Gregory

Reputation: 6846

That is not an error. It's perfectly normal and you can ignore it. It's just telling you that the x64 compiler is actually a 32-bit compiler that generates 64-bit code. Hence the term "cross compilers."

Upvotes: 2

Related Questions