public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug d/103739] New: Bootstrap broken on powerpc64-linux
@ 2021-12-15 21:23 segher at gcc dot gnu.org
  2021-12-15 21:57 ` [Bug d/103739] " ibuclaw at gdcproject dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: segher at gcc dot gnu.org @ 2021-12-15 21:23 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 103739
           Summary: Bootstrap broken on powerpc64-linux
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: blocker
          Priority: P3
         Component: d
          Assignee: ibuclaw at gdcproject dot org
          Reporter: segher at gcc dot gnu.org
  Target Milestone: ---

gdc -fno-PIE -c  -g -O2 -fversion=IN_GCC     -Wall -Wdeprecated -fno-common -o
d/access.o -MT d/access.o -MMD -MP -MF d/.deps/access.TPo
-I/home/segher/src/gcc/gcc/d -J/home/segher/src/gcc/gcc/d/dmd
-J/home/segher/src/gcc/gcc/d/dmd/res /home/segher/src/gcc/gcc/d/dmd/access.d
d21: error: cannot find source code for runtime library file 'object.d'
d21: note: dmd might not be correctly installed. Run 'dmd -man' for
installation instructions.
d21: note: config file: not found
import path[0] = /home/segher/src/gcc/gcc/d
make[3]: *** [d/access.o] Error 1

This is with --enable-languages=all.  This should not build D if that cannot
work (if that is what the problem is, I have no idea).

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

* [Bug d/103739] Bootstrap broken on powerpc64-linux
  2021-12-15 21:23 [Bug d/103739] New: Bootstrap broken on powerpc64-linux segher at gcc dot gnu.org
@ 2021-12-15 21:57 ` ibuclaw at gdcproject dot org
  2021-12-15 22:40 ` segher at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: ibuclaw at gdcproject dot org @ 2021-12-15 21:57 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
Why is the library not installed alongside the host compiler though?  The D
core runtime compiles and works well on powerpc64-linux.

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

* [Bug d/103739] Bootstrap broken on powerpc64-linux
  2021-12-15 21:23 [Bug d/103739] New: Bootstrap broken on powerpc64-linux segher at gcc dot gnu.org
  2021-12-15 21:57 ` [Bug d/103739] " ibuclaw at gdcproject dot org
@ 2021-12-15 22:40 ` segher at gcc dot gnu.org
  2021-12-16 10:09 ` ibuclaw at gdcproject dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: segher at gcc dot gnu.org @ 2021-12-15 22:40 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Hi!

I have no idea why not.

$ gdc --version
gdc (GCC) 9.3.1 20200410

and it says

Configured with: /home/segher/src/gcc/configure --prefix=/home/segher/tot
--enable-languages=c,c++,fortran,ada,d,objc,obj-c++ --disable-libgomp

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

* [Bug d/103739] Bootstrap broken on powerpc64-linux
  2021-12-15 21:23 [Bug d/103739] New: Bootstrap broken on powerpc64-linux segher at gcc dot gnu.org
  2021-12-15 21:57 ` [Bug d/103739] " ibuclaw at gdcproject dot org
  2021-12-15 22:40 ` segher at gcc dot gnu.org
@ 2021-12-16 10:09 ` ibuclaw at gdcproject dot org
  2021-12-16 11:38 ` segher at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: ibuclaw at gdcproject dot org @ 2021-12-16 10:09 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Buclaw <ibuclaw at gdcproject dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |9.3.1
           Keywords|                            |build
      Known to work|                            |10.3.1

--- Comment #3 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
Seems to be just gcc-9 - bootstrapped from the tip of releases/gcc-10 just
fine.  Probably something that should have been backported wasn't.  I'll have a
look to see what that was.

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

* [Bug d/103739] Bootstrap broken on powerpc64-linux
  2021-12-15 21:23 [Bug d/103739] New: Bootstrap broken on powerpc64-linux segher at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-12-16 10:09 ` ibuclaw at gdcproject dot org
@ 2021-12-16 11:38 ` segher at gcc dot gnu.org
  2021-12-16 13:17 ` ibuclaw at gdcproject dot org
  2021-12-21 20:45 ` ibuclaw at gdcproject dot org
  5 siblings, 0 replies; 7+ messages in thread
From: segher at gcc dot gnu.org @ 2021-12-16 11:38 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Thanks.  But the point of this PR is that bootstrapping trunk is broken.
That needs fixing some way.

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

* [Bug d/103739] Bootstrap broken on powerpc64-linux
  2021-12-15 21:23 [Bug d/103739] New: Bootstrap broken on powerpc64-linux segher at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2021-12-16 11:38 ` segher at gcc dot gnu.org
@ 2021-12-16 13:17 ` ibuclaw at gdcproject dot org
  2021-12-21 20:45 ` ibuclaw at gdcproject dot org
  5 siblings, 0 replies; 7+ messages in thread
From: ibuclaw at gdcproject dot org @ 2021-12-16 13:17 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
(In reply to Segher Boessenkool from comment #4)
> Thanks.  But the point of this PR is that bootstrapping trunk is broken.
> That needs fixing some way.

It's working when you use gcc-10 or later as the baseline, you're using gcc-9
and it isn't.

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

* [Bug d/103739] Bootstrap broken on powerpc64-linux
  2021-12-15 21:23 [Bug d/103739] New: Bootstrap broken on powerpc64-linux segher at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2021-12-16 13:17 ` ibuclaw at gdcproject dot org
@ 2021-12-21 20:45 ` ibuclaw at gdcproject dot org
  5 siblings, 0 replies; 7+ messages in thread
From: ibuclaw at gdcproject dot org @ 2021-12-21 20:45 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Buclaw <ibuclaw at gdcproject dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://gcc.gnu.org/bugzill
                   |                            |a/show_bug.cgi?id=103528
         Resolution|---                         |FIXED
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #6 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
Fix committed as part of PR103528.

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

end of thread, other threads:[~2021-12-21 20:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-15 21:23 [Bug d/103739] New: Bootstrap broken on powerpc64-linux segher at gcc dot gnu.org
2021-12-15 21:57 ` [Bug d/103739] " ibuclaw at gdcproject dot org
2021-12-15 22:40 ` segher at gcc dot gnu.org
2021-12-16 10:09 ` ibuclaw at gdcproject dot org
2021-12-16 11:38 ` segher at gcc dot gnu.org
2021-12-16 13:17 ` ibuclaw at gdcproject dot org
2021-12-21 20:45 ` ibuclaw at gdcproject 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).