[Openmp-commits] [openmp] 65ebcee - [OpenMP] Ignore .eggs file in OpenMP
Shilei Tian via Openmp-commits
openmp-commits at lists.llvm.org
Thu Jul 14 09:06:58 PDT 2022
Author: Shilei Tian
Date: 2022-07-14T12:06:50-04:00
New Revision: 65ebcee197b1fe9cdf94d11422f6d39aabfeb997
URL: https://github.com/llvm/llvm-project/commit/65ebcee197b1fe9cdf94d11422f6d39aabfeb997
DIFF: https://github.com/llvm/llvm-project/commit/65ebcee197b1fe9cdf94d11422f6d39aabfeb997.diff
LOG: [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
Added:
Modified:
openmp/.gitignore
Removed:
################################################################################
diff --git a/openmp/.gitignore b/openmp/.gitignore
index d4bec15d20574..0d1a8c2410015 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).
More information about the Openmp-commits
mailing list