Re: [PATCH v3] kbuild: Add support to generate LLVM bitcode files

2017-04-23 Thread Masahiro Yamada
Hi Matthias, 2017-04-22 4:55 GMT+09:00 Matthias Kaehlcke : > Hi Masahiro, > > El Fri, Apr 21, 2017 at 02:02:46PM +0900 Masahiro Yamada ha dit: > >> 2017-04-05 2:27 GMT+09:00 Matthias Kaehlcke : >> > From: Vinícius Tinti >> > >> > Add rules to kbuild in order to generate LLVM bitcode files with

Re: [PATCH v3] kbuild: Add support to generate LLVM bitcode files

2017-04-22 Thread Masahiro Yamada
Hi Matthias, 2017-04-22 4:55 GMT+09:00 Matthias Kaehlcke : > Hi Masahiro, > > El Fri, Apr 21, 2017 at 02:02:46PM +0900 Masahiro Yamada ha dit: > >> 2017-04-05 2:27 GMT+09:00 Matthias Kaehlcke : >> > From: Vinícius Tinti >> > >> > Add rules to kbuild in order to generate LLVM bitcode files with

Re: [PATCH v3] kbuild: Add support to generate LLVM bitcode files

2017-04-21 Thread Matthias Kaehlcke
Hi Masahiro, El Fri, Apr 21, 2017 at 02:02:46PM +0900 Masahiro Yamada ha dit: > 2017-04-05 2:27 GMT+09:00 Matthias Kaehlcke : > > From: Vinícius Tinti > > > > Add rules to kbuild in order to generate LLVM bitcode files with the .ll > > extension when using clang. > > > First, I'd like to be su

Re: [PATCH v3] kbuild: Add support to generate LLVM bitcode files

2017-04-20 Thread Masahiro Yamada
Hi Matthias, 2017-04-05 2:27 GMT+09:00 Matthias Kaehlcke : > From: Vinícius Tinti > > Add rules to kbuild in order to generate LLVM bitcode files with the .ll > extension when using clang. First, I'd like to be sure about the terminology "LLVM bitcode" because "bitcode" sounds like human-unrea

Re: [PATCH v3] kbuild: Add support to generate LLVM bitcode files

2017-04-20 Thread Matthias Kaehlcke
El Tue, Apr 04, 2017 at 10:27:06AM -0700 Matthias Kaehlcke ha dit: > From: Vinícius Tinti > > Add rules to kbuild in order to generate LLVM bitcode files with the .ll > extension when using clang. > > # from c code > CC=clang make kernel/pid.ll > > # from asm code > CC=clang make arch/

[PATCH v3] kbuild: Add support to generate LLVM bitcode files

2017-04-04 Thread Matthias Kaehlcke
From: Vinícius Tinti Add rules to kbuild in order to generate LLVM bitcode files with the .ll extension when using clang. # from c code CC=clang make kernel/pid.ll # from asm code CC=clang make arch/x86/kernel/preempt.ll From: Vinícius Tinti Signed-off-by: Vinícius Tinti Signed-off-b

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

2014-09-11 Thread Vinícius Tinti
Allows kbuild to generate LLVM bitcode files using '.ll' suffix. # 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 | 6