This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Add profiling outputs to .gitignore


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=cef2097a8731b04accf50d99c9b5a556cebd5f15

commit cef2097a8731b04accf50d99c9b5a556cebd5f15
Author: Christian Biesinger <cbiesinger@google.com>
Date:   Thu Dec 19 15:19:26 2019 -0600

    Add profiling outputs to .gitignore
    
    "perf record" creates files perf.data/perf.data.old; these can be safely
    ignored in .gitignore, to avoid showing up in git status.
    
    ChangeLog:
    
    2019-12-26  Christian Biesinger  <cbiesinger@google.com>
    
    	* .gitignore: Add perf.data and perf.data.old.
    
    Change-Id: I214ae9d6b7265c2cb1356f11c9b0b82e2b391352

Diff:
---
 .gitignore | 3 +++
 ChangeLog  | 4 ++++
 2 files changed, 7 insertions(+)

diff --git a/.gitignore b/.gitignore
index 4460159..356b2eb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -41,6 +41,9 @@ TAGS.sub
 .gdbinit
 .gdb_history
 
+perf.data
+perf.data.old
+
 # ignore core files, but not java/net/protocol/core/
 core
 !core/
diff --git a/ChangeLog b/ChangeLog
index 8c60466..2eeac27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2019-12-26  Christian Biesinger  <cbiesinger@google.com>
+
+	* .gitignore: Add perf.data and perf.data.old.
+
 2019-10-17  Sergio Durigan Junior  <sergiodj@redhat.com>
 
 	* src-release.sh (GDB_SUPPORT_DIRS): Add libctf.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]