pallabdasgupta
Programmer
I have an executable EXE which loads two shared libraries SL1 and SL2. SL1 refers to a symbol SYM which is in both SL2 and the executable EXE.
The EXE is built with the -E flag.
I want the call to SYM from SL1 to resolve to the one in SL2, and not the one in EXE.
On Solaris, I do this by using the -Bdirect switch of ld while building SL2 and using -lSL1
I could not find an equivalent for HP. Is there one ?
The EXE is built with the -E flag.
I want the call to SYM from SL1 to resolve to the one in SL2, and not the one in EXE.
On Solaris, I do this by using the -Bdirect switch of ld while building SL2 and using -lSL1
I could not find an equivalent for HP. Is there one ?