public inbox for sid@sourceware.org
 help / color / mirror / Atom feed
* SID won't build
@ 2003-01-29 22:24 Gary Thomas
  2003-01-30 17:21 ` Frank Ch. Eigler
  0 siblings, 1 reply; 4+ messages in thread
From: Gary Thomas @ 2003-01-29 22:24 UTC (permalink / raw)
  To: sid

I updated from CVS today and SID no longer builds.  (Actually, I was 
trying to look at Stefano's problem, but I ran into other difficulties)

Here's the crux of the error:

gcc -DHAVE_CONFIG_H -I../../../../opcodes -I../../../../bfd
-I../../../../intl
-I/work2/sid/src/sid/component/cgen-cpu/m32r/../../../../opcodes
-I/work2/sid/src/sid/component/cgen-cpu/m32r/../../../../include
-I/work2/sid/src/sid/component/cgen-cpu/m32r/../../../../bfd
-I/work2/sid/src/sid/component/cgen-cpu/m32r/../../../../intl
-D_GNU_SOURCE -g -O2 -c  -fPIC -DPIC
/work2/sid/src/sid/component/cgen-cpu/m32r/../../../../opcodes/m32r-asm.c -o .libs/m32r-asm.lo
In file included from /work2/sid/src/opcodes/m32r-asm.c:28:
/work2/sid/src/opcodes/sysdep.h:28:20: config.h: No such file or
directory
make[5]: *** [m32r-asm.lo] Error 1
make[5]: Leaving directory `/work/sid/component/cgen-cpu/m32r'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/work/sid/component/cgen-cpu'
make[3]: *** [all-recursive-am] Error 2
make[3]: Leaving directory `/work/sid/component/cgen-cpu'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/work/sid/component'
make[1]: *** [all-recursive-am] Error 2
make[1]: Leaving directory `/work/sid/component'
make: *** [all-recursive] Error 1

-- 
------------------------------------------------------------
Gary Thomas                 |
MLB Associates              |  Consulting for the
+1 (970) 229-1963           |    Embedded world
http://www.mlbassoc.com/    |
email: <gary@mlbassoc.com>  |
gpg: http://www.chez-thomas.org/gary/gpg_key.asc
------------------------------------------------------------

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

* Re: SID won't build
  2003-01-29 22:24 SID won't build Gary Thomas
@ 2003-01-30 17:21 ` Frank Ch. Eigler
  2003-01-30 19:36   ` Gary Thomas
  0 siblings, 1 reply; 4+ messages in thread
From: Frank Ch. Eigler @ 2003-01-30 17:21 UTC (permalink / raw)
  To: Gary Thomas; +Cc: sid

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

Hi -

On Wed, Jan 29, 2003 at 03:24:01PM -0700, Gary Thomas wrote:
> I updated from CVS today and SID no longer builds.  [...]
> In file included from /work2/sid/src/opcodes/m32r-asm.c:28:
> /work2/sid/src/opcodes/sysdep.h:28:20: config.h: No such file or
> directory
> [...]

I don't see this failure.  My daily automated build ran just fine
yesterday afternoon, though it does this by checking out the CVS
"sid" module, and running "make all".  Maybe one of the related
top-level make targets ("sid-all"?) don't have all their dependencies
listed properly.

- FChE

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: SID won't build
  2003-01-30 17:21 ` Frank Ch. Eigler
@ 2003-01-30 19:36   ` Gary Thomas
  2003-01-30 19:56     ` Frank Ch. Eigler
  0 siblings, 1 reply; 4+ messages in thread
From: Gary Thomas @ 2003-01-30 19:36 UTC (permalink / raw)
  To: Frank Ch. Eigler; +Cc: sid

On Thu, 2003-01-30 at 10:21, Frank Ch. Eigler wrote:
> Hi -
> 
> On Wed, Jan 29, 2003 at 03:24:01PM -0700, Gary Thomas wrote:
> > I updated from CVS today and SID no longer builds.  [...]
> > In file included from /work2/sid/src/opcodes/m32r-asm.c:28:
> > /work2/sid/src/opcodes/sysdep.h:28:20: config.h: No such file or
> > directory
> > [...]
> 
> I don't see this failure.  My daily automated build ran just fine
> yesterday afternoon, though it does this by checking out the CVS
> "sid" module, and running "make all".  Maybe one of the related
> top-level make targets ("sid-all"?) don't have all their dependencies
> listed properly.

I've tried making sure my sources are up-to-date two ways:
  cvs -q update -d -P
and
  cvs -d :pserver:anoncvs@sources.redhat.com:/cvs/src co sid

Both trees give the same results.

I'm trying to build with the simplest setup (in my mind):
  /tmp/src/sid/configure --prefix=XYZ

Ideas?

-- 
------------------------------------------------------------
Gary Thomas                 |
MLB Associates              |  Consulting for the
+1 (970) 229-1963           |    Embedded world
http://www.mlbassoc.com/    |
email: <gary@mlbassoc.com>  |
gpg: http://www.chez-thomas.org/gary/gpg_key.asc
------------------------------------------------------------

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

* Re: SID won't build
  2003-01-30 19:36   ` Gary Thomas
@ 2003-01-30 19:56     ` Frank Ch. Eigler
  0 siblings, 0 replies; 4+ messages in thread
From: Frank Ch. Eigler @ 2003-01-30 19:56 UTC (permalink / raw)
  To: Gary Thomas; +Cc: sid

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

Hi -

On Thu, Jan 30, 2003 at 12:36:00PM -0700, Gary Thomas wrote:
> [...]
> I'm trying to build with the simplest setup (in my mind):
>   /tmp/src/sid/configure --prefix=XYZ

Aha.  sid makes reference to outside sibling directories like opcodes,
libiberty.  It's necessary to run the configure at the top (src/configure).

- FChE

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

end of thread, other threads:[~2003-01-30 19:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-29 22:24 SID won't build Gary Thomas
2003-01-30 17:21 ` Frank Ch. Eigler
2003-01-30 19:36   ` Gary Thomas
2003-01-30 19:56     ` Frank Ch. Eigler

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