Add conflicts statement for Python-3.6.7+ and Intel compiler

Python-3.6.7 and up do not build with the Intel compiler

- https://bugs.python.org/issue35473
- https://bugs.python.org/issue37415
This commit is contained in:
Glenn P Johnson 2019-07-25 22:18:19 -05:00 committed by Peter Scheibel
parent dbd294c204
commit e7d9a6f426

View File

@ -153,6 +153,11 @@ class Python(AutotoolsPackage):
conflicts('+tix', when='~tkinter',
msg='python+tix requires python+tix+tkinter')
# Python 3.6.7 and above can not be compiled with the Intel compiler
# https://bugs.python.org/issue35473
# https://bugs.python.org/issue37415
conflicts('%intel', when='@3.6.7:')
_DISTUTIL_VARS_TO_SAVE = ['LDSHARED']
_DISTUTIL_CACHE_FILENAME = 'sysconfig.json'
_distutil_vars = None