public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/55274] New: gcc build hangs on HP-UX 11.11
@ 2012-11-11 20:00 mikulas at artax dot karlin.mff.cuni.cz
  2012-12-23  3:02 ` [Bug other/55274] " danglin at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: mikulas at artax dot karlin.mff.cuni.cz @ 2012-11-11 20:00 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55274
           Summary: gcc build hangs on HP-UX 11.11
    Classification: Unclassified
           Product: gcc
           Version: 4.7.2
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: other
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: mikulas@artax.karlin.mff.cuni.cz
              Host: hppa2.0w-hp-hpux11.11
            Target: hppa2.0w-hp-hpux11.11
             Build: hppa2.0w-hp-hpux11.11


Created attachment 28661
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=28661
a fix for hung build on HP-UX 11.11

On HP-UX 11.11, gcc build hangs. $(SHLIB_MAPFILES) is empty, cat with empty
imput tries to read stdin and that results in the hang. I'm attaching a patch
to fix the problem.


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

* [Bug other/55274] gcc build hangs on HP-UX 11.11
  2012-11-11 20:00 [Bug other/55274] New: gcc build hangs on HP-UX 11.11 mikulas at artax dot karlin.mff.cuni.cz
@ 2012-12-23  3:02 ` danglin at gcc dot gnu.org
  2013-04-03 16:50 ` stachenov at gmail dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: danglin at gcc dot gnu.org @ 2012-12-23  3:02 UTC (permalink / raw)
  To: gcc-bugs


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

John David Anglin <danglin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |danglin at gcc dot gnu.org

--- Comment #1 from John David Anglin <danglin at gcc dot gnu.org> 2012-12-23 03:02:25 UTC ---
I assume this is with HP cat.

Suggest posting patch to gcc-patches.  CC me.  If accepted, I will
apply.


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

* [Bug other/55274] gcc build hangs on HP-UX 11.11
  2012-11-11 20:00 [Bug other/55274] New: gcc build hangs on HP-UX 11.11 mikulas at artax dot karlin.mff.cuni.cz
  2012-12-23  3:02 ` [Bug other/55274] " danglin at gcc dot gnu.org
@ 2013-04-03 16:50 ` stachenov at gmail dot com
  2013-04-03 18:04 ` danglin at gcc dot gnu.org
  2013-04-08 11:41 ` danglin at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: stachenov at gmail dot com @ 2013-04-03 16:50 UTC (permalink / raw)
  To: gcc-bugs


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

Sergey Tachenov <stachenov at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |stachenov at gmail dot com

--- Comment #2 from Sergey Tachenov <stachenov at gmail dot com> 2013-04-03 16:50:11 UTC ---
I have just encountered it with 4.8.0. Instead of adding /dev/null, I have
changed
ifneq ($(SHLIB_MKMAP),)
to
ifneq ($(SHLIB_MAPFILES),)
I'm not sure if it doesn't break anything, though, as in my case the resulting
libgcc.map isn't created at all. The build completed anyway, and the resulting
GCC seems to be working fine, though.


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

* [Bug other/55274] gcc build hangs on HP-UX 11.11
  2012-11-11 20:00 [Bug other/55274] New: gcc build hangs on HP-UX 11.11 mikulas at artax dot karlin.mff.cuni.cz
  2012-12-23  3:02 ` [Bug other/55274] " danglin at gcc dot gnu.org
  2013-04-03 16:50 ` stachenov at gmail dot com
@ 2013-04-03 18:04 ` danglin at gcc dot gnu.org
  2013-04-08 11:41 ` danglin at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: danglin at gcc dot gnu.org @ 2013-04-03 18:04 UTC (permalink / raw)
  To: gcc-bugs


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

John David Anglin <danglin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2013-04-03
                 CC|                            |ro at gcc dot gnu.org
     Ever Confirmed|0                           |1

--- Comment #3 from John David Anglin <danglin at gcc dot gnu.org> 2013-04-03 18:04:16 UTC ---
It looks as if SHLIB_MAPFILES needs to be defined.


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

* [Bug other/55274] gcc build hangs on HP-UX 11.11
  2012-11-11 20:00 [Bug other/55274] New: gcc build hangs on HP-UX 11.11 mikulas at artax dot karlin.mff.cuni.cz
                   ` (2 preceding siblings ...)
  2013-04-03 18:04 ` danglin at gcc dot gnu.org
@ 2013-04-08 11:41 ` danglin at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: danglin at gcc dot gnu.org @ 2013-04-08 11:41 UTC (permalink / raw)
  To: gcc-bugs


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

John David Anglin <danglin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

--- Comment #4 from John David Anglin <danglin at gcc dot gnu.org> 2013-04-08 11:41:47 UTC ---
Should be fixed with this commit:
http://gcc.gnu.org/ml/gcc-cvs/2013-04/msg00283.html

Don't know why the normal commit messages aren't showing up.


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

end of thread, other threads:[~2013-04-08 11:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-11 20:00 [Bug other/55274] New: gcc build hangs on HP-UX 11.11 mikulas at artax dot karlin.mff.cuni.cz
2012-12-23  3:02 ` [Bug other/55274] " danglin at gcc dot gnu.org
2013-04-03 16:50 ` stachenov at gmail dot com
2013-04-03 18:04 ` danglin at gcc dot gnu.org
2013-04-08 11:41 ` danglin at gcc dot gnu.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).