[Openmp-commits] [PATCH] D129711: [OpenMP] Ignore .eggs file in OpenMP

Shilei Tian via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Wed Jul 13 17:58:53 PDT 2022


tianshilei1992 created this revision.
tianshilei1992 added reviewers: dreachem, jdoerfert, protze.joachim.
Herald added subscribers: guansong, yaxunl.
Herald added a project: All.
tianshilei1992 requested review of this revision.
Herald added subscribers: openmp-commits, sstefan1.
Herald added a project: 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.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D129711

Files:
  openmp/.gitignore


Index: openmp/.gitignore
===================================================================
--- openmp/.gitignore
+++ openmp/.gitignore
@@ -20,6 +20,8 @@
 .sw?
 #OS X specific files.
 .DS_store
+# Python egg files
+*.eggs
 
 #==============================================================================#
 # Explicit files to ignore (only matches one).


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D129711.444474.patch
Type: text/x-patch
Size: 355 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20220714/fa3c2907/attachment.bin>


More information about the Openmp-commits mailing list