summaryrefslogtreecommitdiff
path: root/patches/gdb/7.11/101-uclibc-no-gettimeofday-clobber.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-02-19 17:36:14 (GMT)
committerAlexey Neyman <stilor@att.net>2017-02-19 17:37:01 (GMT)
commitdd4cf6dde01c5cf1cf7fc4d9af952ef0e4a85ba2 (patch)
tree3ff691bd33a91c6e1c2c3600a43a710b36ed9554 /patches/gdb/7.11/101-uclibc-no-gettimeofday-clobber.patch
parent92d5c6d159a66b79dcbfe83ce460fe9939b32433 (diff)
Upgrade GDB 7.11 -> 7.11.1
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'patches/gdb/7.11/101-uclibc-no-gettimeofday-clobber.patch')
-rw-r--r--patches/gdb/7.11/101-uclibc-no-gettimeofday-clobber.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/patches/gdb/7.11/101-uclibc-no-gettimeofday-clobber.patch b/patches/gdb/7.11/101-uclibc-no-gettimeofday-clobber.patch
deleted file mode 100644
index ff59907..0000000
--- a/patches/gdb/7.11/101-uclibc-no-gettimeofday-clobber.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Improve gnulib in gdb's guess work, gettimeofday() works in uClibcm promise.
-
-This patch helps building x86_64-unknown-linux-uclibc toolchains, the final
-gdb-native step otherwise fails when linking the libinproctrace.so
-
-Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
-
---- a/gdb/gnulib/configure 2016-02-25 18:17:04.145903807 +0100
-+++ b/gdb/gnulib/configure 2016-02-25 18:17:28.545903821 +0100
-@@ -13520,8 +13520,9 @@
- if test "$cross_compiling" = yes; then :
- # When cross-compiling:
- case "$host_os" in
-- # Guess all is fine on glibc systems.
-+ # Guess all is fine on glibc/uclibc systems.
- *-gnu*) gl_cv_func_gettimeofday_clobber="guessing no" ;;
-+ *-uclibc*) gl_cv_func_gettimeofday_clobber="guessing no" ;;
- # If we don't know, assume the worst.
- *) gl_cv_func_gettimeofday_clobber="guessing yes" ;;
- esac