public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/13197] New: Infinite loop in build
@ 2003-11-26  9:35 hartmut dot schirmer at arcor dot de
  2003-11-26 10:39 ` [Bug bootstrap/13197] " hartmut dot schirmer at arcor dot de
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: hartmut dot schirmer at arcor dot de @ 2003-11-26  9:35 UTC (permalink / raw)
  To: gcc-bugs

Created a build dir using

../gcc-3.3-20031124/configure --verbose --target=sh-elf --prefix=/gcc-3.3.3-sh-
elf --enable-haifa --enable-languages=c,c++

Note: The prefix directory is empty

'make' aborted in gcc dir complaining about fixinc. Disabled
the fixinc and fixprot lines in gcc/Makefile

Restarted make.

Now an endless loop occures. Looking at gcc/Makefile there is

gtyp-gen.h: Makefile
...
	$(SHELL) $(srcdir)/move-if-change tmp-gtyp.h gtyp-gen.h 

Since Makefile was changed after creation of gtyp-gen.h but
rebuild tmp-gtyp.h is identical to gtyp-gen.h the rule obove
will always trigger.

Manuel touch on gtyp-gen.h the build continued

-- 
           Summary: Infinite loop in build
           Product: gcc
           Version: 3.3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: bootstrap
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hartmut dot schirmer at arcor dot de
                CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: i686-pc-cygwin
GCC target triplet: sh-elf


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13197


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

* [Bug bootstrap/13197] Infinite loop in build
  2003-11-26  9:35 [Bug bootstrap/13197] New: Infinite loop in build hartmut dot schirmer at arcor dot de
@ 2003-11-26 10:39 ` hartmut dot schirmer at arcor dot de
  2003-11-26 15:55 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: hartmut dot schirmer at arcor dot de @ 2003-11-26 10:39 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hartmut dot schirmer at arcor dot de  2003-11-26 10:39 -------
*** Bug 13198 has been marked as a duplicate of this bug. ***

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13197


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

* [Bug bootstrap/13197] Infinite loop in build
  2003-11-26  9:35 [Bug bootstrap/13197] New: Infinite loop in build hartmut dot schirmer at arcor dot de
  2003-11-26 10:39 ` [Bug bootstrap/13197] " hartmut dot schirmer at arcor dot de
@ 2003-11-26 15:55 ` pinskia at gcc dot gnu dot org
  2004-06-01 22:34 ` dhazeghi at yahoo dot com
  2004-06-01 22:43 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-11-26 15:55 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-11-26 15:55 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-11-26 15:55:09
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13197


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

* [Bug bootstrap/13197] Infinite loop in build
  2003-11-26  9:35 [Bug bootstrap/13197] New: Infinite loop in build hartmut dot schirmer at arcor dot de
  2003-11-26 10:39 ` [Bug bootstrap/13197] " hartmut dot schirmer at arcor dot de
  2003-11-26 15:55 ` pinskia at gcc dot gnu dot org
@ 2004-06-01 22:34 ` dhazeghi at yahoo dot com
  2004-06-01 22:43 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: dhazeghi at yahoo dot com @ 2004-06-01 22:34 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dhazeghi at yahoo dot com  2004-06-01 22:34 -------
What stage in the build does it have a problem with fixincludes? I just tried mainline (cvs trunk), and it 
gets to the point where building libgcc blows up because no cross-assembler is installed. Thanks.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dhazeghi at yahoo dot com
             Status|NEW                         |WAITING
   GCC host triplet|i686-pc-cygwin              |
 GCC target triplet|sh-elf                      |
           Keywords|                            |build


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13197


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

* [Bug bootstrap/13197] Infinite loop in build
  2003-11-26  9:35 [Bug bootstrap/13197] New: Infinite loop in build hartmut dot schirmer at arcor dot de
                   ` (2 preceding siblings ...)
  2004-06-01 22:34 ` dhazeghi at yahoo dot com
@ 2004-06-01 22:43 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-06-01 22:43 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-01 22:43 -------
No, this is confirmed, the problem might be gone though.  The problem is that gtyp-gen.h depends on 
Makefile and if you touch makefile you will get an infinite loop as the rule for generating gtyp-gen.h 
has a move-if-change command.
But this was fixed in 3.4.0 by:
2004-01-28  Ian Lance Taylor  <ian@wasabisystems.com>

        * Makefile.in (options.c options.h): Use stamp file s-options to
        avoid unnecessary rebuilds.
        (options.o): New target listing dependencies.
        (gtyp-gen.h): Use stamp file s-gtyp-gen.
        (STAGESTUFF): Add s-gtyp-gen.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |3.4.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13197


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

end of thread, other threads:[~2004-06-01 22:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-26  9:35 [Bug bootstrap/13197] New: Infinite loop in build hartmut dot schirmer at arcor dot de
2003-11-26 10:39 ` [Bug bootstrap/13197] " hartmut dot schirmer at arcor dot de
2003-11-26 15:55 ` pinskia at gcc dot gnu dot org
2004-06-01 22:34 ` dhazeghi at yahoo dot com
2004-06-01 22:43 ` pinskia at gcc dot gnu dot org

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