search for: wfchiang

Displaying 2 results from an estimated 2 matches for "wfchiang".

Did you mean: chiang
2011 Oct 06
2
[LLVMdev] A question about calling external function in JIT
Hello Sir, My name is Wei-Fan Chiang. I am now a graduated student of U. of Utah. I have a question about call external function in JIT. Suppose I have a simple program: int main (int argc, char *argv[]) { int i = 2, j = 3, k; k = foo(2, 3); return 0; } "foo" is an external function (non-native function define in dynamic library) made by us. In JIT, we just need to
2011 Oct 10
0
[LLVMdev] A question about calling external function in JIT
On Sun, Oct 9, 2011 at 6:51 PM, Wei-Fan <wfchiang at cs.utah.edu> wrote: > Hello Jeff, > > Many thanks for your help!! > I successfully load a function in a dynamic library by using > sys::DynamicLibrary routines. great. > But I still have another question: > How if 'foo' is defined in a static library ?? > Is...