annotate .gitignore @ 133:c60214abe0e8

fix intrin.h
author mir3636
date Fri, 16 Feb 2018 19:10:49 +0900
parents 803732b1fca8
children c2174574ed3a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #==============================================================================#
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 # This file specifies intentionally untracked files that git should ignore.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 # See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 #
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 # This file is intentionally different from the output of `git svn show-ignore`,
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 # as most of those are useless.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 #==============================================================================#
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
8
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 #==============================================================================#
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 # File extensions to be ignored anywhere in the tree.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 #==============================================================================#
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 # Temp files created by most text editors.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 *~
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 # Merge files created by git.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 *.orig
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 # Byte compiled python modules.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 *.pyc
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 # vim swap files
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
19 .*.sw?
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 .sw?
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
21 #OS X specific files.
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
22 .DS_store
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
23
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
24 # Nested build directory
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
25 /build
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
26
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 #==============================================================================#
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
28 # Explicit files to ignore (only matches one).
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
29 #==============================================================================#
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
30 # Various tag programs
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
31 /tags
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
32 /TAGS
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
33 /GPATH
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
34 /GRTAGS
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
35 /GSYMS
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
36 /GTAGS
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 .gitusers
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
38 autom4te.cache
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 cscope.files
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
40 cscope.out
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
41 autoconf/aclocal.m4
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
42 autoconf/autom4te.cache
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
43 /compile_commands.json
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
44
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 #==============================================================================#
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
46 # Directories to ignore (do not add trailing '/'s, they skip symlinks).
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
47 #==============================================================================#
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
48 # External projects that are tracked independently.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
49 projects/*
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
50 !projects/*.*
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
51 !projects/Makefile
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
52 runtimes/*
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
53 !runtimes/*.*
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
54 # Clang, which is tracked independently.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
55 tools/clang
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
56 # LLDB, which is tracked independently.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
57 tools/lldb
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 # lld, which is tracked independently.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 tools/lld
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
60 # llgo, which is tracked independently.
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
61 tools/llgo
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
62 # Polly, which is tracked independently.
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
63 tools/polly
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
64 # avrlit, which is tracked independently.
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
65 tools/avrlit
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
66 # Sphinx build tree, if building in-source dir.
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
67 docs/_build
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
68 # VS2017 and VSCode config files.
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
69 .vscode
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
70 .vs
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
71
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
72 #==============================================================================#
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
73 # Files created in tree by the Go bindings.
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
74 #==============================================================================#
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
75 bindings/go/llvm/llvm_config.go
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
76 bindings/go/llvm/workdir