2011-02-20 12:57:14 +00:00
|
|
|
#==============================================================================#
|
|
|
|
# This file specifies intentionally untracked files that git should ignore.
|
|
|
|
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
|
|
|
|
#
|
|
|
|
# This file is intentionally different from the output of `git svn show-ignore`,
|
|
|
|
# as most of those are useless.
|
|
|
|
#==============================================================================#
|
|
|
|
|
|
|
|
#==============================================================================#
|
|
|
|
# File extensions to be ignored anywhere in the tree.
|
|
|
|
#==============================================================================#
|
|
|
|
# Temp files created by most text editors.
|
|
|
|
*~
|
|
|
|
# Merge files created by git.
|
|
|
|
*.orig
|
|
|
|
# Byte compiled python modules.
|
|
|
|
*.pyc
|
2011-06-12 15:42:51 +00:00
|
|
|
# vim swap files
|
2015-05-27 18:44:32 +00:00
|
|
|
.*.sw?
|
2012-12-02 13:10:19 +00:00
|
|
|
.sw?
|
2014-11-24 09:08:18 +00:00
|
|
|
#OS X specific files.
|
|
|
|
.DS_store
|
2011-02-20 12:57:14 +00:00
|
|
|
|
2017-04-16 16:01:22 +00:00
|
|
|
# Nested build directory
|
|
|
|
/build
|
|
|
|
|
2011-02-20 12:57:14 +00:00
|
|
|
#==============================================================================#
|
|
|
|
# Explicit files to ignore (only matches one).
|
|
|
|
#==============================================================================#
|
2015-01-18 16:17:27 +00:00
|
|
|
# Various tag programs
|
|
|
|
/tags
|
|
|
|
/TAGS
|
|
|
|
/GPATH
|
|
|
|
/GRTAGS
|
|
|
|
/GSYMS
|
|
|
|
/GTAGS
|
2011-02-20 12:57:14 +00:00
|
|
|
.gitusers
|
2011-10-20 21:10:27 +00:00
|
|
|
autom4te.cache
|
2011-02-20 12:57:14 +00:00
|
|
|
cscope.files
|
|
|
|
cscope.out
|
|
|
|
autoconf/aclocal.m4
|
|
|
|
autoconf/autom4te.cache
|
2015-05-27 18:44:32 +00:00
|
|
|
/compile_commands.json
|
2019-01-19 10:01:25 +00:00
|
|
|
# Visual Studio built-in CMake configuration
|
|
|
|
/CMakeSettings.json
|
|
|
|
# CLion project configuration
|
|
|
|
/.idea
|
2011-02-20 12:57:14 +00:00
|
|
|
|
|
|
|
#==============================================================================#
|
|
|
|
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
|
|
|
|
#==============================================================================#
|
|
|
|
# External projects that are tracked independently.
|
2015-08-07 23:01:33 +00:00
|
|
|
projects/*
|
|
|
|
!projects/*.*
|
|
|
|
!projects/Makefile
|
2016-07-23 20:41:05 +00:00
|
|
|
runtimes/*
|
|
|
|
!runtimes/*.*
|
2011-02-20 12:57:14 +00:00
|
|
|
# Clang, which is tracked independently.
|
|
|
|
tools/clang
|
2012-04-14 13:54:10 +00:00
|
|
|
# LLDB, which is tracked independently.
|
|
|
|
tools/lldb
|
2012-08-15 19:34:23 +00:00
|
|
|
# lld, which is tracked independently.
|
|
|
|
tools/lld
|
2015-01-18 16:17:27 +00:00
|
|
|
# llgo, which is tracked independently.
|
|
|
|
tools/llgo
|
2014-11-24 09:08:18 +00:00
|
|
|
# Polly, which is tracked independently.
|
|
|
|
tools/polly
|
2017-01-02 19:17:04 +00:00
|
|
|
# avrlit, which is tracked independently.
|
|
|
|
tools/avrlit
|
2012-08-15 19:34:23 +00:00
|
|
|
# Sphinx build tree, if building in-source dir.
|
|
|
|
docs/_build
|
2017-04-16 16:01:22 +00:00
|
|
|
# VS2017 and VSCode config files.
|
2017-01-02 19:17:04 +00:00
|
|
|
.vscode
|
2017-04-16 16:01:22 +00:00
|
|
|
.vs
|
2019-03-04 18:25:41 +00:00
|
|
|
# clangd index
|
|
|
|
.clangd
|
2015-01-18 16:17:27 +00:00
|
|
|
|
|
|
|
#==============================================================================#
|
|
|
|
# Files created in tree by the Go bindings.
|
|
|
|
#==============================================================================#
|
|
|
|
bindings/go/llvm/llvm_config.go
|
|
|
|
bindings/go/llvm/workdir
|