From 65ebcee197b1fe9cdf94d11422f6d39aabfeb997 Mon Sep 17 00:00:00 2001 From: Shilei Tian Date: Thu, 14 Jul 2022 12:06:43 -0400 Subject: [PATCH] [OpenMP] Ignore .eggs file in OpenMP The OMPD patches introduces GDB plugin. When it is built, it will create a coulple of temp files in `.eggs`. This patch add it into `.gitignore` in case it messed up the git tracking. Reviewed By: jhuber6 Differential Revision: https://reviews.llvm.org/D129711 --- openmp/.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openmp/.gitignore b/openmp/.gitignore index d4bec15d2057..0d1a8c241001 100644 --- a/openmp/.gitignore +++ b/openmp/.gitignore @@ -20,6 +20,8 @@ .sw? #OS X specific files. .DS_store +# Python egg files +*.eggs #==============================================================================# # Explicit files to ignore (only matches one). -- 2.34.1