search for: _moduleid

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

Did you mean: moduleid
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
...ecause 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" exception. I don't see where I'm supposed to get this LLVM-3.0.dll file or how I create it...