This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steve.dower
Recipients cgohlke, larry, lemburg, paul.moore, steve.dower, tim.golden, zach.ware
Date 2015-08-24.15:26:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440429967.79.0.566647919492.issue24872@psf.upfronthosting.co.za>
In-reply-to
Content
Do you know where that time is being spent?

I'd guess it's in link.exe (or lib.exe) while it displays a "generating code" message. You should be able to omit the "/LTCG" option from lib.exe when building a static library, though I suspect that will push the delay into the final link step when building the DLL/PYD.

And while it takes longer, it's almost certainly doing a better job of optimizing everything (I'd guess it's probably O(N**2) with the number of obj files).
History
Date User Action Args
2015-08-24 15:26:07steve.dowersetrecipients: + steve.dower, lemburg, paul.moore, larry, tim.golden, cgohlke, zach.ware
2015-08-24 15:26:07steve.dowersetmessageid: <1440429967.79.0.566647919492.issue24872@psf.upfronthosting.co.za>
2015-08-24 15:26:07steve.dowerlinkissue24872 messages
2015-08-24 15:26:07steve.dowercreate