Improve the VFS Makefile so that it is easier for use out of tree but still works...
[Samba/gebeck_regimport.git] / buildtools / wafsamba / irixcc.py
bloba7b0a74d87c43024bc1414fbee45af4ca16e9e49
2 # compiler definition for irix/MIPSpro cc compiler
3 # based on suncc.py from waf
5 import os, optparse
6 import Utils, Options, Configure
7 import ccroot, ar
8 from Configure import conftest
10 from compiler_cc import c_compiler
12 c_compiler['irix'] = ['gcc', 'irixcc']
14 @conftest
15 def find_irixcc(conf):
16 v = conf.env
17 cc = None
18 if v['CC']: cc = v['CC']
19 elif 'CC' in conf.environ: cc = conf.environ['CC']
20 if not cc: cc = conf.find_program('cc', var='CC')
21 if not cc: conf.fatal('irixcc was not found')
22 cc = conf.cmd_to_list(cc)
24 try:
25 if Utils.cmd_output(cc + ['-version']) != '':
26 conf.fatal('irixcc %r was not found' % cc)
27 except ValueError:
28 conf.fatal('irixcc -v could not be executed')
30 v['CC'] = cc
31 v['CC_NAME'] = 'irix'
33 @conftest
34 def irixcc_common_flags(conf):
35 v = conf.env
37 v['CC_SRC_F'] = ''
38 v['CC_TGT_F'] = ['-c', '-o', '']
39 v['CPPPATH_ST'] = '-I%s' # template for adding include paths
41 # linker
42 if not v['LINK_CC']: v['LINK_CC'] = v['CC']
43 v['CCLNK_SRC_F'] = ''
44 v['CCLNK_TGT_F'] = ['-o', '']
46 v['LIB_ST'] = '-l%s' # template for adding libs
47 v['LIBPATH_ST'] = '-L%s' # template for adding libpaths
48 v['STATICLIB_ST'] = '-l%s'
49 v['STATICLIBPATH_ST'] = '-L%s'
50 v['CCDEFINES_ST'] = '-D%s'
52 # v['SONAME_ST'] = '-Wl,-h -Wl,%s'
53 # v['SHLIB_MARKER'] = '-Bdynamic'
54 # v['STATICLIB_MARKER'] = '-Bstatic'
56 # program
57 v['program_PATTERN'] = '%s'
59 # shared library
60 # v['shlib_CCFLAGS'] = ['-Kpic', '-DPIC']
61 # v['shlib_LINKFLAGS'] = ['-G']
62 v['shlib_PATTERN'] = 'lib%s.so'
64 # static lib
65 # v['staticlib_LINKFLAGS'] = ['-Bstatic']
66 # v['staticlib_PATTERN'] = 'lib%s.a'
68 detect = '''
69 find_irixcc
70 find_cpp
71 find_ar
72 irixcc_common_flags
73 cc_load_tools
74 cc_add_flags
75 link_add_flags
76 '''