Followon to PR #4348: more bool fixes
[scons.git] / SCons / Tool / ilink.py
blob6be62d3c700a896372317ccdaddfcdfd02d183de
1 """SCons.Tool.ilink
3 Tool-specific initialization for the OS/2 ilink linker.
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.
9 """
12 # Permission is hereby granted, free of charge, to any person obtaining
13 # a copy of this software and associated documentation files (the
14 # "Software"), to deal in the Software without restriction, including
15 # without limitation the rights to use, copy, modify, merge, publish,
16 # distribute, sublicense, and/or sell copies of the Software, and to
17 # permit persons to whom the Software is furnished to do so, subject to
18 # the following conditions:
20 # The above copyright notice and this permission notice shall be included
21 # in all copies or substantial portions of the Software.
23 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
24 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
25 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 import SCons.Defaults
33 import SCons.Tool
34 import SCons.Util
36 def generate(env) -> None:
37 """Add Builders and construction variables for ilink to an Environment."""
38 SCons.Tool.createProgBuilder(env)
40 env['LINK'] = 'ilink'
41 env['LINKFLAGS'] = SCons.Util.CLVar('')
42 env['LINKCOM'] = '$LINK $LINKFLAGS /O:$TARGET $SOURCES $_LIBDIRFLAGS $_LIBFLAGS'
43 env['LIBDIRPREFIX']='/LIBPATH:'
44 env['LIBDIRSUFFIX']=''
45 env['LIBLINKPREFIX']=''
46 env['LIBLINKSUFFIX']='$LIBSUFFIX'
48 def exists(env):
49 return env.Detect('ilink')
51 # Local Variables:
52 # tab-width:4
53 # indent-tabs-mode:nil
54 # End:
55 # vim: set expandtab tabstop=4 shiftwidth=4: