waf/waflib/Tools/icpc.py

30 lines
589 B
Python
Raw Permalink Normal View History

2011-09-10 11:13:51 +02:00
#!/usr/bin/env python
# encoding: utf-8
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, gxx
from waflib.Configure import conf
@conf
def find_icpc(conf):
"""
2016-06-25 23:54:12 +02:00
Finds the program icpc, and execute it to ensure it really is icpc
2011-09-10 11:13:51 +02:00
"""
cxx = conf.find_program(['icpx', 'icpc'], var='CXX')
2011-09-10 11:13:51 +02:00
conf.get_cc_version(cxx, icc=True)
conf.env.CXX_NAME = 'icc'
2011-09-10 11:13:51 +02:00
def configure(conf):
conf.find_icpc()
conf.find_ar()
conf.gxx_common_flags()
conf.gxx_modifier_platform()
conf.cxx_load_tools()
conf.cxx_add_flags()
conf.link_add_flags()