Anyone know of an equivalent to Mach-O's two-level namespace symbol resolution in ELF/linux? I want code that links to lib+sym, not sym.

I'm trying to do what could best be described as precompilation of what normally would be a JIT compilation. I'd like to get a compile time binding of symbols, that normally would be done by a dlopen/dlsym. However, there could be collisions, which are nicely avoided by the dlopen/dlsym.

It seems that ELF actually lacks this, and there is the VERSION stuff, but any workarounds or suggestions would be appreciated.

link|improve this question
I think there would be many people who know about ELF and Linux but who do not have any idea about Mach-O, such as myself. You might want to expand your question to briefly explain what is it exactly that you are trying to achieve. – snap Aug 7 '11 at 4:15
I just updated it to do so... the last sentence of the first paragraph explains the goal, and the next two paragraphs explain why. – Danny Dulai Aug 7 '11 at 4:27
1  
Your question has now turned into complete gibberish to me (and I do understand both ELF and (to much lesser extent) Mach-O). It is unlikely that you would get a good answer to the question in its current form. I suggest you try to expand and clarify it, perhaps with an example of what you are actually trying to do. – Employed Russian Aug 7 '11 at 15:48
Say you're compiling a traditionally interpreted language to machine code. This language has an FFI that lets you import symbols in terms of path_to_library + symbol_name. The goal is to compile this symbol referencing semantic down to platform-specific dynamic linking without the use of dlopen/dlsym. Mach-O has a disambiguation mechanism that lets you specify unresolved symbols this way, thus making symbol conflicts among dynamic libraries a non-issue on macs. Windows has no mechanism other than LoadLibrary/GetProcAddress, so no issue there. The questions is: can similar be done with ELF? – blucz Aug 8 '11 at 12:40
1  
Thanks for clarification. ELF is in exactly the same position as Windows -- there is no mechanism other than dlopen/dlsym. – Employed Russian Aug 8 '11 at 16:56
feedback

1 Answer

up vote 2 down vote accepted

There is no ELF equivalent (and usually one isn't needed).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.