-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
118 lines (103 loc) · 2.19 KB
/
.gitignore
File metadata and controls
118 lines (103 loc) · 2.19 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
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
# ============================================
# Tulpar Project .gitignore
# ============================================
# ==== Build Outputs ====
tulpar
tulpar.exe
*.o
*.obj
*.a
*.lib
*.so
*.dylib
*.dll
*.pdb
*.exe
# ==== Build Directories ====
# build-* glob covers every per-platform / per-toolchain variant
# (build-windows, build-msys, build-macos, build-windows-mingw, …).
# A few common names are listed explicitly for clarity.
build/
build-*/
build-win/
build-linux/
bin/
obj/
out/
# ==== CMake Generated ====
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
!cmake/
# ==== Auto-Generated Files ====
src/embedded_libs.h
# ==== LLVM IR Files ====
*.ll
*.bc
# ==== IDE & Editor ====
.vscode/
.idea/
*.swp
*.swo
*~
*.sublime-*
*.code-workspace
# ==== OS Files ====
.DS_Store
Thumbs.db
desktop.ini
ehthumbs.db
# ==== Temporary & Log Files ====
*.log
*.tmp
*.temp
*.bak
*.cache
# ==== Database Files ====
*.db
*.sqlite
*.sqlite3
benchmark_results.txt
aot_out.txt
test_file.txt
# ==== Benchmark Outputs ====
benchmarks/*.exe
benchmarks/*.ll
benchmarks/*_test
benchmarks/a.out*
benchmarks/bench_*
benchmarks/sb_test
benchmarks/qb_test
benchmarks/verify_test
benchmarks/c_bench
# ==== Test Outputs ====
*.out
a.out
# ==== Python (if any scripts) ====
__pycache__/
*.py[cod]
*.pyo
.env
venv/
# ==== Vendored LLVM headers (now removed from tracking) ====
# include/ once carried a full vendored LLVM source tree. Every active
# source uses the system LLVM via find_package (LLVM_INCLUDE_DIRS), so
# the local copy was orphaned. Ignored to stop a stray LLVM extract or
# tool-driven auto-vendor from sneaking it back into git.
include/
# ==== Scratch / debug dumps ====
# Files that show up from ad-hoc dev sessions: gdb backtrace dumps,
# example output captures, scratch test programs run from the repo root.
bt.txt
bt_full.txt
test.tpr
test_results.txt
# ==== Keep These (not ignored) ====
# lib/*.tpr - Standard libraries
# examples/*.tpr - Example files
# cmake/*.cmake - CMake modules
# src/embedded_libs.h.in - Template file
# wasm/emsdk is a local Emscripten SDK install pulled by wasm/build_wasm.sh
# (formerly tracked as a stray submodule pointer with no .gitmodules — broke CI checkout cleanup)
wasm/emsdk/