2011-09-10 11:13:51 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
2014-01-25 20:59:14 +01:00
|
|
|
# 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
|
|
|
"""
|
|
|
|
|
2015-10-11 11:32:27 +02:00
|
|
|
import sys
|
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
|
|
|
"""
|
2014-01-25 20:59:14 +01:00
|
|
|
cc = conf.find_program(['icc', 'ICL'], var='CC')
|
2011-09-10 11:13:51 +02:00
|
|
|
conf.get_cc_version(cc, icc=True)
|
2014-01-25 20:59:14 +01:00
|
|
|
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()
|