Re: [PATCH v2] kbuild: add support to generate LLVM bitcode files

2014-07-23 Thread Tinti
On Wed, Jul 23, 2014 at 8:56 AM, Vinícius Tinti wrote: > Allows kbuild to generate LLVM bitcode files with the .ll extension. > > # from c code > CC=clang make kernel/pid.ll > > # from asm code > CC=clang make arch/x86/kernel/preempt.ll > > Signed-off-by: Vinícius Tinti > Signed-off-by: B

[PATCH v2] kbuild: add support to generate LLVM bitcode files

2014-07-23 Thread Vinícius Tinti
Allows kbuild to generate LLVM bitcode files with the .ll extension. # from c code CC=clang make kernel/pid.ll # from asm code CC=clang make arch/x86/kernel/preempt.ll Signed-off-by: Vinícius Tinti Signed-off-by: Behan Webster --- .gitignore | 1 + Makefile