Displaying 1 result from an estimated 1 matches for "2ca90ea7".
2019 Jan 27
2
How does LLVM know where to resolve declared only functions?
> It's the linkers job to hook together functions and definitions that end up in the same binary. Your OS will then hook in functions from other binaries when your executable is loaded into memory.
How does it know whether it is a system function or a user-defined function?
It seems that user functions have higher priorities over system
functions as demonstrated by the following example.