mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 17:49:45 +02:00
31 lines
860 B
Python
31 lines
860 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
|
|
|
|
import os,sys
|
|
from waflib.Tools import ccroot,ar,gcc
|
|
from waflib.Configure import conf
|
|
@conf
|
|
def find_icc(conf):
|
|
if sys.platform=='cygwin':
|
|
conf.fatal('The Intel compiler does not work on Cygwin')
|
|
v=conf.env
|
|
cc=None
|
|
if v['CC']:cc=v['CC']
|
|
elif'CC'in conf.environ:cc=conf.environ['CC']
|
|
if not cc:cc=conf.find_program('icc',var='CC')
|
|
if not cc:cc=conf.find_program('ICL',var='CC')
|
|
if not cc:conf.fatal('Intel C Compiler (icc) was not found')
|
|
cc=conf.cmd_to_list(cc)
|
|
conf.get_cc_version(cc,icc=True)
|
|
v['CC']=cc
|
|
v['CC_NAME']='icc'
|
|
def configure(conf):
|
|
conf.find_icc()
|
|
conf.find_ar()
|
|
conf.gcc_common_flags()
|
|
conf.gcc_modifier_platform()
|
|
conf.cc_load_tools()
|
|
conf.cc_add_flags()
|
|
conf.link_add_flags()
|