Add some really ugly scons scripts to compile libraries
[deb_shairplay.git] / scons-tools / crossmingw64.py
1 """SCons.Tool.gcc
2
3 Tool-specific initialization for MinGW (http://www.mingw.org/)
4
5 There normally shouldn't be any need to import this module directly.
6 It will usually be imported through the generic SCons.Tool.Tool()
7 selection method.
8
9 """
10
11 #
12 # Copyright (c) 2001, 2002, 2003, 2004 The SCons Foundation
13 #
14 # Permission is hereby granted, free of charge, to any person obtaining
15 # a copy of this software and associated documentation files (the
16 # "Software"), to deal in the Software without restriction, including
17 # without limitation the rights to use, copy, modify, merge, publish,
18 # distribute, sublicense, and/or sell copies of the Software, and to
19 # permit persons to whom the Software is furnished to do so, subject to
20 # the following conditions:
21 #
22 # The above copyright notice and this permission notice shall be included
23 # in all copies or substantial portions of the Software.
24 #
25 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
26 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
27 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 #
33
34 __revision__ = "/home/scons/scons/branch.0/branch.96/baseline/src/engine/SCons/Tool/mingw.py 0.96.90.D001 2005/02/15 20:11:37 knight"
35
36 import os
37 import os.path
38 import string
39
40 import SCons.Action
41 import SCons.Builder
42 import SCons.Tool
43 import SCons.Util
44
45 # This is what we search for to find mingw:
46 prefixes = SCons.Util.Split("""
47 amd64-mingw32-
48 amd64-mingw32msvc-
49 """)
50
51 def find(env):
52 for prefix in prefixes:
53 # First search in the SCons path and then the OS path:
54 if env.WhereIs(prefix + 'gcc') or SCons.Util.WhereIs(prefix + 'gcc'):
55 return prefix
56
57 return ''
58
59 def shlib_generator(target, source, env, for_signature):
60 cmd = SCons.Util.CLVar(['$SHLINK', '$SHLINKFLAGS'])
61
62 dll = env.FindIxes(target, 'SHLIBPREFIX', 'SHLIBSUFFIX')
63 if dll: cmd.extend(['-o', dll])
64
65 cmd.extend(['$SOURCES', '$_LIBDIRFLAGS', '$_LIBFLAGS'])
66
67 implib = env.FindIxes(target, 'LIBPREFIX', 'LIBSUFFIX')
68 if implib: cmd.append('-Wl,--out-implib,'+implib.get_string(for_signature))
69
70 def_target = env.FindIxes(target, 'WIN32DEFPREFIX', 'WIN32DEFSUFFIX')
71 if def_target: cmd.append('-Wl,--output-def,'+def_target.get_string(for_signature))
72
73 return [cmd]
74
75 def shlib_emitter(target, source, env):
76 dll = env.FindIxes(target, 'SHLIBPREFIX', 'SHLIBSUFFIX')
77 no_import_lib = env.get('no_import_lib', 0)
78
79 if not dll:
80 raise SCons.Errors.UserError, "A shared library should have exactly one target with the suffix: %s" % env.subst("$SHLIBSUFFIX")
81
82 if not no_import_lib and \
83 not env.FindIxes(target, 'LIBPREFIX', 'LIBSUFFIX'):
84
85 # Append an import library to the list of targets.
86 target.append(env.ReplaceIxes(dll,
87 'SHLIBPREFIX', 'SHLIBSUFFIX',
88 'LIBPREFIX', 'LIBSUFFIX'))
89
90 # Append a def file target if there isn't already a def file target
91 # or a def file source. There is no option to disable def file
92 # target emitting, because I can't figure out why someone would ever
93 # want to turn it off.
94 def_source = env.FindIxes(source, 'WIN32DEFPREFIX', 'WIN32DEFSUFFIX')
95 def_target = env.FindIxes(target, 'WIN32DEFPREFIX', 'WIN32DEFSUFFIX')
96 if not def_source and not def_target:
97 target.append(env.ReplaceIxes(dll,
98 'SHLIBPREFIX', 'SHLIBSUFFIX',
99 'WIN32DEFPREFIX', 'WIN32DEFSUFFIX'))
100
101 return (target, source)
102
103
104 shlib_action = SCons.Action.Action(shlib_generator, generator=1)
105
106 res_action = SCons.Action.Action('$RCCOM', '$RCCOMSTR')
107
108 res_builder = SCons.Builder.Builder(action=res_action, suffix='.o',
109 source_scanner=SCons.Tool.SourceFileScanner)
110 SCons.Tool.SourceFileScanner.add_scanner('.rc', SCons.Defaults.CScan)
111
112 def generate(env):
113 mingw_prefix = find(env)
114
115 if mingw_prefix:
116 dir = os.path.dirname(env.WhereIs(mingw_prefix + 'gcc') or SCons.Util.WhereIs(mingw_prefix + 'gcc'))
117
118 # The mingw bin directory must be added to the path:
119 path = env['ENV'].get('PATH', [])
120 if not path:
121 path = []
122 if SCons.Util.is_String(path):
123 path = string.split(path, os.pathsep)
124
125 env['ENV']['PATH'] = string.join([dir] + path, os.pathsep)
126
127 # Most of mingw is the same as gcc and friends...
128 gnu_tools = ['gcc', 'g++', 'gnulink', 'ar', 'gas']
129 for tool in gnu_tools:
130 SCons.Tool.Tool(tool)(env)
131
132 #... but a few things differ:
133 env['CC'] = mingw_prefix + 'gcc'
134 env['SHCCFLAGS'] = SCons.Util.CLVar('$CCFLAGS')
135 env['CPP'] = mingw_prefix + 'g++'
136 env['CXX'] = mingw_prefix + 'g++'
137 env['SHCXXFLAGS'] = SCons.Util.CLVar('$CXXFLAGS')
138 env['SHLINKFLAGS'] = SCons.Util.CLVar('$LINKFLAGS -shared')
139 env['SHLINKCOM'] = shlib_action
140 env.Append(SHLIBEMITTER = [shlib_emitter])
141 env['LINK_CC'] = mingw_prefix + 'gcc'
142 env['LINK_CXX'] = mingw_prefix + 'g++'
143 env['AS'] = mingw_prefix + 'as'
144 env['AR'] = mingw_prefix + 'ar'
145 env['RANLIB'] = mingw_prefix + 'ranlib'
146 env['WIN32DEFPREFIX'] = ''
147 env['WIN32DEFSUFFIX'] = '.def'
148 env['SHOBJSUFFIX'] = '.o'
149 env['STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME'] = 1
150
151 env['RC'] = mingw_prefix + 'windres'
152 env['RCFLAGS'] = SCons.Util.CLVar('')
153 env['RCCOM'] = '$RC $_CPPDEFFLAGS $_CPPINCFLAGS ${INCPREFIX}${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
154 env['BUILDERS']['RES'] = res_builder
155
156 # Some setting from the platform also have to be overridden:
157 env['OBJPREFIX'] = ''
158 env['OBJSUFFIX'] = '.o'
159 env['SHOBJPREFIX'] = '$OBJPREFIX'
160 env['SHOBJSUFFIX'] = '$OBJSUFFIX'
161 env['PROGPREFIX'] = ''
162 env['PROGSUFFIX'] = '.exe'
163 env['LIBPREFIX'] = ''
164 env['LIBSUFFIX'] = '.lib'
165 env['SHLIBPREFIX'] = ''
166 env['SHLIBSUFFIX'] = '.dll'
167 env['LIBPREFIXES'] = [ '$LIBPREFIX' ]
168 env['LIBSUFFIXES'] = [ '$LIBSUFFIX' ]
169
170 def exists(env):
171 return find(env)