public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Fix build breakage in rs6000-aix-tdep.c
@ 2023-03-16 13:49 Tom Tromey
  2023-03-16 14:07 ` Luis Machado
  2023-03-16 14:57 ` John Baldwin
  0 siblings, 2 replies; 3+ messages in thread
From: Tom Tromey @ 2023-03-16 13:49 UTC (permalink / raw)
  To: gdb-patches; +Cc: Tom Tromey

A recent change to rs6000-aix-tdep.c broke the build.  This patch
fixes it by declaring a few target descriptions in ppc-tdep.h and then
not including the various features .c files in rs6000-aix-tdep.c.
---
 gdb/ppc-tdep.h        | 6 ++++++
 gdb/rs6000-aix-tdep.c | 5 -----
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/gdb/ppc-tdep.h b/gdb/ppc-tdep.h
index fe41baef149..db4e53205a6 100644
--- a/gdb/ppc-tdep.h
+++ b/gdb/ppc-tdep.h
@@ -450,4 +450,10 @@ struct ppc_inferior_data
 
 extern ppc_inferior_data * get_ppc_per_inferior (inferior *inf);
 
+extern const struct target_desc *tdesc_powerpc_vsx64l;
+extern const struct target_desc *tdesc_powerpc_vsx64;
+extern const struct target_desc *tdesc_powerpc_vsx32;
+extern const struct target_desc *tdesc_powerpc_altivec64;
+extern const struct target_desc *tdesc_powerpc_altivec32;
+
 #endif /* ppc-tdep.h */
diff --git a/gdb/rs6000-aix-tdep.c b/gdb/rs6000-aix-tdep.c
index c56e5a384e4..d4a7b22bc4f 100644
--- a/gdb/rs6000-aix-tdep.c
+++ b/gdb/rs6000-aix-tdep.c
@@ -40,11 +40,6 @@
 #include "trad-frame.h"
 #include "frame-unwind.h"
 
