94 lines
2.7 KiB
Python
94 lines
2.7 KiB
Python
|
#! /usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
|
||
|
import os,sys
|
||
|
import Configure,Options,Utils
|
||
|
import ccroot,ar
|
||
|
from Configure import conftest
|
||
|
def find_gxx(conf):
|
||
|
cxx=conf.find_program(['g++','c++'],var='CXX',mandatory=True)
|
||
|
cxx=conf.cmd_to_list(cxx)
|
||
|
ccroot.get_cc_version(conf,cxx,gcc=True)
|
||
|
conf.env.CXX_NAME='gcc'
|
||
|
conf.env.CXX=cxx
|
||
|
def gxx_common_flags(conf):
|
||
|
v=conf.env
|
||
|
v['CXXFLAGS_DEBUG']=['-g']
|
||
|
v['CXXFLAGS_RELEASE']=['-O2']
|
||
|
v['CXX_SRC_F']=''
|
||
|
v['CXX_TGT_F']=['-c','-o','']
|
||
|
v['CPPPATH_ST']='-I%s'
|
||
|
if not v['LINK_CXX']:v['LINK_CXX']=v['CXX']
|
||
|
v['CXXLNK_SRC_F']=''
|
||
|
v['CXXLNK_TGT_F']=['-o','']
|
||
|
v['LIB_ST']='-l%s'
|
||
|
v['LIBPATH_ST']='-L%s'
|
||
|
v['STATICLIB_ST']='-l%s'
|
||
|
v['STATICLIBPATH_ST']='-L%s'
|
||
|
v['RPATH_ST']='-Wl,-rpath,%s'
|
||
|
v['CXXDEFINES_ST']='-D%s'
|
||
|
v['SONAME_ST']='-Wl,-h,%s'
|
||
|
v['SHLIB_MARKER']='-Wl,-Bdynamic'
|
||
|
v['STATICLIB_MARKER']='-Wl,-Bstatic'
|
||
|
v['FULLSTATIC_MARKER']='-static'
|
||
|
v['program_PATTERN']='%s'
|
||
|
v['shlib_CXXFLAGS']=['-fPIC','-DPIC']
|
||
|
v['shlib_LINKFLAGS']=['-shared']
|
||
|
v['shlib_PATTERN']='lib%s.so'
|
||
|
v['staticlib_LINKFLAGS']=['-Wl,-Bstatic']
|
||
|
v['staticlib_PATTERN']='lib%s.a'
|
||
|
v['LINKFLAGS_MACBUNDLE']=['-bundle','-undefined','dynamic_lookup']
|
||
|
v['CCFLAGS_MACBUNDLE']=['-fPIC']
|
||
|
v['macbundle_PATTERN']='%s.bundle'
|
||
|
def gxx_modifier_win32(conf):
|
||
|
v=conf.env
|
||
|
v['program_PATTERN']='%s.exe'
|
||
|
v['shlib_PATTERN']='%s.dll'
|
||
|
v['implib_PATTERN']='lib%s.dll.a'
|
||
|
v['IMPLIB_ST']='-Wl,--out-implib,%s'
|
||
|
dest_arch=v['DEST_CPU']
|
||
|
v['shlib_CXXFLAGS']=[]
|
||
|
v.append_value('shlib_CXXFLAGS','-DDLL_EXPORT')
|
||
|
v.append_value('LINKFLAGS','-Wl,--enable-auto-import')
|
||
|
def gxx_modifier_cygwin(conf):
|
||
|
gxx_modifier_win32(conf)
|
||
|
v=conf.env
|
||
|
v['shlib_PATTERN']='cyg%s.dll'
|
||
|
v.append_value('shlib_LINKFLAGS','-Wl,--enable-auto-image-base')
|
||
|
def gxx_modifier_darwin(conf):
|
||
|
v=conf.env
|
||
|
v['shlib_CXXFLAGS']=['-fPIC','-compatibility_version','1','-current_version','1']
|
||
|
v['shlib_LINKFLAGS']=['-dynamiclib']
|
||
|
v['shlib_PATTERN']='lib%s.dylib'
|
||
|
v['staticlib_LINKFLAGS']=[]
|
||
|
v['SHLIB_MARKER']=''
|
||
|
v['STATICLIB_MARKER']=''
|
||
|
v['SONAME_ST']=''
|
||
|
def gxx_modifier_aix(conf):
|
||
|
v=conf.env
|
||
|
v['program_LINKFLAGS']=['-Wl,-brtl']
|
||
|
v['shlib_LINKFLAGS']=['-shared','-Wl,-brtl,-bexpfull']
|
||
|
v['SHLIB_MARKER']=''
|
||
|
def gxx_modifier_platform(conf):
|
||
|
dest_os=conf.env['DEST_OS']or Utils.unversioned_sys_platform()
|
||
|
gxx_modifier_func=globals().get('gxx_modifier_'+dest_os)
|
||
|
if gxx_modifier_func:
|
||
|
gxx_modifier_func(conf)
|
||
|
def detect(conf):
|
||
|
conf.find_gxx()
|
||
|
conf.find_cpp()
|
||
|
conf.find_ar()
|
||
|
conf.gxx_common_flags()
|
||
|
conf.gxx_modifier_platform()
|
||
|
conf.cxx_load_tools()
|
||
|
conf.cxx_add_flags()
|
||
|
conf.link_add_flags()
|
||
|
|
||
|
conftest(find_gxx)
|
||
|
conftest(gxx_common_flags)
|
||
|
conftest(gxx_modifier_win32)
|
||
|
conftest(gxx_modifier_cygwin)
|
||
|
conftest(gxx_modifier_darwin)
|
||
|
conftest(gxx_modifier_aix)
|
||
|
conftest(gxx_modifier_platform)
|