Recognize -Wl,-Bsymbolic
commit2650584ac4fd71ae4ed2b4e3da755b890ba0637c
authorDetlef Riekenberg <wine.dev@web.de>
Tue, 26 Jan 2010 21:55:14 +0000 (26 22:55 +0100)
committerDetlef Riekenberg <tcc.dev@web.de>
Tue, 26 Jan 2010 21:55:14 +0000 (26 22:55 +0100)
tree4e9b65389565d23b3899d46883659962957a0bd9
parent5caf6235cf767682ed1212b3dff44bd59a257cef
Recognize -Wl,-Bsymbolic

Without -Bsymbolic, a symbol/function in a *.so can be overridden
by a symbol/function in the main module.
That is the default search order, but not supported by tcc.

With -Bsymbolic, the linker tries to resolve a symbol/function in
the current module first.
The loader in tcc implements this search order.

We do not distinguish -Bsymbolic and -Bsymbolic-function

--
By by ... Detlef
tcc.c
tcc.h
tccelf.c