workaround for bug in binutils > 2.23 (closes TICKET #965)

This commit is contained in:
Fischlurch 2015-08-10 04:44:33 +02:00
parent 8a45c1d948
commit 7a9a378a4b

View file

@ -270,6 +270,7 @@ class LumieraExeBuilder(WrappedStandardExeBuilder):
"""
custEnv = lumiEnv.Clone()
custEnv.Append( LINKFLAGS = "-Wl,-rpath=\\$$ORIGIN/modules,--enable-new-dtags" )
custEnv.Append( LINKFLAGS = "-Wl,-rpath-link=target/modules" ) ### Workaround for bug in binutils > 2.23 /////TICKET #965
if 'addLibs' in kw:
custEnv.Append(LIBS = kw['addLibs'])
return custEnv