summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/irixcc.py
blob: f3cb451fb0f73f206708ed50749cf450f30431b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79

# compiler definition for irix/MIPSpro cc compiler
# based on suncc.py from waf

import os, optparse
import Utils, Options, Configure
import ccroot, ar
from Configure import conftest

from compiler_cc import c_compiler

c_compiler['irix'] = ['gcc', 'irixcc']

@conftest
def find_irixcc(conf):
    v = conf.env
    cc = None
    if v['CC']: cc = v['CC']
    elif 'CC' in conf.environ: cc = conf.environ['CC']
    if not cc: cc = conf.find_program('cc', var='CC')
    if not cc: conf.fatal('irixcc was not found')
    cc = conf.cmd_to_list(cc)

    try:
        if Utils.cmd_output(cc + ['-c99'] + ['-version']) != '':
            conf.fatal('irixcc %r was not found' % cc)
    except ValueError:
        conf.fatal('irixcc -v could not be executed')

    conf.env.append_unique('CCFLAGS', '-c99')

    v['CC']  = cc
    v['CC_NAME'] = 'irix'

@conftest
def irixcc_common_flags(conf):
    v = conf.env

    v['CC_SRC_F']            = ''
    v['CC_TGT_F']            = ['-c', '-o', '']
    v['CPPPATH_ST']          = '-I%s' # template for adding include paths

    # linker
    if not v['LINK_CC']: v['LINK_CC'] = v['CC']
    v['CCLNK_SRC_F']         = ''
    v['CCLNK_TGT_F']         = ['-o', '']

    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['CCDEFINES_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_CCFLAGS']       = ['-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_irixcc
find_cpp
find_ar
irixcc_common_flags
cc_load_tools
cc_add_flags
link_add_flags
'''