aboutsummaryrefslogtreecommitdiff
path: root/packages/gdb/8.1/0001-uclibc-no-gettimeofday-clobber.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-09-23 13:58:16 -0700
committerAlexey Neyman <stilor@att.net>2018-09-24 23:09:53 -0700
commit98834458f12d36fb485f4706625a26d2f7e6c69d (patch)
treec570d5145dbee4daf166593fb95afc63e8f8d27f /packages/gdb/8.1/0001-uclibc-no-gettimeofday-clobber.patch
parenteb65ba65ba761f2ff613342498fd58fcefdc606e (diff)
downloadcrosstool-ng-98834458f12d36fb485f4706625a26d2f7e6c69d.tar.gz
crosstool-ng-98834458f12d36fb485f4706625a26d2f7e6c69d.tar.bz2
crosstool-ng-98834458f12d36fb485f4706625a26d2f7e6c69d.zip
Upgrades. Lots of 'em.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/gdb/8.1/0001-uclibc-no-gettimeofday-clobber.patch')
-rw-r--r--packages/gdb/8.1/0001-uclibc-no-gettimeofday-clobber.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/packages/gdb/8.1/0001-uclibc-no-gettimeofday-clobber.patch b/packages/gdb/8.1/0001-uclibc-no-gettimeofday-clobber.patch
deleted file mode 100644
index c8b4a5e1..00000000
--- a/packages/gdb/8.1/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
-@@ -16790,6 +16790,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