summaryrefslogtreecommitdiff
path: root/packages/gdb/8.2/0001-uclibc-no-gettimeofday-clobber.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2019-02-14 07:54:06 (GMT)
committerGitHub <noreply@github.com>2019-02-14 07:54:06 (GMT)
commitfb744d81588395a97cee951a151a56501a500e42 (patch)
tree895628cd0c17103416c97fb4cb4b66ed469428dd /packages/gdb/8.2/0001-uclibc-no-gettimeofday-clobber.patch
parentb135af0c4a8a141d537a7e60a989594d354abece (diff)
parent91d01a0e4750be6ab2b71fb953a48dff88dc469b (diff)
Merge pull request #1140 from stilor/upgradecrosstool-ng-1.24.0-rc1
Package updates
Diffstat (limited to 'packages/gdb/8.2/0001-uclibc-no-gettimeofday-clobber.patch')
-rw-r--r--packages/gdb/8.2/0001-uclibc-no-gettimeofday-clobber.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/packages/gdb/8.2/0001-uclibc-no-gettimeofday-clobber.patch b/packages/gdb/8.2/0001-uclibc-no-gettimeofday-clobber.patch
deleted file mode 100644
index 3bb6c20..0000000
--- a/packages/gdb/8.2/0001-uclibc-no-gettimeofday-clobber.patch
+++ /dev/null
@@ -1,33 +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>
-Signed-off-by: Alexey Neyman <stilor@att.net>
-
----
- gdb/gnulib/configure | 1 +
- gdb/gnulib/import/m4/gettimeofday.m4 | 1 +
- 2 files changed, 2 insertions(+)
-
---- a/gdb/gnulib/configure
-+++ b/gdb/gnulib/configure
-@@ -17214,6 +17214,7 @@
- case "$host_os" in
- # Guess all is fine on glibc 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
---- a/gdb/gnulib/import/m4/gettimeofday.m4
-+++ b/gdb/gnulib/import/m4/gettimeofday.m4
-@@ -111,6 +111,7 @@
- case "$host_os" in
- # Guess all is fine on glibc 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