Skip to content

Commit 13e667a

Browse files
tsymalla-AMDnhaehnle
authored andcommitted
Add .gitignore file.
The file contents are mostly copied from upstream LLVM.
1 parent c72c998 commit 13e667a

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#==============================================================================#
2+
# File extensions to be ignored anywhere in the tree.
3+
# Derived from LLVM (https://github.com/llvm/llvm-project/blob/main/.gitignore).
4+
#==============================================================================#
5+
# Temp files created by most text editors.
6+
*~
7+
# Merge files created by git.
8+
*.orig
9+
# Reject files created by patch.
10+
*.rej
11+
# Byte compiled python modules.
12+
*.pyc
13+
# vim swap files
14+
.*.sw?
15+
.sw?
16+
#OS X specific files.
17+
.DS_store
18+
19+
# Ignore the user specified CMake presets in subproject directories.
20+
/*/CMakeUserPresets.json
21+
22+
# Nested build directory
23+
/build*
24+
25+
#==============================================================================#
26+
# Explicit files to ignore (only matches one).
27+
#==============================================================================#
28+
.gitusers
29+
/compile_commands.json
30+
# Visual Studio built-in CMake configuration
31+
/CMakeSettings.json
32+
# CLion project configuration
33+
/.idea
34+
35+
#==============================================================================#
36+
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
37+
#==============================================================================#
38+
# VS2017 and VSCode config files.
39+
.vscode
40+
.vs
41+
# pythonenv for github Codespaces
42+
pythonenv*
43+
# clangd index. (".clangd" is a config file now, thus trailing slash)
44+
.clangd/
45+
.cache

0 commit comments

Comments
 (0)