Hello there I am in need of disabling /LTCG flag that WDK 7600 automatically inserts when buidling static libs. Can someone please point me how to do so within my .sources file.
Thanks…
Hello there I am in need of disabling /LTCG flag that WDK 7600 automatically inserts when buidling static libs. Can someone please point me how to do so within my .sources file.
Thanks…
Did you spelunk through makefile.new and amd64.inc to see if there is a directive to do this?
-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of xxxxx@yahoo.com
Sent: Wednesday, November 28, 2012 10:34 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] LTCG Flag
Hello there I am in need of disabling /LTCG flag that WDK 7600 automatically inserts when buidling static libs. Can someone please point me how to do so within my .sources file.
Thanks…
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
The beauty of Makefile.new and friends in older DDK is that I can always
find out myself if it’s possible and how to do something I wanted. With VS
in the Win8 wdk, one would need to navigate through N levels depth of menu
and find a button to click if he know where it is.
On Wed, Nov 28, 2012 at 10:37 AM, Doron Holan wrote:
> Did you spelunk through makefile.new and amd64.inc to see if there is a
> directive to do this?
>
> -----Original Message-----
> From: xxxxx@lists.osr.com [mailto:
> xxxxx@lists.osr.com] On Behalf Of xxxxx@yahoo.com
> Sent: Wednesday, November 28, 2012 10:34 AM
> To: Windows System Software Devs Interest List
> Subject: [ntdev] LTCG Flag
>
> Hello there I am in need of disabling /LTCG flag that WDK 7600
> automatically inserts when buidling static libs. Can someone please point
> me how to do so within my .sources file.
>
> Thanks…
>
>
> —
> 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
>
>
> —
> 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
>
On 28/11/2012 19:04, Calvin Guan (news) wrote:
The beauty of Makefile.new and friends in older DDK is that I can
always find out myself if it’s possible and how to do something I
wanted. With VS in the Win8 wdk, one would need to navigate through N
levels depth of menu and find a button to click if he know where it is.
It seems you have a lot to learn about MSBuild ![]()
In C:\Program Files
(x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets the linker
options are shown, including LinkTimeCodeGeneration. If you open a
.vcxproj file in Visual Studio you’ll get IntelliSense to help you edit it.
–
Bruce Cran
xxxxx@yahoo.com wrote:
Hello there I am in need of disabling /LTCG flag that WDK 7600 automatically inserts when buidling static libs. Can someone please point me how to do so within my .sources file.
Because of the way it’s defined, it looks like you have to add this:
NTTESTENV=1
That appears to have no other side effects.
–
Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.
FORCENATIVEOBJECT=1 is the correct directive.
-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Tim Roberts
Sent: Wednesday, November 28, 2012 11:27 AM
To: Windows System Software Devs Interest List
Subject: Re: [ntdev] LTCG Flag
xxxxx@yahoo.com wrote:
Hello there I am in need of disabling /LTCG flag that WDK 7600 automatically inserts when buidling static libs. Can someone please point me how to do so within my .sources file.
Because of the way it’s defined, it looks like you have to add this:
NTTESTENV=1
That appears to have no other side effects.
–
Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.
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 just used FORCENATIVEOBJECT=1 and it works like a charm…