]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb, gdbserver, gdbsupport: add .gitattributes files
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Thu, 5 Mar 2020 14:59:22 +0000 (15:59 +0100)
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Thu, 5 Mar 2020 14:59:22 +0000 (15:59 +0100)
Create .gitattributes files in gdb/, gdbserver/, and gdbsupport/.

The files specify cpp-style diffs for .h and .c files.  This is
particularly helpful if a class in a header file is modified.
For instance, if the `stop_requested` field of `thread_info` in
gdb/gdbthread.h is modified, we get the following diff with
'git diff' (using git version 2.17.1):

   @@ -379,7 +379,7 @@ public:
      struct target_waitstatus pending_follow;

      /* True if this thread has been explicitly requested to stop.  */
   -  int stop_requested = 0;
   +  bool stop_requested = 0;

      /* The initiating frame of a nexting operation, used for deciding
         which exceptions to intercept.  If it is null_frame_id no

Note that the context of the change shows up as 'public:'; not so
useful.  With the .gitattributes file, we get:

   @@ -379,7 +379,7 @@ class thread_info : public refcounted_object
      struct target_waitstatus pending_follow;

      /* True if this thread has been explicitly requested to stop.  */
   -  int stop_requested = 0;
   +  bool stop_requested = 0;

      /* The initiating frame of a nexting operation, used for deciding
         which exceptions to intercept.  If it is null_frame_id no

The context is successfully shown as 'class thread_info'.

This patch creates a .gitattributes file per each of gdb, gdbserver,
and gdbsupport folders.  An alternative would be to define the
attributes in the root folder -- this would impact all the top-level
folders, though.  I opted for the more conservative approach.

gdb/ChangeLog:
2020-03-05  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>

* .gitattributes: New file.

gdbserver/ChangeLog:
2020-03-05  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>

* .gitattributes: New file.

gdbsupport/ChangeLog:
2020-03-05  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>

* .gitattributes: New file.

gdb/.gitattributes [new file with mode: 0644]
gdb/ChangeLog
gdbserver/.gitattributes [new file with mode: 0644]
gdbserver/ChangeLog
gdbsupport/.gitattributes [new file with mode: 0644]
gdbsupport/ChangeLog

diff --git a/gdb/.gitattributes b/gdb/.gitattributes
new file mode 100644 (file)
index 0000000..8acadb9
--- /dev/null
@@ -0,0 +1,7 @@
+# -*- conf -*-
+
+# Use cpp-style diffs for .h and .c files.  This is useful
+# if you modify classes defined in those files.
+
+*.h    diff=cpp
+*.c    diff=cpp
index 22e500c1b3cfbec68450bdf38fc22bccfa98bc5b..d8c44d80e4e5623643b81fe1233ee318c3acfe84 100644 (file)
@@ -1,3 +1,7 @@
+2020-03-05  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       * .gitattributes: New file.
+
 2020-03-04  Tom Tromey  <tom@tromey.com>
 
        * symmisc.c (print_symbol_bcache_statistics)
diff --git a/gdbserver/.gitattributes b/gdbserver/.gitattributes
new file mode 100644 (file)
index 0000000..6df2574
--- /dev/null
@@ -0,0 +1,6 @@
+# -*- conf -*-
+
+# Use cpp-style diffs for .h files.  This is useful
+# if you modify classes defined in a header file.
+
+*.h    diff=cpp
index 7a5a3b7a0371937a4ba84c04b02f4b28aba97740..4e44a763cc3f2098fa692d50fcf3ba4d86298259 100644 (file)
@@ -1,3 +1,7 @@
+2020-03-05  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       * .gitattributes: New file.
+
 2020-03-02  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * remote-utils.cc (prepare_resume_reply): Add ability to convert T
diff --git a/gdbsupport/.gitattributes b/gdbsupport/.gitattributes
new file mode 100644 (file)
index 0000000..6df2574
--- /dev/null
@@ -0,0 +1,6 @@
+# -*- conf -*-
+
+# Use cpp-style diffs for .h files.  This is useful
+# if you modify classes defined in a header file.
+
+*.h    diff=cpp
index 033be86b1853dde6bb9dffaffd45f6d8f3283067..c47bb4ebbbadb1e1fcb75bd2bab9602b56230ea1 100644 (file)
@@ -1,3 +1,7 @@
+2020-03-05  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       * .gitattributes: New file.
+
 2020-03-03  Simon Marchi  <simon.marchi@efficios.com>
 
        * Makefile.in: Re-generate.