public inbox for crossgcc@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Simplify the GDB dependency logic
@ 2014-05-10  2:08 Cody Schafer
  2014-05-10 10:39 ` Yann E. MORIN
  2014-05-11 10:54 ` debug/gdb: simplify the " Yann E. MORIN
  0 siblings, 2 replies; 4+ messages in thread
From: Cody Schafer @ 2014-05-10  2:08 UTC (permalink / raw)
  To: crossgcc

# HG changeset patch
# User Cody Schafer <dev@codyps.com>
# Date 1399687680 25200
#      Fri May 09 19:08:00 2014 -0700
# Node ID 1d9659fcf6a9c7694ad2c246af12054cb7157fe0
# Parent  790f8c40b95d478d50de5f440988097cf4ec31ec
Simplify the GDB dependency logic

diff --git a/config/debug/gdb.in b/config/debug/gdb.in
--- a/config/debug/gdb.in
+++ b/config/debug/gdb.in
@@ -42,78 +42,66 @@
 config GDB_V_7_6_1
     bool
     prompt "7.6.1"
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_linaro_7_6_2013_05
     bool
     prompt "linaro-7.6-2013.05"
     depends on DEBUG_GDB_SHOW_LINARO
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_7_5_1
     bool
     prompt "7.5.1"
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_linaro_7_5_2012_12_1
     bool
     prompt "linaro-7.5-2012.12-1"
     depends on DEBUG_GDB_SHOW_LINARO
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_linaro_7_4_2012_06
     bool
     prompt "linaro-7.4-2012.06"
     depends on DEBUG_GDB_SHOW_LINARO
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_7_4_1
     bool
     prompt "7.4.1"
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_7_4
     bool
     prompt "7.4"
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_linaro_7_3_2011_12
     bool
     prompt "linaro-7.3-2011.12"
     depends on DEBUG_GDB_SHOW_LINARO
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_7_3_1
     bool
     prompt "7.3.1"
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_7_3a
     bool
     prompt "7.3a"
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_linaro_7_2_2011_05_0
     bool
     prompt "linaro-7.2-2011.05-0"
     depends on DEBUG_GDB_SHOW_LINARO
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_7_2a
     bool
     prompt "7.2a"
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 config GDB_V_7_1a
@@ -139,13 +127,13 @@
     bool
     prompt "Custom gdb"
     depends on EXPERIMENTAL
-    select GDB_7_0_or_later
     select GDB_7_2_or_later
 
 endchoice
 
 config GDB_7_2_or_later
     bool
+    select GDB_7_0_or_later
 
 config GDB_7_0_or_later
     bool


--
For unsubscribe information see http://sourceware.org/lists.html#faq

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

* Re: [PATCH] Simplify the GDB dependency logic
  2014-05-10  2:08 [PATCH] Simplify the GDB dependency logic Cody Schafer
