* [PATCH] Add support for Analog Devices Blackfin processor (part 6/6: src toplevel)
@ 2005-12-30 12:13 Jie Zhang
2006-01-04 5:39 ` Jim Blandy
0 siblings, 1 reply; 5+ messages in thread
From: Jie Zhang @ 2005-12-30 12:13 UTC (permalink / raw)
To: gdb-patches
[-- Attachment #1: Type: text/plain, Size: 163 bytes --]
This final part only contains one line change in src top level
configure, which will enable configure in gdb directory for bfin port.
Any comments?
Thanks,
Jie
[-- Attachment #2: bfin-toplevel.diff --]
[-- Type: text/x-patch, Size: 563 bytes --]
* configure: Configure gdb directory for bfin.
diff -u src.orig/configure src/configure
--- src.orig/configure 2005-12-27 13:36:54.000000000 +0800
+++ src/configure 2005-12-27 10:23:42.000000000 +0800
@@ -1293,7 +1293,7 @@
noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
;;
bfin-*-*)
- noconfigdirs="$noconfigdirs target-libgloss gdb"
+ noconfigdirs="$noconfigdirs target-libgloss"
if test x${is_cross_compiler} != xno ; then
target_configdirs="${target_configdirs} target-bsp target-cygmon"
fi
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Add support for Analog Devices Blackfin processor (part 6/6: src toplevel)
2005-12-30 12:13 [PATCH] Add support for Analog Devices Blackfin processor (part 6/6: src toplevel) Jie Zhang
@ 2006-01-04 5:39 ` Jim Blandy
2006-01-04 7:16 ` Jie Zhang
0 siblings, 1 reply; 5+ messages in thread
From: Jim Blandy @ 2006-01-04 5:39 UTC (permalink / raw)
To: Jie Zhang; +Cc: gdb-patches
On 12/27/05, Jie Zhang <jzhang918@gmail.com> wrote:
> This final part only contains one line change in src top level
> configure, which will enable configure in gdb directory for bfin port.
I think you want to post a patch to configure.in, not configure.
(It's preferred to omit the patches to configure scripts generated
from configure.in or configure.ac files when posting work for review.)
And the patch needs to go to binutils@sources.redhat.com, as well as
gdb-patches.
The actual content of the change looks straightforward to me.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Add support for Analog Devices Blackfin processor (part 6/6: src toplevel)
2006-01-04 5:39 ` Jim Blandy
@ 2006-01-04 7:16 ` Jie Zhang
2006-01-09 15:41 ` Nick Clifton
2006-01-20 23:25 ` Daniel Jacobowitz
0 siblings, 2 replies; 5+ messages in thread
From: Jie Zhang @ 2006-01-04 7:16 UTC (permalink / raw)
To: Jim Blandy, binutils; +Cc: gdb-patches
[-- Attachment #1: Type: text/plain, Size: 892 bytes --]
On 1/4/06, Jim Blandy <jimb@red-bean.com> wrote:
> On 12/27/05, Jie Zhang <jzhang918@gmail.com> wrote:
> > This final part only contains one line change in src top level
> > configure, which will enable configure in gdb directory for bfin port.
>
> I think you want to post a patch to configure.in, not configure.
> (It's preferred to omit the patches to configure scripts generated
> from configure.in or configure.ac files when posting work for review.)
> And the patch needs to go to binutils@sources.redhat.com, as well as
> gdb-patches.
>
Here is the second patch, which is for configure.in, and also sent to
binutils@sources.redhat.com. Sorry for not sending the first one to
binutils mailing list.
> The actual content of the change looks straightforward to me.
>
If it's also OK for binutils, I'll commit it along with other Blackfin
gdb patches.
Thanks,
Jie
[-- Attachment #2: bfin-toplevel-2.diff --]
[-- Type: text/x-patch, Size: 528 bytes --]
* configure.in: Configure gdb directory for bfin.
--- src.orig/configure.in 2006-01-04 15:04:05.000000000 +0800
+++ src/configure.in 2006-01-04 15:02:16.000000000 +0800
@@ -501,7 +501,7 @@
noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj}"
;;
bfin-*-*)
- noconfigdirs="$noconfigdirs target-libgloss gdb"
+ noconfigdirs="$noconfigdirs target-libgloss"
if test x${is_cross_compiler} != xno ; then
target_configdirs="${target_configdirs} target-bsp target-cygmon"
fi
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Add support for Analog Devices Blackfin processor (part 6/6: src toplevel)
2006-01-04 7:16 ` Jie Zhang
@ 2006-01-09 15:41 ` Nick Clifton
2006-01-20 23:25 ` Daniel Jacobowitz
1 sibling, 0 replies; 5+ messages in thread
From: Nick Clifton @ 2006-01-09 15:41 UTC (permalink / raw)
To: Jie Zhang; +Cc: Jim Blandy, binutils, gdb-patches
Hi Jie,
> Here is the second patch, which is for configure.in, and also sent to
> binutils@sources.redhat.com. Sorry for not sending the first one to
> binutils mailing list.
>
>> The actual content of the change looks straightforward to me.
>>
> If it's also OK for binutils, I'll commit it along with other Blackfin
> gdb patches.
It is OK for binutils.
Cheers
Nick
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Add support for Analog Devices Blackfin processor (part 6/6: src toplevel)
2006-01-04 7:16 ` Jie Zhang
2006-01-09 15:41 ` Nick Clifton
@ 2006-01-20 23:25 ` Daniel Jacobowitz
1 sibling, 0 replies; 5+ messages in thread
From: Daniel Jacobowitz @ 2006-01-20 23:25 UTC (permalink / raw)
To: Jie Zhang; +Cc: Jim Blandy, binutils, gdb-patches
On Wed, Jan 04, 2006 at 03:15:56PM +0800, Jie Zhang wrote:
> On 1/4/06, Jim Blandy <jimb@red-bean.com> wrote:
> > On 12/27/05, Jie Zhang <jzhang918@gmail.com> wrote:
> > > This final part only contains one line change in src top level
> > > configure, which will enable configure in gdb directory for bfin port.
> >
> > I think you want to post a patch to configure.in, not configure.
> > (It's preferred to omit the patches to configure scripts generated
> > from configure.in or configure.ac files when posting work for review.)
> > And the patch needs to go to binutils@sources.redhat.com, as well as
> > gdb-patches.
> >
> Here is the second patch, which is for configure.in, and also sent to
> binutils@sources.redhat.com. Sorry for not sending the first one to
> binutils mailing list.
>
> > The actual content of the change looks straightforward to me.
> >
> If it's also OK for binutils, I'll commit it along with other Blackfin
> gdb patches.
Sounds good.
> * configure.in: Configure gdb directory for bfin.
You may already know this, but you should also mention the generated
files in the changelog:
* configure: Regenerated.
And commit both.
--
Daniel Jacobowitz
CodeSourcery
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-01-20 23:25 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-30 12:13 [PATCH] Add support for Analog Devices Blackfin processor (part 6/6: src toplevel) Jie Zhang
2006-01-04 5:39 ` Jim Blandy
2006-01-04 7:16 ` Jie Zhang
2006-01-09 15:41 ` Nick Clifton
2006-01-20 23:25 ` Daniel Jacobowitz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox