Displaying 1 result from an estimated 1 matches for "l00116".
Did you mean:
00116
2013 Feb 17
0
[LLVMdev] [llvm-c] LLVMInitializeNativeTarget not exported in shared library
...ativeTarget
does not get exported
("objdump -x libLLVM-3.3svn.so | grep LLVMInitializeNativeTarget" will
return without any output).
As far as I can tell this is because the function is marked as inline at
its definition in
http://llvm.org/docs/doxygen/html/TargetSelect_8h_source.html#l00116
which afaik (correct me if I'm wrong here) means that for each call to
the function its body
will be copied to the call location when compiling/linking with other
c/c++ code,
instead of being compiled as a normal function call (in addition it
allows the function body
to be defined directly i...