-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.gitignore
204 lines (170 loc) · 2.84 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*.gcov.*
/autom4te.cache/
# /bin/jemalloc.sh
/config.stamp
/config.log
/config.status
# /configure
# /VERSION
/doc/html.xsl
/doc/manpages.xsl
/doc/jemalloc.xml
/doc/jemalloc.html
/doc/jemalloc.3
/lib/
# /Makefile
# /include/jemalloc/internal/jemalloc_internal.h
# /include/jemalloc/internal/jemalloc_internal_defs.h
# /include/jemalloc/internal/private_namespace.h
# /include/jemalloc/internal/private_unnamespace.h
# /include/jemalloc/internal/public_namespace.h
# /include/jemalloc/internal/public_symbols.txt
# /include/jemalloc/internal/public_unnamespace.h
# /include/jemalloc/internal/size_classes.h
# /include/jemalloc/jemalloc.h
# /include/jemalloc/jemalloc_defs.h
# /include/jemalloc/jemalloc_macros.h
# /include/jemalloc/jemalloc_mangle.h
# /include/jemalloc/jemalloc_mangle_jet.h
# /include/jemalloc/jemalloc_protos.h
# /include/jemalloc/jemalloc_protos_jet.h
# /include/jemalloc/jemalloc_rename.h
/src/*.[od]
/src/*.gcda
/src/*.gcno
# /test/test.sh
# test/include/test/jemalloc_test.h
# test/include/test/jemalloc_test_defs.h
/test/integration/[A-Za-z]*
!/test/integration/[A-Za-z]*.*
/test/integration/*.[od]
/test/integration/*.gcda
/test/integration/*.gcno
/test/integration/*.out
/test/src/*.[od]
/test/src/*.gcda
/test/src/*.gcno
/test/stress/[A-Za-z]*
!/test/stress/[A-Za-z]*.*
/test/stress/*.[od]
/test/stress/*.gcda
/test/stress/*.gcno
/test/stress/*.out
/test/unit/[A-Za-z]*
!/test/unit/[A-Za-z]*.*
/test/unit/*.[od]
/test/unit/*.gcda
/test/unit/*.gcno
/test/unit/*.out
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
# Editors leave these lying around
\#*\#
.#*
*~
*.swp
# For Visual Studio files on Windows
*.exp
*.user
*.ncb
*.aps
*.idb
*.pdb
*.dep
*.obj
*.ilk
*.tlb
*.tli
*.tlh
*.tmp
*.rsp
*.pgc
*.pgd
*.meta
*.manifest
*.intermediate.manifest
*.suo
*.sdf
*.opensdf
*.sln.old
*.sln_old
# *.vcxproj.user
/Debug/
/Release/
/x86-Debug/
/x86-Release/
/x64-Debug/
/x64-Release/
!/deps/
/.vs/
/bin/vc2013/
/bin/vc2015/
# For Visual Studio Update File
UpgradeLog.XML
UpgradeLog.htm
/Backup/
# For log file
*.log
# For CodeBlocks project files
*.layout
*.depend
# For text file
!ReadMe.txt
!readme.txt
*.txt
# For Intel C++ Compiler Log File & Project File
IcUpdateLog.htm
*.icproj
# For AStyle backup file
*.orig
# For Code::Blocks backup file
*.sav
# For Sublime Text 2 dump file
*.dump
# tmp and obj files
/obj/
/gen/
/tmp/
/temp/
!/build/ReadMe.txt
/build/*/
# For Visual Studio 2013 temp files on Windows
*.tlog
# For Visual Studio C# files on Windows
*.cache
# Zip or Rar files
*.zip
*.rar
# Some files on Windows
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
# Other files
/.metadata
/169.254.0.1
/ipch/
/cmake/
/Simulator/
/Simulator-Coverage/
/Simulator-Profile/
/Device-Debug/
/Device-Coverage/
/Device-Profile/
/Device-Release/