Mercurial > hg > CbC > CbC_llvm
comparison .gitignore @ 121:803732b1fca8
LLVM 5.0
author | kono |
---|---|
date | Fri, 27 Oct 2017 17:07:41 +0900 |
parents | 95c75e76d11b |
children | c2174574ed3a |
comparison
equal
deleted
inserted
replaced
120:1172e4bd9c6f | 121:803732b1fca8 |
---|---|
14 # Merge files created by git. | 14 # Merge files created by git. |
15 *.orig | 15 *.orig |
16 # Byte compiled python modules. | 16 # Byte compiled python modules. |
17 *.pyc | 17 *.pyc |
18 # vim swap files | 18 # vim swap files |
19 .*.swp | 19 .*.sw? |
20 .sw? | 20 .sw? |
21 #OS X specific files. | |
22 .DS_store | |
23 | |
24 # Nested build directory | |
25 /build | |
21 | 26 |
22 #==============================================================================# | 27 #==============================================================================# |
23 # Explicit files to ignore (only matches one). | 28 # Explicit files to ignore (only matches one). |
24 #==============================================================================# | 29 #==============================================================================# |
30 # Various tag programs | |
31 /tags | |
32 /TAGS | |
33 /GPATH | |
34 /GRTAGS | |
35 /GSYMS | |
36 /GTAGS | |
25 .gitusers | 37 .gitusers |
26 autom4te.cache | 38 autom4te.cache |
27 cscope.files | 39 cscope.files |
28 cscope.out | 40 cscope.out |
29 autoconf/aclocal.m4 | 41 autoconf/aclocal.m4 |
30 autoconf/autom4te.cache | 42 autoconf/autom4te.cache |
31 compile_commands.json | 43 /compile_commands.json |
32 | 44 |
33 #==============================================================================# | 45 #==============================================================================# |
34 # Directories to ignore (do not add trailing '/'s, they skip symlinks). | 46 # Directories to ignore (do not add trailing '/'s, they skip symlinks). |
35 #==============================================================================# | 47 #==============================================================================# |
36 # External projects that are tracked independently. | 48 # External projects that are tracked independently. |
37 projects/* | 49 projects/* |
38 !projects/sample | 50 !projects/*.* |
39 !projects/CMakeLists.txt | |
40 !projects/Makefile | 51 !projects/Makefile |
52 runtimes/* | |
53 !runtimes/*.* | |
41 # Clang, which is tracked independently. | 54 # Clang, which is tracked independently. |
42 tools/clang | 55 tools/clang |
43 # LLDB, which is tracked independently. | 56 # LLDB, which is tracked independently. |
44 tools/lldb | 57 tools/lldb |
45 # lld, which is tracked independently. | 58 # lld, which is tracked independently. |
46 tools/lld | 59 tools/lld |
60 # llgo, which is tracked independently. | |
61 tools/llgo | |
62 # Polly, which is tracked independently. | |
63 tools/polly | |
64 # avrlit, which is tracked independently. | |
65 tools/avrlit | |
47 # Sphinx build tree, if building in-source dir. | 66 # Sphinx build tree, if building in-source dir. |
48 docs/_build | 67 docs/_build |
68 # VS2017 and VSCode config files. | |
69 .vscode | |
70 .vs | |
71 | |
72 #==============================================================================# | |
73 # Files created in tree by the Go bindings. | |
74 #==============================================================================# | |
75 bindings/go/llvm/llvm_config.go | |
76 bindings/go/llvm/workdir |