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 zach.ware
Recipients r.david.murray, zach.ware
Date 2015-12-09.07:45:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449647154.73.0.177335074012.issue25827@psf.upfronthosting.co.za>
In-reply-to
Content
Attached is a patch that adds support for ICC to configure, making it easier to build with ICC on Unix and adjusting arguments to better fit ICC.

- Adds '--with-icc' argument to configure, which sets 'CC=icc' and 'CXX=icpc'
- Adds support for ICC PGO
- Prevents '-Wno-unused-result' from being added to CFLAGS if CC=icc (issue24709)
- Adds '-fp-model strict' to BASECFLAGS (I'm not 100% sure that's the right place, perhaps CFLAGS_NODIST would be better?).  Adding '-fp-model strict' clears up all the failures on the Ubuntu ICC Non-Debug buildbot, and most of the failures I get on OSX with -O3.  From a quick run of the 'math' benchmarks (perf.py -b math), adding '-fp-model strict' does not hurt performance (with the flag was always faster or negligibly slower).

Be sure to run autoreconf before testing.
History
Date User Action Args
2015-12-09 07:45:54zach.waresetrecipients: + zach.ware, r.david.murray
2015-12-09 07:45:54zach.waresetmessageid: <1449647154.73.0.177335074012.issue25827@psf.upfronthosting.co.za>
2015-12-09 07:45:54zach.warelinkissue25827 messages
2015-12-09 07:45:53zach.warecreate