OLD | NEW |
(Empty) | |
| 1 """SCons.Tool.link |
| 2 |
| 3 Tool-specific initialization for the generic Posix linker. |
| 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, 2005, 2006, 2007, 2008, 2009, 2010 The S
Cons 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__ = "src/engine/SCons/Tool/link.py 5134 2010/08/16 23:02:40 bdeegan" |
| 35 |
| 36 import SCons.Defaults |
| 37 import SCons.Tool |
| 38 import SCons.Util |
| 39 import SCons.Warnings |
| 40 |
| 41 from SCons.Tool.FortranCommon import isfortran |
| 42 |
| 43 cplusplus = __import__('c++', globals(), locals(), []) |
| 44 |
| 45 issued_mixed_link_warning = False |
| 46 |
| 47 def smart_link(source, target, env, for_signature): |
| 48 has_cplusplus = cplusplus.iscplusplus(source) |
| 49 has_fortran = isfortran(env, source) |
| 50 if has_cplusplus and has_fortran: |
| 51 global issued_mixed_link_warning |
| 52 if not issued_mixed_link_warning: |
| 53 msg = "Using $CXX to link Fortran and C++ code together.\n\t" + \ |
| 54 "This may generate a buggy executable if the '%s'\n\t" + \ |
| 55 "compiler does not know how to deal with Fortran runtimes." |
| 56 SCons.Warnings.warn(SCons.Warnings.FortranCxxMixWarning, |
| 57 msg % env.subst('$CXX')) |
| 58 issued_mixed_link_warning = True |
| 59 return '$CXX' |
| 60 elif has_fortran: |
| 61 return '$FORTRAN' |
| 62 elif has_cplusplus: |
| 63 return '$CXX' |
| 64 return '$CC' |
| 65 |
| 66 def shlib_emitter(target, source, env): |
| 67 for tgt in target: |
| 68 tgt.attributes.shared = 1 |
| 69 return (target, source) |
| 70 |
| 71 def generate(env): |
| 72 """Add Builders and construction variables for gnulink to an Environment.""" |
| 73 SCons.Tool.createSharedLibBuilder(env) |
| 74 SCons.Tool.createProgBuilder(env) |
| 75 |
| 76 env['SHLINK'] = '$LINK' |
| 77 env['SHLINKFLAGS'] = SCons.Util.CLVar('$LINKFLAGS -shared') |
| 78 env['SHLINKCOM'] = '$SHLINK -o $TARGET $SHLINKFLAGS $SOURCES $_LIBDIRFLAGS
$_LIBFLAGS' |
| 79 # don't set up the emitter, cause AppendUnique will generate a list |
| 80 # starting with None :-( |
| 81 env.Append(SHLIBEMITTER = [shlib_emitter]) |
| 82 env['SMARTLINK'] = smart_link |
| 83 env['LINK'] = "$SMARTLINK" |
| 84 env['LINKFLAGS'] = SCons.Util.CLVar('') |
| 85 env['LINKCOM'] = '$LINK -o $TARGET $LINKFLAGS $SOURCES $_LIBDIRFLAGS $_L
IBFLAGS' |
| 86 env['LIBDIRPREFIX']='-L' |
| 87 env['LIBDIRSUFFIX']='' |
| 88 env['_LIBFLAGS']='${_stripixes(LIBLINKPREFIX, LIBS, LIBLINKSUFFIX, LIBPREFIX
ES, LIBSUFFIXES, __env__)}' |
| 89 env['LIBLINKPREFIX']='-l' |
| 90 env['LIBLINKSUFFIX']='' |
| 91 |
| 92 if env['PLATFORM'] == 'hpux': |
| 93 env['SHLIBSUFFIX'] = '.sl' |
| 94 elif env['PLATFORM'] == 'aix': |
| 95 env['SHLIBSUFFIX'] = '.a' |
| 96 |
| 97 # For most platforms, a loadable module is the same as a shared |
| 98 # library. Platforms which are different can override these, but |
| 99 # setting them the same means that LoadableModule works everywhere. |
| 100 SCons.Tool.createLoadableModuleBuilder(env) |
| 101 env['LDMODULE'] = '$SHLINK' |
| 102 # don't set up the emitter, cause AppendUnique will generate a list |
| 103 # starting with None :-( |
| 104 env.Append(LDMODULEEMITTER='$SHLIBEMITTER') |
| 105 env['LDMODULEPREFIX'] = '$SHLIBPREFIX' |
| 106 env['LDMODULESUFFIX'] = '$SHLIBSUFFIX' |
| 107 env['LDMODULEFLAGS'] = '$SHLINKFLAGS' |
| 108 env['LDMODULECOM'] = '$LDMODULE -o $TARGET $LDMODULEFLAGS $SOURCES $_LIBDIRF
LAGS $_LIBFLAGS' |
| 109 |
| 110 |
| 111 |
| 112 def exists(env): |
| 113 # This module isn't really a Tool on its own, it's common logic for |
| 114 # other linkers. |
| 115 return None |
| 116 |
| 117 # Local Variables: |
| 118 # tab-width:4 |
| 119 # indent-tabs-mode:nil |
| 120 # End: |
| 121 # vim: set expandtab tabstop=4 shiftwidth=4: |
OLD | NEW |