Displaying 2 results from an estimated 2 matches for "7f132793".
2004 Dec 24
0
[LLVMdev] A first!
The interpreter still resolves printf using a hack. It does try to use
DynamicLibrary to find it, but fails. DynamicLibrary on Windows only
searches the main program executable for symbols, lli.exe in this case.
As the C/C++ runtime is in a DLL, it won't find printf in lli.exe. It
ought to then search the runtime DLL, the name of which depends on how
the binaries are built, but it
2004 Dec 23
4
[LLVMdev] A first!
Misha,
The "equivalent of dlsym" should be working just fine. Its called ltdl
(libtool dynamic library) and is part of lib/System. Its interface is
the DynamicLibrary class. The interpreter has already been modified to
use this facility.
So, if this is broken on windows, I'd like to know how, or why.
Jeff, can you provide a test case that we can use to reproduce this
problem?