107 lines
1.5 KiB
Plaintext
107 lines
1.5 KiB
Plaintext
|
# ---> C
|
||
|
# Prerequisites
|
||
|
*.d
|
||
|
|
||
|
# Object files
|
||
|
*.o
|
||
|
*.ko
|
||
|
*.obj
|
||
|
*.elf
|
||
|
|
||
|
# Linker output
|
||
|
*.ilk
|
||
|
*.map
|
||
|
*.exp
|
||
|
|
||
|
# Precompiled Headers
|
||
|
*.gch
|
||
|
*.pch
|
||
|
|
||
|
# Libraries
|
||
|
*.lib
|
||
|
*.a
|
||
|
*.la
|
||
|
*.lo
|
||
|
|
||
|
# Shared objects (inc. Windows DLLs)
|
||
|
*.dll
|
||
|
*.so
|
||
|
*.so.*
|
||
|
*.dylib
|
||
|
|
||
|
# Executables
|
||
|
*.exe
|
||
|
*.out
|
||
|
*.app
|
||
|
*.i*86
|
||
|
*.x86_64
|
||
|
*.hex
|
||
|
|
||
|
# Debug files
|
||
|
*.dSYM/
|
||
|
*.su
|
||
|
*.idb
|
||
|
*.pdb
|
||
|
|
||
|
# Kernel Module Compile Results
|
||
|
*.mod*
|
||
|
*.cmd
|
||
|
.tmp_versions/
|
||
|
modules.order
|
||
|
Module.symvers
|
||
|
Mkfile.old
|
||
|
dkms.conf
|
||
|
|
||
|
# ---> CMake
|
||
|
CMakeLists.txt.user
|
||
|
CMakeCache.txt
|
||
|
CMakeFiles
|
||
|
CMakeScripts
|
||
|
Testing
|
||
|
Makefile
|
||
|
cmake_install.cmake
|
||
|
install_manifest.txt
|
||
|
compile_commands.json
|
||
|
CTestTestfile.cmake
|
||
|
_deps
|
||
|
|
||
|
# ---> Go
|
||
|
# If you prefer the allow list template instead of the deny list, see community template:
|
||
|
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
||
|
#
|
||
|
# Binaries for programs and plugins
|
||
|
*.exe
|
||
|
*.exe~
|
||
|
*.dll
|
||
|
*.so
|
||
|
*.dylib
|
||
|
|
||
|
# Test binary, built with `go test -c`
|
||
|
*.test
|
||
|
|
||
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||
|
*.out
|
||
|
|
||
|
# Dependency directories (remove the comment below to include it)
|
||
|
# vendor/
|
||
|
|
||
|
# Go workspace file
|
||
|
go.work
|
||
|
|
||
|
# ---> Rust
|
||
|
# Generated by Cargo
|
||
|
# will have compiled files and executables
|
||
|
debug/
|
||
|
target/
|
||
|
|
||
|
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
||
|
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||
|
Cargo.lock
|
||
|
|
||
|
# These are backup files generated by rustfmt
|
||
|
**/*.rs.bk
|
||
|
|
||
|
# MSVC Windows builds of rustc generate these, which store debugging information
|
||
|
*.pdb
|
||
|
|