- Update to fedora rawhide @ f379362.

- Patches modified:
  * gdb-6.6-buildid-locate.patch

OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=408
This commit is contained in:
2025-01-23 09:59:00 +00:00
committed by Git OBS Bridge
parent e572ca82d0
commit bb279386a7
2 changed files with 7 additions and 24 deletions

View File

@@ -6,30 +6,6 @@ Subject: gdb-6.6-buildid-locate.patch
;; New locating of the matching binaries from the pure core file (build-id).
;;=push+jan
diff --git a/bfd/libbfd-in.h b/bfd/libbfd-in.h
--- a/bfd/libbfd-in.h
+++ b/bfd/libbfd-in.h
@@ -110,7 +110,7 @@ static inline char *
bfd_strdup (const char *str)
{
size_t len = strlen (str) + 1;
- char *buf = bfd_malloc (len);
+ char *buf = (char *) bfd_malloc (len);
if (buf != NULL)
memcpy (buf, str, len);
return buf;
diff --git a/bfd/libbfd.h b/bfd/libbfd.h
--- a/bfd/libbfd.h
+++ b/bfd/libbfd.h
@@ -116,7 +116,7 @@ static inline char *
bfd_strdup (const char *str)
{
size_t len = strlen (str) + 1;
- char *buf = bfd_malloc (len);
+ char *buf = (char *) bfd_malloc (len);
if (buf != NULL)
memcpy (buf, str, len);
return buf;
diff --git a/gdb/build-id.c b/gdb/build-id.c
--- a/gdb/build-id.c
+++ b/gdb/build-id.c

View File

@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Jan 23 09:14:28 UTC 2025 - Tom de Vries <tdevries@suse.com>
- Update to fedora rawhide @ f379362.
- Patches modified:
* gdb-6.6-buildid-locate.patch
-------------------------------------------------------------------
Thu Jan 23 09:07:47 UTC 2025 - Tom de Vries <tdevries@suse.com>