-#include "features/rs6000/powerpc-altivec32.c"
-#include "features/rs6000/powerpc-vsx32.c"
-#include "features/rs6000/powerpc-altivec64.c"
-#include "features/rs6000/powerpc-vsx64.c"
-
 /* If the kernel has to deliver a signal, it pushes a sigcontext
    structure on the stack and then calls the signal handler, passing
    the address of the sigcontext in an argument register.  Usually
-- 
2.39.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Fix build breakage in rs6000-aix-tdep.c
  2023-03-16 13:49 [PATCH] Fix build breakage in rs6000-aix-tdep.c Tom Tromey
@ 2023-03-16 14:07 ` Luis Machado
  2023-03-16 14:57 ` John Baldwin
  1 sibling, 0 replies; 3+ messages in thread
From: Luis Machado @ 2023-03-16 14:07 UTC (permalink / raw)
  To: Tom Tromey, gdb-patches

On 3/16/23 13:49, Tom Tromey via Gdb-patches wrote:
> A recent change to rs6000-aix-tdep.c broke the build.  This patch
> fixes it by declaring a few target descriptions in ppc-tdep.h and then
> not including the various features .c files in rs6000-aix-tdep.c.
> ---
>   gdb/ppc-tdep.h        | 6 ++++++
>   gdb/rs6000-aix-tdep.c | 5 -----
>   2 files changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/gdb/ppc-tdep.h b/gdb/ppc-tdep.h
> index fe41baef149..db4e53205a6 100644
> --- a/gdb/ppc-tdep.h
> +++ b/gdb/ppc-tdep.h
> @@ -450,4 +450,10 @@ struct ppc_inferior_data
>   
>   extern ppc_inferior_data * get_ppc_per_inferior (inferior *inf);
>   
> +extern const struct target_desc *tdesc_powerpc_vsx64l;
> +extern const struct target_desc *tdesc_powerpc_vsx64;
> +extern const struct target_desc *tdesc_powerpc_vsx32;
> +extern const struct target_desc *tdesc_powerpc_altivec64;
> +extern const struct target_desc *tdesc_powerpc_altivec32;
> +
>   #endif /* ppc-tdep.h */
> diff --git a/gdb/rs6000-aix-tdep.c b/gdb/rs6000-aix-tdep.c
> index c56e5a384e4..d4a7b22bc4f 100644
> --- a/gdb/rs6000-aix-tdep.c
> +++ b/gdb/rs6000-aix-tdep.c
> @@ -40,11 +40,6 @@
>   #include "trad-frame.h"
>   #include "frame-unwind.h"
>   
> -#include "features/rs6000/powerpc-altivec32.c"
> -#include "features/rs6000/powerpc-vsx32.c"
> -#include "features/rs6000/powerpc-altivec64.c"
> -#include "features/rs6000/powerpc-vsx64.c"
> -
>   /* If the kernel has to deliver a signal, it pushes a sigcontext
>      structure on the stack and then calls the signal handler, passing
>      the address of the sigcontext in an argument register.  Usually

The patch makes it build again for me (with --enable-targets=all).

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Fix build breakage in rs6000-aix-tdep.c
  2023-03-16 13:49 [PATCH] Fix build breakage in rs6000-aix-tdep.c Tom Tromey
  2023-03-16 14:07 ` Luis Machado
@ 2023-03-16 14:57 ` John Baldwin
  1 sibling, 0 replies; 3+ messages in thread
From: John Baldwin @ 2023-03-16 14:57 UTC (permalink / raw)
  To: Tom Tromey, gdb-patches

On 3/16/23 6:49 AM, Tom Tromey via Gdb-patches wrote:
> A recent change to rs6000-aix-tdep.c broke the build.  This patch
> fixes it by declaring a few target descriptions in ppc-tdep.h and then
> not including the various features .c files in rs6000-aix-tdep.c.
> ---
>   gdb/ppc-tdep.h        | 6 ++++++
>   gdb/rs6000-aix-tdep.c | 5 -----
>   2 files changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/gdb/ppc-tdep.h b/gdb/ppc-tdep.h
> index fe41baef149..db4e53205a6 100644
> --- a/gdb/ppc-tdep.h
> +++ b/gdb/ppc-tdep.h
> @@ -450,4 +450,10 @@ struct ppc_inferior_data
>   
>   extern ppc_inferior_data * get_ppc_per_inferior (inferior *inf);
>   
> +extern const struct target_desc *tdesc_powerpc_vsx64l;
> +extern const struct target_desc *tdesc_powerpc_vsx64;
> +extern const struct target_desc *tdesc_powerpc_vsx32;
> +extern const struct target_desc *tdesc_powerpc_altivec64;
> +extern const struct target_desc *tdesc_powerpc_altivec32;
> +
>   #endif /* ppc-tdep.h */
> diff --git a/gdb/rs6000-aix-tdep.c b/gdb/rs6000-aix-tdep.c
> index c56e5a384e4..d4a7b22bc4f 100644
> --- a/gdb/rs6000-aix-tdep.c
> +++ b/gdb/rs6000-aix-tdep.c
> @@ -40,11 +40,6 @@
>   #include "trad-frame.h"
>   #include "frame-unwind.h"
>   
> -#include "features/rs6000/powerpc-altivec32.c"
> -#include "features/rs6000/powerpc-vsx32.c"
> -#include "features/rs6000/powerpc-altivec64.c"
> -#include "features/rs6000/powerpc-vsx64.c"
> -
>   /* If the kernel has to deliver a signal, it pushes a sigcontext
>      structure on the stack and then calls the signal handler, passing
>      the address of the sigcontext in an argument register.  Usually

LGTM

-- 
John Baldwin


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-03-16 14:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-16 13:49 [PATCH] Fix build breakage in rs6000-aix-tdep.c Tom Tromey
2023-03-16 14:07 ` Luis Machado
2023-03-16 14:57 ` John Baldwin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).