search for: bpruntime

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

Did you mean: npruntime
2012 Nov 07
2
[LLVMdev] How to link code into EXE, or, am I doing this wrong?
...nd the runtime library it uses is a .lib in my VS2010 project that it calls into. Then, to produce an EXE, I use addPassesToEmitFile to produce an .OBJ file for the native machine (x86 windows), which I then link with my runtime library using the Visual Studio linker: link.exe test.bas.obj debug\BPRuntime.lib kernel32.lib /subsystem:console Which produces a native executable that executes just fine under Windows. All of that works great. What I can't figure out, even after LOTS of searching, is how to replace that with a LLVM linker or some other linker so that I can give out my compiler and...
2012 Nov 07
0
[LLVMdev] How to link code into EXE, or, am I doing this wrong?
...t uses is a .lib in my VS2010 project that it calls into. > Then, to produce an EXE, I use addPassesToEmitFile to produce an .OBJ file > for the native machine (x86 windows), which I then link with my runtime > library using the Visual Studio linker: > > link.exe test.bas.obj debug\BPRuntime.lib kernel32.lib /subsystem:console > > Which produces a native executable that executes just fine under Windows. > > All of that works great. > > What I can't figure out, even after LOTS of searching, is how to replace > that with a LLVM linker or some other linker so that...