-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
68 lines (53 loc) · 1.18 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
### vscode ++ ###
# ignore vscode/ dir and everything inside
/.vscode/*
# template for settings.json
!/.vscode/settings.template.jsonc
# tasks for build/clean/...
!/.vscode/tasks.json
# debug/attach/...
!/.vscode/launch.json
# needed extensions for using this project
!/.vscode/extensions.json
# C/C++ intellisense configuration: defines/compiler args/...
!/.vscode/c_cpp_properties.json
# unused right now
#!/.vscode/*.code-snippets
# local history
/.history/
# built extensions
*/.vsix
# local file history
/.history
/.ionide
### vscode -- ###
### build artifacts ++ ###
# gcc build artifacts
/GCC_Project/output/
# gcc build generated db
/GCC_Project/compile_commands.json
# fpga build artifacts
/**/rtl/*.bin
/**/rtl/*_bit.h
/**/rtl/*.jlink
/**/rtl/*.openocd
/**/rtl/build
/**/rtl/Makefile.symbiflow
# au/mx generated files and dirs
fpga/rtl/config_bit_gen
fpga/rtl/*_linux_cache
fpga/rtl/logic_optimizer/
fpga/rtl/*_yosys.log
fpga/rtl/*.blif
fpga/rtl/*.edf
fpga/rtl/*.html
fpga/rtl/*.log
fpga/rtl/*.rpt
fpga/rtl/*.tcl
fpga/rtl/*.ys
fpga/rtl/*.timing.db
### build artifacts -- ###
### scaffolding artifacts ++ ###
custom_eoss3_*.jlink
custom_eoss3_*.log
### scaffolding artifacts -- ###