mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
92 lines
873 B
Plaintext
92 lines
873 B
Plaintext
# Prerequisites
|
|
*.d
|
|
testrun
|
|
benchmarkrun
|
|
|
|
# Object files
|
|
*.o
|
|
*.ko
|
|
*.obj
|
|
*.elf
|
|
*.ll
|
|
*.wasm
|
|
*.s
|
|
|
|
# Linker output
|
|
*.ilk
|
|
*.map
|
|
*.exp
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Libraries
|
|
*.lib
|
|
*.tlb
|
|
*.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
|
|
/build/
|
|
.idea/
|
|
/resources/grammar.tab.c
|
|
/resources/grammar.vcg
|
|
/resources/lex.yy.c
|
|
/resources/y.tab.c
|
|
/resources/y.tab.h
|
|
/bin/
|
|
|
|
#visual studio files
|
|
.vs/
|
|
.vscode/
|
|
out/
|
|
|
|
/cmake-build-debug/
|
|
/cmake-build-release/
|
|
|
|
# Emacs files
|
|
TAGS
|
|
|
|
# Clangd LSP files
|
|
/.cache/
|
|
/compile_commands.json
|
|
|
|
# 'nix build' resulting symlink
|
|
result
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# tests
|
|
/test/tmp/*
|
|
/test/testrun
|
|
/test/test_suite_runner |