Ignore:
Timestamp:
Mar 14, 2015, 6:06:10 PM (10 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
6d7acc8
Parents:
5525507
Message:

waf, waflib: update to 1.8.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • waflib/Tools/icc.py

    r5525507 r904702d  
    1010        if sys.platform=='cygwin':
    1111                conf.fatal('The Intel compiler does not work on Cygwin')
    12         v=conf.env
    13         cc=None
    14         if v['CC']:cc=v['CC']
    15         elif'CC'in conf.environ:cc=conf.environ['CC']
    16         if not cc:cc=conf.find_program('icc',var='CC')
    17         if not cc:cc=conf.find_program('ICL',var='CC')
    18         if not cc:conf.fatal('Intel C Compiler (icc) was not found')
    19         cc=conf.cmd_to_list(cc)
     12        cc=conf.find_program(['icc','ICL'],var='CC')
    2013        conf.get_cc_version(cc,icc=True)
    21         v['CC']=cc
    22         v['CC_NAME']='icc'
     14        conf.env.CC_NAME='icc'
    2315def configure(conf):
    2416        conf.find_icc()
Note: See TracChangeset for help on using the changeset viewer.