¿Se puede compilar cython con icc?

Estoy tratando de construir cython desde la fuente con el compilador icc en Ubuntu 14.04 ya que mi python está compilado con el compilador icc de Intel.

Cuando intenté instalar cython usandopip3 instalar cython y luego ejecuté cython obtuve el siguiente error

Traceback (most recent call last):
File "/usr/local/bin/cython", line 9, in <module>
load_entry_point('Cython==0.24', 'console_scripts', 'cython')()
File "/usr/lib/python3/dist-packages/pkg_resources.py", line 351, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/lib/python3/dist-packages/pkg_resources.py", line 2363, in load_entry_point
return ep.load()
File "/usr/lib/python3/dist-packages/pkg_resources.py", line 2088, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
File "/usr/local/lib/python3.4/dist-packages/Cython/Compiler/Main.py", line 28, in <module>
from .Scanning import PyrexScanner, FileSourceDescriptor
ImportError: /usr/local/lib/python3.4/dist-packages/Cython/Compiler/Scanning.cpython-34m.so: undefined symbol: __intel_sse2_strchr 

¿Cómo se hace para instalar cython desde la fuente usando el compilador icc?

Intenté esto y no funciona

Desde el directorio de cython (descargado de github)

python3.4 setup.py CC = icc

Recibo el siguiente mensaje:

/home/aa/libPython/cython/Cython/Distutils/build_ext.py:20: UserWarning:    
Cython.Distutils.build_ext does not properly handle dependencies and is deprectated. Use Cython.Build.build_ext instead.
"Cython.Distutils.build_ext does not properly handle dependencies "
 Unable to find pgen, not compiling formal grammar.
 invalid command name 'CC=icc'

Respuestas a la pregunta(1)

Su respuesta a la pregunta