summaryrefslogtreecommitdiff
path: root/packages/gdb/7.11.1/101-uclibc-no-gettimeofday-clobber.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-07-13 07:38:03 (GMT)
committerGitHub <noreply@github.com>2017-07-13 07:38:03 (GMT)
commit45c5bb0f484cba724be2c6105801dcce9a1a82d9 (patch)
tree8fd1c8eaa2ef203009d72b6ca6348611dcc5ee1c /packages/gdb/7.11.1/101-uclibc-no-gettimeofday-clobber.patch
parent8f8e131d566af1f577d8fb6e62e6f121b7955472 (diff)
parentb32fcf7c1eea890a2bd3f88487f818ba241aabb1 (diff)
Merge pull request #767 from stilor/packages
Packages
Diffstat (limited to 'packages/gdb/7.11.1/101-uclibc-no-gettimeofday-clobber.patch')
-rw-r--r--packages/gdb/7.11.1/101-uclibc-no-gettimeofday-clobber.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/gdb/7.11.1/101-uclibc-no-gettimeofday-clobber.patch b/packages/gdb/7.11.1/101-uclibc-no-gettimeofday-clobber.patch
new file mode 100644
index 0000000..ff59907
--- /dev/null
+++ b/packages/gdb/7.11.1/101-uclibc-no-gettimeofday-clobber.patch
@@ -0,0 +1,20 @@
+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