mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
734 B
34 lines
734 B
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy 2009
|
|
|
|
import os, sys
|
|
import Configure, Options, Utils
|
|
import ccroot, ar, gxx
|
|
from Configure import conftest
|
|
|
|
@conftest
|
|
def find_icpc(conf):
|
|
if sys.platform == 'cygwin':
|
|
conf.fatal('The Intel compiler does not work on Cygwin')
|
|
|
|
v = conf.env
|
|
cxx = None
|
|
if v['CXX']: cxx = v['CXX']
|
|
elif 'CXX' in conf.environ: cxx = conf.environ['CXX']
|
|
if not cxx: cxx = conf.find_program('icpc', var='CXX')
|
|
if not cxx: conf.fatal('Intel C++ Compiler (icpc) was not found')
|
|
cxx = conf.cmd_to_list(cxx)
|
|
|
|
ccroot.get_cc_version(conf, cxx, icc=True)
|
|
v['CXX'] = cxx
|
|
v['CXX_NAME'] = 'icc'
|
|
|
|
detect = '''
|
|
find_icpc
|
|
find_ar
|
|
gxx_common_flags
|
|
gxx_modifier_platform
|
|
cxx_load_tools
|
|
cxx_add_flags
|
|
'''
|
|
|