public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools
       [not found] <bug-43301-4@http.gcc.gnu.org/bugzilla/>
@ 2022-05-24 15:04 ` egallager at gcc dot gnu.org
  2022-07-31 20:58 ` egallager at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: egallager at gcc dot gnu.org @ 2022-05-24 15:04 UTC (permalink / raw)
  To: gcc-bugs

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

Eric Gallager <egallager at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |egallager at gcc dot gnu.org

--- Comment #4 from Eric Gallager <egallager at gcc dot gnu.org> ---
(In reply to Eric Gallager from comment #3)
> Patches go to the gcc-patches mailing list if you still want to see this
> fixed

Actually I guess I can try taking it myself

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

* [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools
       [not found] <bug-43301-4@http.gcc.gnu.org/bugzilla/>
  2022-05-24 15:04 ` [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools egallager at gcc dot gnu.org
@ 2022-07-31 20:58 ` egallager at gcc dot gnu.org
  2022-08-02 23:05 ` iains at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: egallager at gcc dot gnu.org @ 2022-07-31 20:58 UTC (permalink / raw)
  To: gcc-bugs

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

Eric Gallager <egallager at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |https://gcc.gnu.org/piperma
                   |                            |il/gcc-patches/2022-July/59
                   |                            |9118.html
           Keywords|                            |patch

--- Comment #5 from Eric Gallager <egallager at gcc dot gnu.org> ---
(In reply to Eric Gallager from comment #4)
> (In reply to Eric Gallager from comment #3)
> > Patches go to the gcc-patches mailing list if you still want to see this
> > fixed
> 
> Actually I guess I can try taking it myself

OK, submitted: https://gcc.gnu.org/pipermail/gcc-patches/2022-July/599118.html

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

* [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools
       [not found] <bug-43301-4@http.gcc.gnu.org/bugzilla/>
  2022-05-24 15:04 ` [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools egallager at gcc dot gnu.org
  2022-07-31 20:58 ` egallager at gcc dot gnu.org
@ 2022-08-02 23:05 ` iains at gcc dot gnu.org
  2022-08-04  2:20 ` egallager at gcc dot gnu.org
  2022-12-02  6:27 ` egallager at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: iains at gcc dot gnu.org @ 2022-08-02 23:05 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Sandoe <iains at gcc dot gnu.org> changed:

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

--- Comment #6 from Iain Sandoe <iains at gcc dot gnu.org> ---
JFTR, I had cause to use this today on powerpc-darwin9, and it seemed to DTRT -
so it would be useful to establish what it was that did not work before, that
was fixed by the patch.

/src-local/gcc-git-11/configure
--prefix=/opt/iains/powerpc-apple-darwin9/gcc-11-3Dr2d
--build=powerpc-apple-darwin9 --enable-languages=all --with-tune-cpu=G5
--enable-libphobos --with-libphobos-druntime-only CC=powerpc-apple-darwin-gcc
CXX=powerpc-apple-darwin-g++
--with-build-time-tools=/opt/iains/powerpc-apple-darwin9/gcc-11-3Dr2d/bin

Without the
"--with-build-time-tools=/opt/iains/powerpc-apple-darwin9/gcc-11-3Dr2d/bin" the
system linker and assembler are found and used (which fails to work with D,
causing a bootstrap fail) with the option, the relevant tools are found and
bootstrap succeeded....

(so I am not sure what the original problem was
since $build is not specified in the summary, I guess we must assume it was
i686-pc-cygwin so perhaps the problem is specific to that setup?)

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

* [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools
       [not found] <bug-43301-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2022-08-02 23:05 ` iains at gcc dot gnu.org
@ 2022-08-04  2:20 ` egallager at gcc dot gnu.org
  2022-12-02  6:27 ` egallager at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: egallager at gcc dot gnu.org @ 2022-08-04  2:20 UTC (permalink / raw)
  To: gcc-bugs

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

Eric Gallager <egallager at gcc dot gnu.org> changed:

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

--- Comment #7 from Eric Gallager <egallager at gcc dot gnu.org> ---
(In reply to Iain Sandoe from comment #6)
> JFTR, I had cause to use this today on powerpc-darwin9, and it seemed to
> DTRT - so it would be useful to establish what it was that did not work
> before, that was fixed by the patch.
> 
> /src-local/gcc-git-11/configure
> --prefix=/opt/iains/powerpc-apple-darwin9/gcc-11-3Dr2d
> --build=powerpc-apple-darwin9 --enable-languages=all --with-tune-cpu=G5
> --enable-libphobos --with-libphobos-druntime-only
> CC=powerpc-apple-darwin-gcc CXX=powerpc-apple-darwin-g++
> --with-build-time-tools=/opt/iains/powerpc-apple-darwin9/gcc-11-3Dr2d/bin
> 
> Without the
> "--with-build-time-tools=/opt/iains/powerpc-apple-darwin9/gcc-11-3Dr2d/bin"
> the system linker and assembler are found and used (which fails to work with
> D, causing a bootstrap fail) with the option, the relevant tools are found
> and bootstrap succeeded....
> 
> (so I am not sure what the original problem was
> since $build is not specified in the summary, I guess we must assume it was
> i686-pc-cygwin so perhaps the problem is specific to that setup?)

Alexandre Oliva's assessment is that the issue was just one having an old build
left over, and that all the patch did was to force a rebuild:
https://gcc.gnu.org/pipermail/gcc-patches/2022-August/599169.html
(so we might be going with his patch instead)

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

* [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools
       [not found] <bug-43301-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2022-08-04  2:20 ` egallager at gcc dot gnu.org
@ 2022-12-02  6:27 ` egallager at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: egallager at gcc dot gnu.org @ 2022-12-02  6:27 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from Eric Gallager <egallager at gcc dot gnu.org> ---
(In reply to Eric Gallager from comment #7)
> 
> Alexandre Oliva's assessment is that the issue was just one having an old
> build left over, and that all the patch did was to force a rebuild:
> https://gcc.gnu.org/pipermail/gcc-patches/2022-August/599169.html
> (so we might be going with his patch instead)

So, current patch status is that we've got an idea that I just need to test,
along with possibly extending it to similar cases:
https://gcc.gnu.org/pipermail/gcc-patches/2022-August/599354.html

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

* [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools
  2010-03-09  1:00 [Bug bootstrap/43301] New: " scovich at gmail dot com
@ 2010-03-09  1:04 ` scovich at gmail dot com
  0 siblings, 0 replies; 6+ messages in thread
From: scovich at gmail dot com @ 2010-03-09  1:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from scovich at gmail dot com  2010-03-09 01:04 -------
(In reply to comment #0)
> Let's just say this led to extremely frustrating behavior until I decided to
> start digging...

To be more specific, the gcc/as wrapper is generated with:

ORIGINAL_AS_FOR_TARGET=""
ORIGINAL_LD_FOR_TARGET=""
ORIGINAL_PLUGIN_LD_FOR_TARGET=""
ORIGINAL_NM_FOR_TARGET=""

Which causes the building of libgcc to fail later on at gcc/as line 83 with a
message about "exec: not found"


-- 


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


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

end of thread, other threads:[~2022-12-02  6:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-43301-4@http.gcc.gnu.org/bugzilla/>
2022-05-24 15:04 ` [Bug bootstrap/43301] top-level configure script ignores ---with-build-time-tools egallager at gcc dot gnu.org
2022-07-31 20:58 ` egallager at gcc dot gnu.org
2022-08-02 23:05 ` iains at gcc dot gnu.org
2022-08-04  2:20 ` egallager at gcc dot gnu.org
2022-12-02  6:27 ` egallager at gcc dot gnu.org
2010-03-09  1:00 [Bug bootstrap/43301] New: " scovich at gmail dot com
2010-03-09  1:04 ` [Bug bootstrap/43301] " scovich at gmail dot com

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