public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* libgloss: regenerate aclocal.m4 & configure w/newer versions
@ 2021-09-15 14:24 Mike Frysinger
  2021-11-06 18:18 ` Mike Frysinger
  0 siblings, 1 reply; 5+ messages in thread
From: Mike Frysinger @ 2021-09-15 14:24 UTC (permalink / raw)
  To: newlib


[-- Attachment #1.1: Type: text/plain, Size: 370 bytes --]

Regenerate the files using automake-1.15 & autoconf-2.69 to match the
binutils/gdb/gcc projects.  Ran:

libgloss $ find -name configure.ac -printf '%h\n' | while read d; do
  (cd $d; export WANT_AUTOCONF=2.69 WANT_AUTOMAKE=1.15;
   aclocal-1.15 -I.. && autoconf-2.69); done

I'm attaching the patch compressed because it's much too large for the
mailing list otherwise.

[-- Attachment #1.2: 0001-libgloss-regenerate-aclocal.m4-configure-w-newer-ver.patch.xz --]
[-- Type: application/x-xz, Size: 89724 bytes --]

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: libgloss: regenerate aclocal.m4 & configure w/newer versions
  2021-09-15 14:24 libgloss: regenerate aclocal.m4 & configure w/newer versions Mike Frysinger
@ 2021-11-06 18:18 ` Mike Frysinger
  2021-11-06 21:18   ` Corinna Vinschen
  0 siblings, 1 reply; 5+ messages in thread
From: Mike Frysinger @ 2021-11-06 18:18 UTC (permalink / raw)
  To: newlib

[-- Attachment #1: Type: text/plain, Size: 461 bytes --]

On 15 Sep 2021 10:24, Mike Frysinger wrote:
> Regenerate the files using automake-1.15 & autoconf-2.69 to match the
> binutils/gdb/gcc projects.  Ran:
> 
> libgloss $ find -name configure.ac -printf '%h\n' | while read d; do
>   (cd $d; export WANT_AUTOCONF=2.69 WANT_AUTOMAKE=1.15;
>    aclocal-1.15 -I.. && autoconf-2.69); done
> 
> I'm attaching the patch compressed because it's much too large for the
> mailing list otherwise.

ping ...
-mike

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: libgloss: regenerate aclocal.m4 & configure w/newer versions
  2021-11-06 18:18 ` Mike Frysinger
@ 2021-11-06 21:18   ` Corinna Vinschen
  2021-11-06 23:54     ` Mike Frysinger
  0 siblings, 1 reply; 5+ messages in thread
From: Corinna Vinschen @ 2021-11-06 21:18 UTC (permalink / raw)
  To: newlib

On Nov  6 14:18, Mike Frysinger wrote:
> On 15 Sep 2021 10:24, Mike Frysinger wrote:
> > Regenerate the files using automake-1.15 & autoconf-2.69 to match the
> > binutils/gdb/gcc projects.  Ran:
> > 
> > libgloss $ find -name configure.ac -printf '%h\n' | while read d; do
> >   (cd $d; export WANT_AUTOCONF=2.69 WANT_AUTOMAKE=1.15;
> >    aclocal-1.15 -I.. && autoconf-2.69); done
> > 
> > I'm attaching the patch compressed because it's much too large for the
> > mailing list otherwise.
> 
> ping ...
> -mike

Does libgloss still build afterwards?  If so, go ahead.


Thanks,
Corinna


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

* Re: libgloss: regenerate aclocal.m4 & configure w/newer versions
  2021-11-06 21:18   ` Corinna Vinschen
@ 2021-11-06 23:54     ` Mike Frysinger
  2021-11-08  9:53       ` Corinna Vinschen
  0 siblings, 1 reply; 5+ messages in thread
From: Mike Frysinger @ 2021-11-06 23:54 UTC (permalink / raw)
  To: newlib

[-- Attachment #1: Type: text/plain, Size: 803 bytes --]

On 06 Nov 2021 22:18, Corinna Vinschen wrote:
> On Nov  6 14:18, Mike Frysinger wrote:
> > On 15 Sep 2021 10:24, Mike Frysinger wrote:
> > > Regenerate the files using automake-1.15 & autoconf-2.69 to match the
> > > binutils/gdb/gcc projects.  Ran:
> > > 
> > > libgloss $ find -name configure.ac -printf '%h\n' | while read d; do
> > >   (cd $d; export WANT_AUTOCONF=2.69 WANT_AUTOMAKE=1.15;
> > >    aclocal-1.15 -I.. && autoconf-2.69); done
> > > 
> > > I'm attaching the patch compressed because it's much too large for the
> > > mailing list otherwise.
> > 
> > ping ...
> 
> Does libgloss still build afterwards?  If so, go ahead.

i've been testing bfin-elf & x86_64-pc-cygwin and they seem to still work.

if there's other targets you'd like me to test, let me know.
-mike

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: libgloss: regenerate aclocal.m4 & configure w/newer versions
  2021-11-06 23:54     ` Mike Frysinger
@ 2021-11-08  9:53       ` Corinna Vinschen
  0 siblings, 0 replies; 5+ messages in thread
From: Corinna Vinschen @ 2021-11-08  9:53 UTC (permalink / raw)
  To: newlib

Hi Mike,

On Nov  6 19:54, Mike Frysinger wrote:
> On 06 Nov 2021 22:18, Corinna Vinschen wrote:
> > On Nov  6 14:18, Mike Frysinger wrote:
> > > On 15 Sep 2021 10:24, Mike Frysinger wrote:
> > > > Regenerate the files using automake-1.15 & autoconf-2.69 to match the
> > > > binutils/gdb/gcc projects.  Ran:
> > > > 
> > > > libgloss $ find -name configure.ac -printf '%h\n' | while read d; do
> > > >   (cd $d; export WANT_AUTOCONF=2.69 WANT_AUTOMAKE=1.15;
> > > >    aclocal-1.15 -I.. && autoconf-2.69); done
> > > > 
> > > > I'm attaching the patch compressed because it's much too large for the
> > > > mailing list otherwise.
> > > 
> > > ping ...
> > 
> > Does libgloss still build afterwards?  If so, go ahead.
> 
> i've been testing bfin-elf & x86_64-pc-cygwin and they seem to still work.
> 
> if there's other targets you'd like me to test, let me know.

x86_64-pc-cygwin doesn't build libgloss, so one other arbitrary target
actually building libgloss might be nice.  arm-elf or whatever.


Thanks,
Corinna


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

end of thread, other threads:[~2021-11-08  9:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-15 14:24 libgloss: regenerate aclocal.m4 & configure w/newer versions Mike Frysinger
2021-11-06 18:18 ` Mike Frysinger
2021-11-06 21:18   ` Corinna Vinschen
2021-11-06 23:54     ` Mike Frysinger
2021-11-08  9:53       ` Corinna Vinschen

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