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.
70 lines
1.7 KiB
70 lines
1.7 KiB
15 years ago
|
#!/usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
# Thomas Nagy, 2006 (ita)
|
||
|
# Ralf Habacker, 2006 (rh)
|
||
|
|
||
|
import os, optparse
|
||
|
import Utils, Options, Configure
|
||
|
import ccroot, ar
|
||
|
from Configure import conftest
|
||
|
|
||
|
@conftest
|
||
|
def find_sxx(conf):
|
||
|
v = conf.env
|
||
|
cc = None
|
||
|
if v['CXX']: cc = v['CXX']
|
||
|
elif 'CXX' in conf.environ: cc = conf.environ['CXX']
|
||
|
#if not cc: cc = conf.find_program('g++', var='CXX')
|
||
|
if not cc: cc = conf.find_program('c++', var='CXX')
|
||
|
if not cc: cc = conf.find_program('CC', var='CXX') #studio
|
||
|
if not cc: conf.fatal('sunc++ was not found')
|
||
|
v['CXX'] = cc
|
||
|
v['CXX_NAME'] = 'sun'
|
||
|
|
||
|
@conftest
|
||
|
def sxx_common_flags(conf):
|
||
|
v = conf.env
|
||
|
|
||
|
# CPPFLAGS CXXDEFINES _CXXINCFLAGS _CXXDEFFLAGS
|
||
|
|
||
|
v['CXX_SRC_F'] = ''
|
||
|
v['CXX_TGT_F'] = ['-c', '-o', '']
|
||
|
v['CPPPATH_ST'] = '-I%s' # template for adding include paths
|
||
|
|
||
|
# linker
|
||
|
if not v['LINK_CXX']: v['LINK_CXX'] = v['CXX']
|
||
|
v['CXXLNK_SRC_F'] = ''
|
||
|
v['CXXLNK_TGT_F'] = ['-o', ''] # solaris hack, separate the -o from the target
|
||
|
|
||
|
v['LIB_ST'] = '-l%s' # template for adding libs
|
||
|
v['LIBPATH_ST'] = '-L%s' # template for adding libpaths
|
||
|
v['STATICLIB_ST'] = '-l%s'
|
||
|
v['STATICLIBPATH_ST'] = '-L%s'
|
||
|
v['CXXDEFINES_ST'] = '-D%s'
|
||
|
|
||
|
v['SONAME_ST'] = '-Wl,-h -Wl,%s'
|
||
|
v['SHLIB_MARKER'] = '-Bdynamic'
|
||
|
v['STATICLIB_MARKER'] = '-Bstatic'
|
||
|
|
||
|
# program
|
||
|
v['program_PATTERN'] = '%s'
|
||
|
|
||
|
# shared library
|
||
|
v['shlib_CXXFLAGS'] = ['-Kpic', '-DPIC']
|
||
|
v['shlib_LINKFLAGS'] = ['-G']
|
||
|
v['shlib_PATTERN'] = 'lib%s.so'
|
||
|
|
||
|
# static lib
|
||
|
v['staticlib_LINKFLAGS'] = ['-Bstatic']
|
||
|
v['staticlib_PATTERN'] = 'lib%s.a'
|
||
|
|
||
|
detect = '''
|
||
|
find_sxx
|
||
|
find_cpp
|
||
|
find_ar
|
||
|
sxx_common_flags
|
||
|
cxx_load_tools
|
||
|
cxx_add_flags
|
||
|
'''
|
||
|
|