-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
75 lines (65 loc) · 2.79 KB
/
Copy path.gitignore
File metadata and controls
75 lines (65 loc) · 2.79 KB
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
# =====================================================================================
# .gitignore — Autonomous Safety-Supervisor Gateway (SEooC)
# =====================================================================================
# ── Build Outputs ────────────────────────────────────────────────────────────────────
build/
out/
bin/
*.elf
*.hex
*.bin
*.map
*.su # Stack usage files (generated by -fstack-usage)
*.d # Dependency files
# ── CMake ───────────────────────────────────────────────────────────────────────────
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
compile_commands.json
CTestTestfile.cmake
_deps/
# ── Compiler / Linker Artifacts ──────────────────────────────────────────────────────
*.o
*.a
*.so
*.lo
*.la
# ── IDE & Editor ────────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# ── Static Analysis Reports (not committed — generated by CI) ────────────────────────
polyspace_results/
pc_lint_results/
misra_report/
codesonar/
*.ptml
# ── GDB / Debug ──────────────────────────────────────────────────────────────────────
*.gdb
gdb.txt
*.jlink
# ── NXP S32 Design Studio ────────────────────────────────────────────────────────────
.settings/
.cproject
.project
*.launch
Debug/
Release/
# ── Secrets / Keys (NEVER commit) ────────────────────────────────────────────────────
*.pem
*.key
*.p12
*.pfx
hse_keys/
provisioning_keys/
# ── Generated ARXML / RTE (auto-generated — regenerate from tool) ────────────────────
rte_generated/
arxml_generated/
# ── Archives ─────────────────────────────────────────────────────────────────────────
*.zip
*.tar.gz
*.tar.bz2