@ 2014-05-10 10:39 ` Yann E. MORIN
  2014-05-11  0:16   ` Cody P Schafer
  2014-05-11 10:54 ` debug/gdb: simplify the " Yann E. MORIN
  1 sibling, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2014-05-10 10:39 UTC (permalink / raw)
  To: Cody Schafer; +Cc: crossgcc

Cody, All,

On 2014-05-09 19:08 -0700, Cody Schafer spake thusly:
> # HG changeset patch
> # User Cody Schafer <dev@codyps.com>
> # Date 1399687680 25200
> #      Fri May 09 19:08:00 2014 -0700
> # Node ID 1d9659fcf6a9c7694ad2c246af12054cb7157fe0
> # Parent  790f8c40b95d478d50de5f440988097cf4ec31ec
> Simplify the GDB dependency logic

You forgot to add your SoB line on this patch (and the following ones.
(your first patch has it, however, so I've applied it.)

Care to either resend with your SoB line added, or just reply to each
message with your SoB line, please?

Thanks!

Regards,
Yann E. MORIN.

> diff --git a/config/debug/gdb.in b/config/debug/gdb.in
> --- a/config/debug/gdb.in
> +++ b/config/debug/gdb.in
> @@ -42,78 +42,66 @@
>  config GDB_V_7_6_1
>      bool
>      prompt "7.6.1"
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_linaro_7_6_2013_05
>      bool
>      prompt "linaro-7.6-2013.05"
>      depends on DEBUG_GDB_SHOW_LINARO
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_7_5_1
>      bool
>      prompt "7.5.1"
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_linaro_7_5_2012_12_1
>      bool
>      prompt "linaro-7.5-2012.12-1"
>      depends on DEBUG_GDB_SHOW_LINARO
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_linaro_7_4_2012_06
>      bool
>      prompt "linaro-7.4-2012.06"
>      depends on DEBUG_GDB_SHOW_LINARO
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_7_4_1
>      bool
>      prompt "7.4.1"
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_7_4
>      bool
>      prompt "7.4"
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_linaro_7_3_2011_12
>      bool
>      prompt "linaro-7.3-2011.12"
>      depends on DEBUG_GDB_SHOW_LINARO
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_7_3_1
>      bool
>      prompt "7.3.1"
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_7_3a
>      bool
>      prompt "7.3a"
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_linaro_7_2_2011_05_0
>      bool
>      prompt "linaro-7.2-2011.05-0"
>      depends on DEBUG_GDB_SHOW_LINARO
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_7_2a
>      bool
>      prompt "7.2a"
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  config GDB_V_7_1a
> @@ -139,13 +127,13 @@
>      bool
>      prompt "Custom gdb"
>      depends on EXPERIMENTAL
> -    select GDB_7_0_or_later
>      select GDB_7_2_or_later
>  
>  endchoice
>  
>  config GDB_7_2_or_later
>      bool
> +    select GDB_7_0_or_later
>  
>  config GDB_7_0_or_later
>      bool
> 
> 
> --
> For unsubscribe information see http://sourceware.org/lists.html#faq
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

--
For unsubscribe information see http://sourceware.org/lists.html#faq

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

* Re: [PATCH] Simplify the GDB dependency logic
  2014-05-10 10:39 ` Yann E. MORIN
@ 2014-05-11  0:16   ` Cody P Schafer
  0 siblings, 0 replies; 4+ messages in thread
From: Cody P Schafer @ 2014-05-11  0:16 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

On 05/10/2014 03:38 AM, Yann E. MORIN wrote:
> Cody, All,
>
> On 2014-05-09 19:08 -0700, Cody Schafer spake thusly:
>> # HG changeset patch
>> # User Cody Schafer <dev@codyps.com>
>> # Date 1399687680 25200
>> #      Fri May 09 19:08:00 2014 -0700
>> # Node ID 1d9659fcf6a9c7694ad2c246af12054cb7157fe0
>> # Parent  790f8c40b95d478d50de5f440988097cf4ec31ec
>> Simplify the GDB dependency logic
>
> You forgot to add your SoB line on this patch (and the following ones.
> (your first patch has it, however, so I've applied it.)
>
> Care to either resend with your SoB line added, or just reply to each
> message with your SoB line, please?
>
> Thanks!

Signed-off-by: Cody P Schafer <dev@codyps.com>

--
For unsubscribe information see http://sourceware.org/lists.html#faq

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

* debug/gdb: simplify the dependency logic
  2014-05-10  2:08 [PATCH] Simplify the GDB dependency logic Cody Schafer
  2014-05-10 10:39 ` Yann E. MORIN
@ 2014-05-11 10:54 ` Yann E. MORIN
  1 sibling, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2014-05-11 10:54 UTC (permalink / raw)
  To: Cody Schafer; +Cc: crossgcc

Cody, All,

Your patch:
    debug/gdb: simplify the dependency logic

has been applied as: #06b78d44d1a0
    http://crosstool-ng.org/hg/crosstool-ng/rev/06b78d44d1a0

Thank you!

Regards,
Yann E. MORIN.



--
For unsubscribe information see http://sourceware.org/lists.html#faq

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

end of thread, other threads:[~2014-05-11 10:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-10  2:08 [PATCH] Simplify the GDB dependency logic Cody Schafer
2014-05-10 10:39 ` Yann E. MORIN
2014-05-11  0:16   ` Cody P Schafer
2014-05-11 10:54 ` debug/gdb: simplify the " Yann E. MORIN

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