Commit 8dce4dbc by David Malcolm Committed by David Malcolm

Initial version of gdb hooks

    
    	* MAINTAINERS (gdbhooks.py): Add myself as maintainer
    
    gcc/
    	* gdbhooks.py: New.
    	* configure.ac (gdbinit.in): Add import of gcc/gdbhooks.py.
    	* configure: Regenerate.

From-SVN: r202040
parent 99236f3a
2013-08-27 David Malcolm <dmalcolm@redhat.com>
* MAINTAINERS (gdbhooks.py): Add myself as maintainer.
2013-08-26 Caroline Tice <cmtice@google.com> 2013-08-26 Caroline Tice <cmtice@google.com>
* MAINTAINERS: Correct earliers update: Move myself from libvtv * MAINTAINERS: Correct earliers update: Move myself from libvtv
......
...@@ -257,6 +257,7 @@ testsuite Rainer Orth ro@CeBiTec.Uni-Bielefeld.DE ...@@ -257,6 +257,7 @@ testsuite Rainer Orth ro@CeBiTec.Uni-Bielefeld.DE
testsuite Mike Stump mikestump@comcast.net testsuite Mike Stump mikestump@comcast.net
testsuite Janis Johnson janisjo@codesourcery.com testsuite Janis Johnson janisjo@codesourcery.com
register allocation Vladimir Makarov vmakarov@redhat.com register allocation Vladimir Makarov vmakarov@redhat.com
gdbhooks.py David Malcolm dmalcolm@redhat.com
Note that individuals who maintain parts of the compiler need approval to Note that individuals who maintain parts of the compiler need approval to
check in changes outside of the parts of the compiler they maintain. check in changes outside of the parts of the compiler they maintain.
......
2013-08-27 David Malcolm <dmalcolm@redhat.com>
* gdbhooks.py: New.
* configure.ac (gdbinit.in): Add import of gcc/gdbhooks.py.
* configure: Regenerate.
2013-08-27 Martin Jambor <mjambor@suse.cz> 2013-08-27 Martin Jambor <mjambor@suse.cz>
* ipa-prop.h (ipa_pass_through_data): New field type_preserved. * ipa-prop.h (ipa_pass_through_data): New field type_preserved.
......
...@@ -27397,6 +27397,7 @@ if test "x$subdirs" != x; then ...@@ -27397,6 +27397,7 @@ if test "x$subdirs" != x; then
done done
fi fi
echo "source ${srcdir}/gdbinit.in" >> .gdbinit echo "source ${srcdir}/gdbinit.in" >> .gdbinit
echo "python import sys; sys.path.append('${srcdir}'); import gdbhooks" >> .gdbinit
gcc_tooldir='$(libsubdir)/$(libsubdir_to_prefix)$(target_noncanonical)' gcc_tooldir='$(libsubdir)/$(libsubdir_to_prefix)$(target_noncanonical)'
......
...@@ -5181,6 +5181,7 @@ if test "x$subdirs" != x; then ...@@ -5181,6 +5181,7 @@ if test "x$subdirs" != x; then
done done
fi fi
echo "source ${srcdir}/gdbinit.in" >> .gdbinit echo "source ${srcdir}/gdbinit.in" >> .gdbinit
echo "python import sys; sys.path.append('${srcdir}'); import gdbhooks" >> .gdbinit
gcc_tooldir='$(libsubdir)/$(libsubdir_to_prefix)$(target_noncanonical)' gcc_tooldir='$(libsubdir)/$(libsubdir_to_prefix)$(target_noncanonical)'
AC_SUBST(gcc_tooldir) AC_SUBST(gcc_tooldir)
......
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment