diff options
author | VinÃcius Tinti <viniciustinti@gmail.com> | 2017-04-24 16:04:58 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-04-24 19:13:52 -0400 |
commit | 433db3e260bc8134d4a46ddf20b3668937e12556 (patch) | |
tree | 2174c7cc5e16f1a275a8bfc456428099c94d2700 /.gitignore | |
parent | 785f11aa595bc3d4e74096cbd598ada54ecc0d81 (diff) |
kbuild: Add support to generate LLVM assembly files
Add rules to kbuild in order to generate LLVM assembly files with the .ll
extension when using clang.
# from c code
make CC=clang kernel/pid.ll
Signed-off-by: VinÃcius Tinti <viniciustinti@gmail.com>
Signed-off-by: Behan Webster <behanw@converseincode.com>
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index c2ed4ecb0acd..0c39aa20b6ba 100644 --- a/.gitignore +++ b/.gitignore | |||
@@ -33,6 +33,7 @@ | |||
33 | *.lzo | 33 | *.lzo |
34 | *.patch | 34 | *.patch |
35 | *.gcno | 35 | *.gcno |
36 | *.ll | ||
36 | modules.builtin | 37 | modules.builtin |
37 | Module.symvers | 38 | Module.symvers |
38 | *.dwo | 39 | *.dwo |