public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Disable gdb for z80-unknown-coff target
@ 2014-04-14 21:06 Drew DeVault
  2014-04-21 14:06 ` Drew DeVault
  2014-04-29 20:30 ` [PING] " Drew DeVault
  0 siblings, 2 replies; 4+ messages in thread
From: Drew DeVault @ 2014-04-14 21:06 UTC (permalink / raw)
  To: binutils

I don't often submit patches via mailing list; please let me know if
I've made any mistakes.

gdb is unsupported on z80, which causes configure to fail. This disables
gdb for z80 builds.

Drew DeVault

---
 configure    | 3 +++
 configure.ac | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/configure b/configure
index 749a35e..1beea8e 100755
--- a/configure
+++ b/configure
@@ -3700,6 +3700,9 @@ case "${target}" in
     # No ld support yet.
     noconfigdirs="$noconfigdirs libgui itcl ld"
     ;;
+  z80-*)
+    noconfigdirs="$noconfigdirs gdb"
+    ;;
   i[3456789]86-w64-mingw*)
     ;;
   i[3456789]86-*-mingw*)
diff --git a/configure.ac b/configure.ac
index b24b33d..dc29ed0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1030,6 +1030,9 @@ case "${target}" in
     # No ld support yet.
     noconfigdirs="$noconfigdirs libgui itcl ld"
     ;;
+  z80-*)
+    noconfigdirs="$noconfigdirs gdb"
+    ;;
   i[[3456789]]86-w64-mingw*)
     ;;
   i[[3456789]]86-*-mingw*)
-- 
1.9.2


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

* Re: [PATCH] Disable gdb for z80-unknown-coff target
  2014-04-14 21:06 [PATCH] Disable gdb for z80-unknown-coff target Drew DeVault
@ 2014-04-21 14:06 ` Drew DeVault
  2014-04-29 20:30 ` [PING] " Drew DeVault
  1 sibling, 0 replies; 4+ messages in thread
From: Drew DeVault @ 2014-04-21 14:06 UTC (permalink / raw)
  To: binutils

Hey guys, giving this a quick bump. It's pretty straightforward; I'm
hoping to get some review soon.

On 04/14/2014 03:06 PM, Drew DeVault wrote:
> I don't often submit patches via mailing list; please let me know if
> I've made any mistakes.
> 
> gdb is unsupported on z80, which causes configure to fail. This disables
> gdb for z80 builds.
> 
> Drew DeVault
> 
> ---
>  configure    | 3 +++
>  configure.ac | 3 +++
>  2 files changed, 6 insertions(+)
> 
> diff --git a/configure b/configure
> index 749a35e..1beea8e 100755
> --- a/configure
> +++ b/configure
> @@ -3700,6 +3700,9 @@ case "${target}" in
>      # No ld support yet.
>      noconfigdirs="$noconfigdirs libgui itcl ld"
>      ;;
> +  z80-*)
> +    noconfigdirs="$noconfigdirs gdb"
> +    ;;
>    i[3456789]86-w64-mingw*)
>      ;;
>    i[3456789]86-*-mingw*)
> diff --git a/configure.ac b/configure.ac
> index b24b33d..dc29ed0 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -1030,6 +1030,9 @@ case "${target}" in
>      # No ld support yet.
>      noconfigdirs="$noconfigdirs libgui itcl ld"
>      ;;
> +  z80-*)
> +    noconfigdirs="$noconfigdirs gdb"
> +    ;;
>    i[[3456789]]86-w64-mingw*)
>      ;;
>    i[[3456789]]86-*-mingw*)
> 

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

