search for: 438kb

Displaying 4 results from an estimated 4 matches for "438kb".

Did you mean: 4384kb
2006 Nov 20
4
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
I've compiled all the object files that make up libstdc++ and libsupc++ into LLVM bytecode: http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB) A simple test program, x.cpp: #include <iostream> int main() { std::cout << "hello world\n"; return 0; } $ llvm-g++ -emit-llvm -c x.cpp $ llvmc -o=out x.o std/*.o sup/*.o $ lli out.bc Segmentation fault (core dumped) $ Oops, no go. Try a different way: $ llvm-g++ -emi...
2006 Nov 20
0
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
On Mon, 2006-11-20 at 17:49 +1100, Emil Mikulic wrote: > I've compiled all the object files that make up libstdc++ and libsupc++ > into LLVM bytecode: > http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB) > > A simple test program, x.cpp: > > #include <iostream> > int main() { std::cout << "hello world\n"; return 0; } > > $ llvm-g++ -emit-llvm -c x.cpp > $ llvmc -o=out x.o std/*.o sup/*.o > $ lli out.bc > Segmentation fault (core dumped) >...
2006 Nov 20
0
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
On Mon, 2006-11-20 at 17:49 +1100, Emil Mikulic wrote: > I've compiled all the object files that make up libstdc++ and libsupc++ > into LLVM bytecode: > http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB) > > A simple test program, x.cpp: > > #include <iostream> > int main() { std::cout << "hello world\n"; return 0; } > > $ llvm-g++ -emit-llvm -c x.cpp > $ llvmc -o=out x.o std/*.o sup/*.o > $ lli out.bc > Segmentation fault (core dumped) >...
2006 Nov 20
1
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
...Mon, Nov 20, 2006 at 08:01:23AM -0800, Reid Spencer wrote: > On Mon, 2006-11-20 at 17:49 +1100, Emil Mikulic wrote: > > I've compiled all the object files that make up libstdc++ and libsupc++ > > into LLVM bytecode: > > http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB) > > > > A simple test program, x.cpp: > > > > #include <iostream> > > int main() { std::cout << "hello world\n"; return 0; } > > > > $ llvm-g++ -emit-llvm -c x.cpp > > $ llvmc -o=out x.o std/*.o sup/*.o > > $ lli out....