-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy path.gitignore
More file actions
67 lines (58 loc) · 1.12 KB
/
.gitignore
File metadata and controls
67 lines (58 loc) · 1.12 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
*.tar.xz
*.tar.xz.sig
*.tar.gz
.idea
.vscode
*.log
# ignore rust build dirs everywhere
**/target/
**/instrument.target/
**/tests/
/build
*.pyc
**/__pycache__
*.egg-info/
.vagrant
**/compile_commands.json
.python-version
.clangd
# ignore Clion build dirs
**/cmake-build-debug
**/cmake-build-release
# xcode-project
c2rust-ast-exporter/xcode/
# cross-checks
/cross-checks/c-checks/clang-plugin/build
/cross-checks/libfakechecks/*.o
/cross-checks/libfakechecks/*.so
# tests
!tests
tests/*.rs
tests/*.a
tests/*.json
tests/*.cbor
tests/*_c
tests/*_rust
tests/*_c.txt
tests/*_rust.txt
tests/**/*.o
/book
# Outputs of `c2rust refactor -r json,marks`
rewrites.*.json
marks.*.json
# Outputs of `c2rust-analyze`
inspect/
*.analysis.txt
*.rs.fixed
analysis.txt
polonius_cache/
# Outputs of c2rust-transpile snapshot tests
c2rust-transpile/tests/snapshots/**/*.rs
c2rust-transpile/tests/snapshots/**/*.c_decls.json
c2rust-transpile/tests/c_decls_snapshots/**/*.rs
c2rust-transpile/tests/c_decls_snapshots/**/*.c_decls.json
# c2rust-analyze test outputs
c2rust-analyze/c2rust_analysis_tests_minimal-*
# Debug info dumps
/dumps
c2rust-transpile/dumps