* [PING] Disable gdb for z80-unknown-coff target
  2014-04-14 21:06 [PATCH] Disable gdb for z80-unknown-coff target Drew DeVault
  2014-04-21 14:06 ` Drew DeVault
@ 2014-04-29 20:30 ` Drew DeVault
  2014-04-30  6:59   ` Will Newton
  1 sibling, 1 reply; 4+ messages in thread
From: Drew DeVault @ 2014-04-29 20:30 UTC (permalink / raw)
  To: binutils

Hey there,
I'll take a leaf from John's book and ask if anyone has issues with this
simple change. It blocks me as well, and should be trivial to review and
get in.

Thanks,
Drew DeVault

On 04/14/2014 03:06 PM, Drew DeVault wrote:
> I don't often submit patches via mailing list; please let me know if
> I've made any mistakes.
> 
> gdb is unsupported on z80, which causes configure to fail. This disables
> gdb for z80 builds.
> 
> Drew DeVault
> 
> ---
>  configure    | 3 +++
>  configure.ac | 3 +++
>  2 files changed, 6 insertions(+)
> 
> diff --git a/configure b/configure
> index 749a35e..1beea8e 100755
> --- a/configure
> +++ b/configure
> @@ -3700,6 +3700,9 @@ case "${target}" in
>      # No ld support yet.
>      noconfigdirs="$noconfigdirs libgui itcl ld"
>      ;;
> +  z80-*)
> +    noconfigdirs="$noconfigdirs gdb"
> +    ;;
>    i[3456789]86-w64-mingw*)
>      ;;
>    i[3456789]86-*-mingw*)
> diff --git a/configure.ac b/configure.ac
> index b24b33d..dc29ed0 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -1030,6 +1030,9 @@ case "${target}" in
>      # No ld support yet.
>      noconfigdirs="$noconfigdirs libgui itcl ld"
>      ;;
> +  z80-*)
> +    noconfigdirs="$noconfigdirs gdb"
> +    ;;
>    i[[3456789]]86-w64-mingw*)
>      ;;
>    i[[3456789]]86-*-mingw*)
> 

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

* Re: [PING] Disable gdb for z80-unknown-coff target
  2014-04-29 20:30 ` [PING] " Drew DeVault
@ 2014-04-30  6:59   ` Will Newton
  0 siblings, 0 replies; 4+ messages in thread
From: Will Newton @ 2014-04-30  6:59 UTC (permalink / raw)
  To: Drew DeVault; +Cc: binutils, gdb-patches

On 29 April 2014 21:30, Drew DeVault <sircmpwn@gmail.com> wrote:
> Hey there,
> I'll take a leaf from John's book and ask if anyone has issues with this
> simple change. It blocks me as well, and should be trivial to review and
> get in.

I've CCed gdb-patches in case that helps!

> On 04/14/2014 03:06 PM, Drew DeVault wrote:
>> I don't often submit patches via mailing list; please let me know if
>> I've made any mistakes.
>>
>> gdb is unsupported on z80, which causes configure to fail. This disables
>> gdb for z80 builds.
>>
>> Drew DeVault
>>
>> ---
>>  configure    | 3 +++
>>  configure.ac | 3 +++
>>  2 files changed, 6 insertions(+)
>>
>> diff --git a/configure b/configure
>> index 749a35e..1beea8e 100755
>> --- a/configure
>> +++ b/configure
>> @@ -3700,6 +3700,9 @@ case "${target}" in
>>      # No ld support yet.
>>      noconfigdirs="$noconfigdirs libgui itcl ld"
>>      ;;
>> +  z80-*)
>> +    noconfigdirs="$noconfigdirs gdb"
>> +    ;;
>>    i[3456789]86-w64-mingw*)
>>      ;;
>>    i[3456789]86-*-mingw*)
>> diff --git a/configure.ac b/configure.ac
>> index b24b33d..dc29ed0 100644
>> --- a/configure.ac
>> +++ b/configure.ac
>> @@ -1030,6 +1030,9 @@ case "${target}" in
>>      # No ld support yet.
>>      noconfigdirs="$noconfigdirs libgui itcl ld"
>>      ;;
>> +  z80-*)
>> +    noconfigdirs="$noconfigdirs gdb"
>> +    ;;
>>    i[[3456789]]86-w64-mingw*)
>>      ;;
>>    i[[3456789]]86-*-mingw*)
>>



-- 
Will Newton
Toolchain Working Group, Linaro

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

end of thread, other threads:[~2014-04-30  6:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-14 21:06 [PATCH] Disable gdb for z80-unknown-coff target Drew DeVault
2014-04-21 14:06 ` Drew DeVault
2014-04-29 20:30 ` [PING] " Drew DeVault
2014-04-30  6:59   ` Will Newton

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).