1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 07:51:19 +01:00
RIOT/.gitignore
Marian Buschsieweke 41cb1cc5a1
.gitignore: add .gdb_history
When using gdb-dashboard, GDB by default writes the history in the
folder where `make debug` was executed (e.g. the application folder).

The GDB history will never be useful to upstream, so let's ignore it.
2025-01-23 11:54:30 +01:00

103 lines
1.6 KiB
Plaintext

# Object files
*.o
# Target files
*.elf
# Documentation artifacts
doc/doxygen/html
doc/doxygen/latex
doc/doxygen/man
doc/doxygen/*.log
doc/doxygen/*.db
doc/doxygen/*.tmp
# bin (e.g.:build directory) and .bin files
bin
*.bin
# Build directory
/build
# AFL findings
fuzzing/**/findings/
# Backup files
*~
*.orig
.*.swn
.*.swo
.*.swp
*.save
*.rej
\#*\#
cachegrind.out*
# Eclipse workspace files
.project
.cproject
.settings
.idea
# KDevelop4 project files
.kdev4
*.kdev4
# Codelite (among others) project files
*.project
# Visual Studio Code user settings
.vscode/*
!.vscode/settings.json
# ctags index files
tags
# GDB initialization scripts
.gdbinit
# GDB history (when using gdb-dashboard)
.gdb_history
# Eclipse symbol file (output from make eclipsesym)
eclipsesym.xml
/toolchain
# Ignore created Arduino sketch files
_sketches.cpp
# local override files
Makefile.local
# Vagrant
.vagrant
# clang-complete command line argument lists (Vim: clang-complete, Atom: linter-clang, autocomplete-clang addons)
.clang_complete
# YouCompleteMe (https://github.com/Valloric/YouCompleteMe)
.ycm_extra_conf.py
# Python compiled files
*.pyc
# Ignore download cache
.dlcache
# scan-build artifacts
scan-build/
# compile_and_test_for_boards default "results" directory
results/
# mypy artifacts
.mypy_cache/
# Clangd compile flags (language server)
compile_commands.json
compile_flags.txt
# cache files of clangd (and probably other tools)
.cache/
# generated by clang-check for C++ code
*.plist
# suit manifest keys
keys/
# clangd language server
.clangd/
# custom clang-tidy flags, also used when using clangd language server
.clang-tidy
# Environments
.venv
venv/