search for: moduleref

Displaying 3 results from an estimated 3 matches for "moduleref".

Did you mean: module_ref
2012 Feb 27
2
[LLVMdev] Where is LLVM-3.0.dll
I'm trying to use LLVM on Windows for the first time. Keith Sheppard has published some F# bindings: https://github.com/keithshep/llvm-fs They require an LLVM-3.0.dll file. I'm not familiar with Windows but I think I've managed to build LLVM 3.0 using both VS2010 and Cygwin but neither build seems to have produced said file. The VS2010 build (made using CMake) seems to have made
2012 Feb 27
0
[LLVMdev] Where is LLVM-3.0.dll
> I'm trying to use LLVM on Windows for the first time. Keith Sheppard has > published some F# bindings: > >  https://github.com/keithshep/llvm-fs Keith specified the build instructions there, what were the problems of using them? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2012 Feb 27
1
[LLVMdev] Where is LLVM-3.0.dll
.... Following those instructions, I get .a files and no .dll files so the llvm-fs bindings do not work because they expect to bind to an LLVM-3.0.dll file. For example: [<DllImport("LLVM-3.0.dll", EntryPoint="LLVMModuleCreateWithName")>] extern void* (* LLVMModuleRef *) moduleCreateWithNameNative( string ModuleID) let moduleCreateWithName _ModuleID = new ModuleRef (moduleCreateWithNameNative (_ModuleID)) When I try to run an example I get "Unable to load DLL 'LLVM-3.0.dll'. The specified module could not be found&qu...