waf/waflib/Tools/icc.py

30 lines
600 B
Python
Raw Normal View History

2011-09-10 11:13:51 +02:00
#!/usr/bin/env python
# encoding: utf-8
# Stian Selnes 2008
2018-01-01 20:53:49 +01:00
# Thomas Nagy 2009-2018 (ita)
2011-09-10 11:13:51 +02:00
"""
2016-06-25 23:54:12 +02:00
Detects the Intel C compiler
2011-09-10 11:13:51 +02:00
"""
from waflib.Tools import ccroot, ar, gcc
from waflib.Configure import conf
@conf
def find_icc(conf):
"""
2016-06-25 23:54:12 +02:00
Finds the program icc and execute it to ensure it really is icc
2011-09-10 11:13:51 +02:00
"""
cc = conf.find_program(['icx', 'icc', 'ICL'], var='CC')
2011-09-10 11:13:51 +02:00
conf.get_cc_version(cc, icc=True)
conf.env.CC_NAME = 'icc'
2011-09-10 11:13:51 +02:00
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()