-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (42 loc) · 814 Bytes
/
.gitignore
File metadata and controls
53 lines (42 loc) · 814 Bytes
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
# These files are generated by setup and shouldn't be included in the git repo
config/llvm_paths.cmake
config/llvm_paths.py
config/llvm_paths.make
config/java_paths.cmake
config/java_paths.py
tools/zgrviewer/llfi_run.sh
build/
sample_programs/
# All the .ll and .bc files
*.ll
*.bc
*.o
*.exe
# Python cache
__pycache__/
*.pyc
# FIDL-generated software fault selector files (regenerated by setup via FIDL-Algorithm.py)
llvm_passes/software_failures/_*_*Selector.cpp
# protobuf build artifacts (downloaded during ML dependency setup)
protobuf-*/
protobuf-all-*.zip
# gedit backup files
*~
# vim swap files
*.swp
# Java build files
*.class
*.idea
*.iml
# eclipse
gui/.project
gui/.settings/
gui/.classpath
# test builds - gui branch
gui/factorial/
gui/fib/
gui/memcpy1/
gui/sad/
gui/sum/
gui/min/
gui/bfs/