Lines Matching full:hello
154 1. First, create a simple C file, name it '``hello.c``':
160 printf("hello world\n");
168 C:\..> clang -c hello.c -emit-llvm -o hello.bc
170 This will create the result file ``hello.bc`` which is the LLVM bitcode
180 C:\..> clang hello.c -o hello.exe
182 The ``-o hello.exe`` is required because clang currently outputs ``a.out``
189 C:\..> lli hello.bc
195 C:\..> llvm-dis < hello.bc | more
201 C:\..> llc -filetype=obj hello.bc
207 C:\..> link hello.obj -defaultlib:libcmt
213 C:\..> hello.exe