public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/55144] New: opening glibc-c.o: No such file or directory
@ 2012-10-31  3:48 amylaar at gcc dot gnu.org
  2013-04-16 10:15 ` [Bug target/55144] " mans at mansr dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: amylaar at gcc dot gnu.org @ 2012-10-31  3:48 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55144
           Summary: opening glibc-c.o: No such file or directory
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Keywords: build
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: amylaar@gcc.gnu.org
            Blocks: 47093
            Target: bfin-linux-uclibc, cris-linux, crisv32-linux,
                    m32rle-linux, m32r-linux


Since glibc-c.c has been added, a number of targets are configured to
link with glibc-c.o, yet t-glibc is not in tmake_file - presumably because
there was no need before to use ${tmake_file} - possibly even a reason not
to use it - in the tmake_file setting for the affected targets in config.gcc.


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

* [Bug target/55144] opening glibc-c.o: No such file or directory
  2012-10-31  3:48 [Bug target/55144] New: opening glibc-c.o: No such file or directory amylaar at gcc dot gnu.org
@ 2013-04-16 10:15 ` mans at mansr dot com
  2015-04-22  8:26 ` aldot at gcc dot gnu.org
  2015-04-22  8:48 ` aldot at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: mans at mansr dot com @ 2013-04-16 10:15 UTC (permalink / raw)
  To: gcc-bugs


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

Mans Rullgard <mans at mansr dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mans at mansr dot com

--- Comment #1 from Mans Rullgard <mans at mansr dot com> 2013-04-16 10:15:55 UTC ---
This fixes this problem (still fails building libgcc) for bfin-uclibc:

--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -966,7 +966,7 @@ bfin*-uclinux*)
        ;;
 bfin*-linux-uclibc*)
        tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h gnu-user.h linux.h
glibc-stdint.h bfin/linux.h ./linux-sysroot-suffix.h"
-       tmake_file="bfin/t-bfin-linux t-slibgcc"
+       tmake_file="${tmake_file} bfin/t-bfin-linux t-slibgcc"
        use_collect2=no
        ;;
 bfin*-rtems*)


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

* [Bug target/55144] opening glibc-c.o: No such file or directory
  2012-10-31  3:48 [Bug target/55144] New: opening glibc-c.o: No such file or directory amylaar at gcc dot gnu.org
  2013-04-16 10:15 ` [Bug target/55144] " mans at mansr dot com
@ 2015-04-22  8:26 ` aldot at gcc dot gnu.org
  2015-04-22  8:48 ` aldot at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: aldot at gcc dot gnu.org @ 2015-04-22  8:26 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Bernhard Reutner-Fischer <aldot at gcc dot gnu.org> ---
Author: aldot
Date: Wed Apr 22 08:25:40 2015
New Revision: 222313

URL: https://gcc.gnu.org/viewcvs?rev=222313&root=gcc&view=rev
Log:
PR target/55144

building all-gcc for bfin-linux-uclibc resulted in

build/genchecksum cp/cp-lang.o c-family/stub-objc.o ... glibc-c.o \
libbackend.a .. > cc1plus-checksum.c.tmp
opening glibc-c.o: No such file or directory
make[2]: *** [cc1-checksum.c] Error 1


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config.gcc


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

* [Bug target/55144] opening glibc-c.o: No such file or directory
  2012-10-31  3:48 [Bug target/55144] New: opening glibc-c.o: No such file or directory amylaar at gcc dot gnu.org
  2013-04-16 10:15 ` [Bug target/55144] " mans at mansr dot com
  2015-04-22  8:26 ` aldot at gcc dot gnu.org
@ 2015-04-22  8:48 ` aldot at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: aldot at gcc dot gnu.org @ 2015-04-22  8:48 UTC (permalink / raw)
  To: gcc-bugs

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

Bernhard Reutner-Fischer <aldot at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|2013-02-27 00:00:00         |2015-04-22
                 CC|                            |aldot at gcc dot gnu.org
      Known to work|                            |6.0
     Ever confirmed|0                           |1
      Known to fail|                            |4.8.0, 4.9.2, 5.0

--- Comment #3 from Bernhard Reutner-Fischer <aldot at gcc dot gnu.org> ---
Fixed on the trunk.


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

end of thread, other threads:[~2015-04-22  8:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-31  3:48 [Bug target/55144] New: opening glibc-c.o: No such file or directory amylaar at gcc dot gnu.org
2013-04-16 10:15 ` [Bug target/55144] " mans at mansr dot com
2015-04-22  8:26 ` aldot at gcc dot gnu.org
2015-04-22  8:48 ` aldot 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).