If I don’t care about optimization, will /Od do the trick?
And will cl=/Od override the build defaults?
thanks,
m navab
If I don’t care about optimization, will /Od do the trick?
And will cl=/Od override the build defaults?
thanks,
m navab
If you don’t care about optimization and you want complete debugging
information that is the definition of the checked build, why do you want to
redefine you free build to be checked? You can distribute a checked build,
it is just not recommended.
–
Don Burn (MVP, Windows DKD)
Windows Filesystem and Driver Consulting
Website: http://www.windrvr.com
Blog: http://msmvps.com/blogs/WinDrvr
wrote in message news:xxxxx@ntdev…
> If I don’t care about optimization, will /Od do the trick?
> And will cl=/Od override the build defaults?
>
> thanks,
> m navab
>
>
> Information from ESET NOD32 Antivirus, version of virus
> signature database 4696 (20091217)
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
>
Information from ESET NOD32 Antivirus, version of virus signature database 4696 (20091217)
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
A fre or chk build has nothing to do with symbol generation. You get full symbols on a fre build just like you get on a chk build. The different is that if the binary is optimized, the symbols do not track the new lifetime of passed in parameters or locals or how the code might have been rearranged. Basically, the symbols do not match the optimizations the compiler added, but the symbols are complete
d
-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of xxxxx@yahoo.com
Sent: Thursday, December 17, 2009 9:42 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] Free build with complete symbol and locals info
If I don’t care about optimization, will /Od do the trick?
And will cl=/Od override the build defaults?
thanks,
m navab
NTDEV is sponsored by OSR
For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars
To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer
I’d like to debug any dtm issues. I don’t think you can submit ckecked builds for dtm signature.
At least I thought you couldn’t for whql.
xxxxx@yahoo.com wrote:
I’d like to debug any dtm issues. I don’t think you can submit ckecked builds for dtm signature.
At least I thought you couldn’t for whql.
Well, hold on a minute. You certainly are not going to submit your
checked driver to WHQL, since it will cost you money to do so. You are
going to run your checked driver through DTM on your own test system,
right? For that, you can certainly try a checked driver.
Remember, WHQL doesn’t actually run DTM on your driver. In fact, they
don’t run your driver at all. YOU run DTM and submit the logs to WHQL.
WHQL looks over the logs, and if they are all in order, issues the
signature.
–
Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.