public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/48983] New: No diagnostic message about no space left on device with LTO
@ 2011-05-12 16:48 d.g.gorbachev at gmail dot com
  2011-05-12 17:45 ` [Bug other/48983] " d.g.gorbachev at gmail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: d.g.gorbachev at gmail dot com @ 2011-05-12 16:48 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: No diagnostic message about no space left on device
                    with LTO
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: other
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: d.g.gorbachev@gmail.com


To reproduce it in GNU/Linux:

# mount -t tmpfs tmpfs /mnt -o size=4k
$ cat > 1.c
int main(void)
{
  return 0;
}
^D
$ TMPDIR=/mnt gcc -flto 1.c
collect2: ld returned 1 exit status


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

* [Bug other/48983] No diagnostic message about no space left on device with LTO
  2011-05-12 16:48 [Bug other/48983] New: No diagnostic message about no space left on device with LTO d.g.gorbachev at gmail dot com
@ 2011-05-12 17:45 ` d.g.gorbachev at gmail dot com
  2012-05-07 12:35 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: d.g.gorbachev at gmail dot com @ 2011-05-12 17:45 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Dmitry Gorbachev <d.g.gorbachev at gmail dot com> 2011-05-12 16:30:22 UTC ---
Other not very informative messages (depending on the space and program size):

/usr/bin/ld: fatal error: lto-wrapper failed
collect2: ld returned 1 exit status

lto-wrapper: gcc returned 1 exit status
/usr/bin/ld: fatal error: lto-wrapper failed
collect2: ld returned 1 exit status


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

* [Bug other/48983] No diagnostic message about no space left on device with LTO
  2011-05-12 16:48 [Bug other/48983] New: No diagnostic message about no space left on device with LTO d.g.gorbachev at gmail dot com
  2011-05-12 17:45 ` [Bug other/48983] " d.g.gorbachev at gmail dot com
@ 2012-05-07 12:35 ` rguenth at gcc dot gnu.org
  2012-11-15 19:26 ` d.g.gorbachev at gmail dot com
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-05-07 12:35 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2012-05-07
     Ever Confirmed|0                           |1

--- Comment #2 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-05-07 12:31:49 UTC ---
Confirmed.  Out-of-space issues are hard to track - most I/O happens in lto1.


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

* [Bug other/48983] No diagnostic message about no space left on device with LTO
  2011-05-12 16:48 [Bug other/48983] New: No diagnostic message about no space left on device with LTO d.g.gorbachev at gmail dot com
  2011-05-12 17:45 ` [Bug other/48983] " d.g.gorbachev at gmail dot com
  2012-05-07 12:35 ` rguenth at gcc dot gnu.org
@ 2012-11-15 19:26 ` d.g.gorbachev at gmail dot com
  2012-11-15 20:24 ` manu at gcc dot gnu.org
  2021-12-24 12:30 ` [Bug lto/48983] " pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: d.g.gorbachev at gmail dot com @ 2012-11-15 19:26 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #3 from Dmitry Gorbachev <d.g.gorbachev at gmail dot com> 2012-11-15 19:26:38 UTC ---
And this is not particularly useful: "lto1: fatal error: short write".


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

* [Bug other/48983] No diagnostic message about no space left on device with LTO
  2011-05-12 16:48 [Bug other/48983] New: No diagnostic message about no space left on device with LTO d.g.gorbachev at gmail dot com
                   ` (2 preceding siblings ...)
  2012-11-15 19:26 ` d.g.gorbachev at gmail dot com
@ 2012-11-15 20:24 ` manu at gcc dot gnu.org
  2021-12-24 12:30 ` [Bug lto/48983] " pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: manu at gcc dot gnu.org @ 2012-11-15 20:24 UTC (permalink / raw)
  To: gcc-bugs


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

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

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

--- Comment #4 from Manuel López-Ibáñez <manu at gcc dot gnu.org> 2012-11-15 20:23:43 UTC ---
Other gnu projects use gnulib functions to handle these:

http://lists.gnu.org/archive/html/bug-findutils/2005-01/msg00033.html

Perhaps GCC should start using more of gnulib?


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

* [Bug lto/48983] No diagnostic message about no space left on device with LTO
  2011-05-12 16:48 [Bug other/48983] New: No diagnostic message about no space left on device with LTO d.g.gorbachev at gmail dot com
                   ` (3 preceding siblings ...)
  2012-11-15 20:24 ` manu at gcc dot gnu.org
@ 2021-12-24 12:30 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-12-24 12:30 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48983

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |andi-gcc at firstfloor dot org

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 50666 has been marked as a duplicate of this bug. ***

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

end of thread, other threads:[~2021-12-24 12:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-12 16:48 [Bug other/48983] New: No diagnostic message about no space left on device with LTO d.g.gorbachev at gmail dot com
2011-05-12 17:45 ` [Bug other/48983] " d.g.gorbachev at gmail dot com
2012-05-07 12:35 ` rguenth at gcc dot gnu.org
2012-11-15 19:26 ` d.g.gorbachev at gmail dot com
2012-11-15 20:24 ` manu at gcc dot gnu.org
2021-12-24 12:30 ` [Bug lto/48983] " pinskia 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).