How to make working binary using llvm
- by prosseek
I want to get the working binary out of llvm, using step by step method. I'm working on Snow Leopard.
llvm-gcc h.c -emit-llvm -S -o hi.ll - hi.ll
llvm-as hi.ll - hi.bc (jit binary?)
llc hi.bc - hi.s (assembly code)
How can I get the binary to run on Mac OS X with hi.bc?