From 09b5744d1202ff16dc57a9d679a02a36956cf044 Mon Sep 17 00:00:00 2001 From: Krishnakumar Gopalakrishnan Date: Wed, 30 Aug 2023 17:09:46 +0100 Subject: [PATCH] ignore split-dwarf debugging-related auxilary .dwo files for C and C++ projects --- C++.gitignore | 3 +++ C.gitignore | 3 +++ 2 files changed, 6 insertions(+) diff --git a/C++.gitignore b/C++.gitignore index 259148fa..90fe0ecb 100644 --- a/C++.gitignore +++ b/C++.gitignore @@ -30,3 +30,6 @@ *.exe *.out *.app + +# debug information files +*.dwo diff --git a/C.gitignore b/C.gitignore index c6127b38..845cda6a 100644 --- a/C.gitignore +++ b/C.gitignore @@ -50,3 +50,6 @@ modules.order Module.symvers Mkfile.old dkms.conf + +# debug information files +*.dwo