public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
       [not found]     ` <CAH6eHdRfqegjidsvAka4RQHCWqPD1y0RBBrn4NHHT64fppJjmA@mail.gmail.com>
@ 2023-11-29 23:53       ` Jonny Grant
  2023-11-30  9:31         ` Jonathan Wakely
  0 siblings, 1 reply; 12+ messages in thread
From: Jonny Grant @ 2023-11-29 23:53 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: gcc-help



On 29/11/2023 15:55, Jonathan Wakely wrote:
> On Wed, 29 Nov 2023 at 14:44, Jonny Grant <jg@jguk.org> wrote:
>>
>>
>>
>> On 29/11/2023 13:05, Jonathan Wakely wrote:
>>> On Wed, 29 Nov 2023 at 12:59, Jonny Grant <jg@jguk.org> wrote:
>>>>
>>>> Hello
>>>>
>>>> Has anyone encountered this when compiling gcc from source? libgomp doesn't build due to xgcc missing
>>>>
>>>> I got latest git, did
>>>> ./configure --disable-multilib
>>>
>>> Don't build in the source directory: https://gcc.gnu.org/wiki/FAQ#configure
>>>
>>>> make html
>>>
>>> Try make all-gcc before make html.
>>
>>
>> Sure.
>>
>> It gets stuck on genmodes.cc
>>
>>
>>
>> ../gcc_doc/configure --prefix=/home/jonny/code/repos/gcc_tests/gcc_install --disable-multilib
> 
> This belongs on the gcc-help list, not here.
> 
> Are you sure you ran configure in an empty dir, not one you'd already
> fouled up with previous configurations or previous 'make html'
> commands?

May I ask if "make distclean" clean up the 24 files that are left as untracked files? "git status" shows them. Anyway, as you have suggested, I'll always run on a separate build dir.

My build dir worked after I removed these 3:

gcc/collect-ld
gcc/bconfig.h
gcc/auto-host.h


The full 24 I local files I removed. Sharing for completeness.
	gcc/Make-hooks
	gcc/ada/Makefile
	gcc/ada/gcc-interface/Makefile
	gcc/as
	gcc/auto-host.h
	gcc/bconfig.h
	gcc/collect-ld
	gcc/config.h
	gcc/configargs.h
	gcc/cs-bconfig.h
	gcc/cs-config.h
	gcc/cs-tm.h
	gcc/cs-tm_p.h
	gcc/cstamp-h
	gcc/dsymutil
	gcc/gcc-driver-name.h
	gcc/gcc-vers.texi
	gcc/m2/Make-maintainer
	gcc/m2/config-make
	gcc/nm
	gcc/option-includes.mk
	gcc/plugin-version.h
	gcc/tm.h
	gcc/tm_p.h


> You should start in a completely empty directory. And I assume
> ../gcc_doc is not the same directory as .

Yes, have gcc_build directory too. I'd expected "make distclean" to have been enough. But I'll always build from a separate directory now.

Kind regards
Jonny


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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-11-29 23:53       ` host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory Jonny Grant
@ 2023-11-30  9:31         ` Jonathan Wakely
  2023-12-04  0:34           ` Jonny Grant
  0 siblings, 1 reply; 12+ messages in thread
From: Jonathan Wakely @ 2023-11-30  9:31 UTC (permalink / raw)
  To: Jonny Grant; +Cc: gcc-help

[-- Attachment #1: Type: text/plain, Size: 2413 bytes --]

On Wed, 29 Nov 2023, 23:53 Jonny Grant, <jg@jguk.org> wrote:

>
>
> On 29/11/2023 15:55, Jonathan Wakely wrote:
> > On Wed, 29 Nov 2023 at 14:44, Jonny Grant <jg@jguk.org> wrote:
> >>
> >>
> >>
> >> On 29/11/2023 13:05, Jonathan Wakely wrote:
> >>> On Wed, 29 Nov 2023 at 12:59, Jonny Grant <jg@jguk.org> wrote:
> >>>>
> >>>> Hello
> >>>>
> >>>> Has anyone encountered this when compiling gcc from source? libgomp
> doesn't build due to xgcc missing
> >>>>
> >>>> I got latest git, did
> >>>> ./configure --disable-multilib
> >>>
> >>> Don't build in the source directory:
> https://gcc.gnu.org/wiki/FAQ#configure
> >>>
> >>>> make html
> >>>
> >>> Try make all-gcc before make html.
> >>
> >>
> >> Sure.
> >>
> >> It gets stuck on genmodes.cc
> >>
> >>
> >>
> >> ../gcc_doc/configure
> --prefix=/home/jonny/code/repos/gcc_tests/gcc_install --disable-multilib
> >
> > This belongs on the gcc-help list, not here.
> >
> > Are you sure you ran configure in an empty dir, not one you'd already
> > fouled up with previous configurations or previous 'make html'
> > commands?
>
> May I ask if "make distclean" clean up the 24 files that are left as
> untracked files? "git status" shows them. Anyway, as you have suggested,
> I'll always run on a separate build dir.
>
> My build dir worked after I removed these 3:
>
> gcc/collect-ld
> gcc/bconfig.h
> gcc/auto-host.h
>
>
> The full 24 I local files I removed. Sharing for completeness.
>         gcc/Make-hooks
>         gcc/ada/Makefile
>         gcc/ada/gcc-interface/Makefile
>         gcc/as
>         gcc/auto-host.h
>         gcc/bconfig.h
>         gcc/collect-ld
>         gcc/config.h
>         gcc/configargs.h
>         gcc/cs-bconfig.h
>         gcc/cs-config.h
>         gcc/cs-tm.h
>         gcc/cs-tm_p.h
>         gcc/cstamp-h
>         gcc/dsymutil
>         gcc/gcc-driver-name.h
>         gcc/gcc-vers.texi
>         gcc/m2/Make-maintainer
>         gcc/m2/config-make
>         gcc/nm
>         gcc/option-includes.mk
>         gcc/plugin-version.h
>         gcc/tm.h
>         gcc/tm_p.h
>
>
> > You should start in a completely empty directory. And I assume
> > ../gcc_doc is not the same directory as .
>
> Yes, have gcc_build directory too. I'd expected "make distclean" to have
> been enough. But I'll always build from a separate directory now.
>

Just remove the whole directory and start again in a clean one.

I'll add that to the FAQ.

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-11-30  9:31         ` Jonathan Wakely
@ 2023-12-04  0:34           ` Jonny Grant
  2023-12-04  4:38             ` Xi Ruoyao
  0 siblings, 1 reply; 12+ messages in thread
From: Jonny Grant @ 2023-12-04  0:34 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: gcc-help



On 30/11/2023 09:31, Jonathan Wakely wrote:
> 
> 
> On Wed, 29 Nov 2023, 23:53 Jonny Grant, <jg@jguk.org <mailto:jg@jguk.org>> wrote:
> 
> 
> 
>     On 29/11/2023 15:55, Jonathan Wakely wrote:
>     > On Wed, 29 Nov 2023 at 14:44, Jonny Grant <jg@jguk.org <mailto:jg@jguk.org>> wrote:
>     >>
>     >>
>     >>
>     >> On 29/11/2023 13:05, Jonathan Wakely wrote:
>     >>> On Wed, 29 Nov 2023 at 12:59, Jonny Grant <jg@jguk.org <mailto:jg@jguk.org>> wrote:
>     >>>>
>     >>>> Hello
>     >>>>
>     >>>> Has anyone encountered this when compiling gcc from source? libgomp doesn't build due to xgcc missing
>     >>>>
>     >>>> I got latest git, did
>     >>>> ./configure --disable-multilib
>     >>>
>     >>> Don't build in the source directory: https://gcc.gnu.org/wiki/FAQ#configure <https://gcc.gnu.org/wiki/FAQ#configure>
>     >>>
>     >>>> make html
>     >>>
>     >>> Try make all-gcc before make html.
>     >>
>     >>
>     >> Sure.
>     >>
>     >> It gets stuck on genmodes.cc
>     >>
>     >>
>     >>
>     >> ../gcc_doc/configure --prefix=/home/jonny/code/repos/gcc_tests/gcc_install --disable-multilib
>     >
>     > This belongs on the gcc-help list, not here.
>     >
>     > Are you sure you ran configure in an empty dir, not one you'd already
>     > fouled up with previous configurations or previous 'make html'
>     > commands?
> 
>     May I ask if "make distclean" clean up the 24 files that are left as untracked files? "git status" shows them. Anyway, as you have suggested, I'll always run on a separate build dir.
> 
>     My build dir worked after I removed these 3:
> 
>     gcc/collect-ld
>     gcc/bconfig.h
>     gcc/auto-host.h
> 
> 
>     The full 24 I local files I removed. Sharing for completeness.
>             gcc/Make-hooks
>             gcc/ada/Makefile
>             gcc/ada/gcc-interface/Makefile
>             gcc/as
>             gcc/auto-host.h
>             gcc/bconfig.h
>             gcc/collect-ld
>             gcc/config.h
>             gcc/configargs.h
>             gcc/cs-bconfig.h
>             gcc/cs-config.h
>             gcc/cs-tm.h
>             gcc/cs-tm_p.h
>             gcc/cstamp-h
>             gcc/dsymutil
>             gcc/gcc-driver-name.h
>             gcc/gcc-vers.texi
>             gcc/m2/Make-maintainer
>             gcc/m2/config-make
>             gcc/nm
>             gcc/option-includes.mk <http://option-includes.mk>
>             gcc/plugin-version.h
>             gcc/tm.h
>             gcc/tm_p.h
> 
> 
>     > You should start in a completely empty directory. And I assume
>     > ../gcc_doc is not the same directory as .
> 
>     Yes, have gcc_build directory too. I'd expected "make distclean" to have been enough. But I'll always build from a separate directory now.
> 
> 
> Just remove the whole directory and start again in a clean one.

Fair enough, I did that, it works now.

> I'll add that to the FAQ.

Is it this page?

https://gcc.gnu.org/install/configure.html

How about changing this line to clarify make just say building within the src tree does not work, and is unsupported?

Change from:
"First, we highly recommend that GCC be built into a separate directory"

To:
"First, we only support building GCC from a separate directory"

Kind regards, Jonny

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-04  0:34           ` Jonny Grant
@ 2023-12-04  4:38             ` Xi Ruoyao
  2023-12-04 10:44               ` Jonathan Wakely
  0 siblings, 1 reply; 12+ messages in thread
From: Xi Ruoyao @ 2023-12-04  4:38 UTC (permalink / raw)
  To: Jonny Grant, Jonathan Wakely; +Cc: gcc-help

On Mon, 2023-12-04 at 00:34 +0000, Jonny Grant wrote:
> Is it this page?
> 
> https://gcc.gnu.org/install/configure.html
> 
> How about changing this line to clarify make just say building within the src tree does not work, and is unsupported?
> 
> Change from:
> "First, we highly recommend that GCC be built into a separate directory"
> 
> To:
> "First, we only support building GCC from a separate directory"

This paragraph has been updated to:

First, we highly recommend that GCC be built into a separate directory
from the sources which does not reside within the source tree. This is
how we generally build GCC; building where objdir is a subdirectory of
srcdir should work as well; building where objdir == srcdir is
unsupported.

Richard told me using a new subdirectory in srcdir as objdir works fine
and *is* supported (i. e. if it somehow stops to work we'll fix).  But
objdir == srcdir has been broken for a long time and there is no
intention to make it "work".

The FAQ is a different page: https://gcc.gnu.org/wiki/FAQ#configure

-- 
Xi Ruoyao <xry111@xry111.site>
School of Aerospace Science and Technology, Xidian University

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-04  4:38             ` Xi Ruoyao
@ 2023-12-04 10:44               ` Jonathan Wakely
  2023-12-04 23:22                 ` Jonny Grant
  0 siblings, 1 reply; 12+ messages in thread
From: Jonathan Wakely @ 2023-12-04 10:44 UTC (permalink / raw)
  To: Xi Ruoyao; +Cc: Jonny Grant, gcc-help

[-- Attachment #1: Type: text/plain, Size: 1202 bytes --]

On Mon, 4 Dec 2023, 04:38 Xi Ruoyao, <xry111@xry111.site> wrote:

> On Mon, 2023-12-04 at 00:34 +0000, Jonny Grant wrote:
> > Is it this page?
> >
> > https://gcc.gnu.org/install/configure.html
> >
> > How about changing this line to clarify make just say building within
> the src tree does not work, and is unsupported?
> >
> > Change from:
> > "First, we highly recommend that GCC be built into a separate directory"
> >
> > To:
> > "First, we only support building GCC from a separate directory"
>
> This paragraph has been updated to:
>
> First, we highly recommend that GCC be built into a separate directory
> from the sources which does not reside within the source tree. This is
> how we generally build GCC; building where objdir is a subdirectory of
> srcdir should work as well; building where objdir == srcdir is
> unsupported.
>
> Richard told me using a new subdirectory in srcdir as objdir works fine
> and *is* supported (i. e. if it somehow stops to work we'll fix).  But
> objdir == srcdir has been broken for a long time and there is no
> intention to make it "work".
>
> The FAQ is a different page: https://gcc.gnu.org/wiki/FAQ#configure


i.e. the link I sent in my first reply.

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-04 10:44               ` Jonathan Wakely
@ 2023-12-04 23:22                 ` Jonny Grant
  2023-12-05  4:04                   ` Xi Ruoyao
  0 siblings, 1 reply; 12+ messages in thread
From: Jonny Grant @ 2023-12-04 23:22 UTC (permalink / raw)
  To: Jonathan Wakely, Xi Ruoyao; +Cc: gcc-help



On 04/12/2023 10:44, Jonathan Wakely wrote:
> 
> 
> On Mon, 4 Dec 2023, 04:38 Xi Ruoyao, <xry111@xry111.site> wrote:
> 
>     On Mon, 2023-12-04 at 00:34 +0000, Jonny Grant wrote:
>     > Is it this page?
>     >
>     > https://gcc.gnu.org/install/configure.html <https://gcc.gnu.org/install/configure.html>
>     >
>     > How about changing this line to clarify make just say building within the src tree does not work, and is unsupported?
>     >
>     > Change from:
>     > "First, we highly recommend that GCC be built into a separate directory"
>     >
>     > To:
>     > "First, we only support building GCC from a separate directory"
> 
>     This paragraph has been updated to:
> 
>     First, we highly recommend that GCC be built into a separate directory
>     from the sources which does not reside within the source tree. This is
>     how we generally build GCC; building where objdir is a subdirectory of
>     srcdir should work as well; building where objdir == srcdir is
>     unsupported.
> 
>     Richard told me using a new subdirectory in srcdir as objdir works fine
>     and *is* supported (i. e. if it somehow stops to work we'll fix).  But
>     objdir == srcdir has been broken for a long time and there is no
>     intention to make it "work".
> 
>     The FAQ is a different page: https://gcc.gnu.org/wiki/FAQ#configure <https://gcc.gnu.org/wiki/FAQ#configure>
> 
> 
> i.e. the link I sent in my first reply.
> 

Thank you and Xi for the link again.


I signed up for a wiki account, but I can't see an "edit" button - is there a step I need to follow? Wanted to make a spelling correction on that page "hellgrind".

I saw a spelling mistake on another page too.

Kind regards, Jonny




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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-04 23:22                 ` Jonny Grant
@ 2023-12-05  4:04                   ` Xi Ruoyao
  2023-12-05 14:44                     ` Jonny Grant
  0 siblings, 1 reply; 12+ messages in thread
From: Xi Ruoyao @ 2023-12-05  4:04 UTC (permalink / raw)
  To: Jonny Grant, Jonathan Wakely; +Cc: gcc-help

On Mon, 2023-12-04 at 23:22 +0000, Jonny Grant wrote:

/* snip */

> 
> 
> Thank you and Xi for the link again.
> 
> 
> I signed up for a wiki account, but I can't see an "edit" button - is
> there a step I need to follow? Wanted to make a spelling correction on
> that page "hellgrind".

https://gcc.gnu.org/wiki/EditorGroup


-- 
Xi Ruoyao <xry111@xry111.site>
School of Aerospace Science and Technology, Xidian University

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-05  4:04                   ` Xi Ruoyao
@ 2023-12-05 14:44                     ` Jonny Grant
  2023-12-05 14:49                       ` Jonathan Wakely
  0 siblings, 1 reply; 12+ messages in thread
From: Jonny Grant @ 2023-12-05 14:44 UTC (permalink / raw)
  To: Xi Ruoyao, Jonathan Wakely; +Cc: gcc-help



On 05/12/2023 04:04, Xi Ruoyao wrote:
> On Mon, 2023-12-04 at 23:22 +0000, Jonny Grant wrote:
> 
> /* snip */
> 
>>
>>
>> Thank you and Xi for the link again.
>>
>>
>> I signed up for a wiki account, but I can't see an "edit" button - is
>> there a step I need to follow? Wanted to make a spelling correction on
>> that page "hellgrind".
> 
> https://gcc.gnu.org/wiki/EditorGroup

I see, my username is JonnyGrant, I'm not on the list.

Could you change "hellgrind" -> "helgrind" ?
https://gcc.gnu.org/wiki/FAQ

The other change was "feed-back" -> "feedback"
https://gcc.gnu.org/wiki/Community

With kind regards
Jonny

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-05 14:44                     ` Jonny Grant
@ 2023-12-05 14:49                       ` Jonathan Wakely
  2023-12-06 21:48                         ` Jonny Grant
  0 siblings, 1 reply; 12+ messages in thread
From: Jonathan Wakely @ 2023-12-05 14:49 UTC (permalink / raw)
  To: Jonny Grant; +Cc: Xi Ruoyao, gcc-help

On Tue, 5 Dec 2023 at 14:44, Jonny Grant <jg@jguk.org> wrote:
>
>
>
> On 05/12/2023 04:04, Xi Ruoyao wrote:
> > On Mon, 2023-12-04 at 23:22 +0000, Jonny Grant wrote:
> >
> > /* snip */
> >
> >>
> >>
> >> Thank you and Xi for the link again.
> >>
> >>
> >> I signed up for a wiki account, but I can't see an "edit" button - is
> >> there a step I need to follow? Wanted to make a spelling correction on
> >> that page "hellgrind".
> >
> > https://gcc.gnu.org/wiki/EditorGroup
>
> I see, my username is JonnyGrant, I'm not on the list.
>
> Could you change "hellgrind" -> "helgrind" ?
> https://gcc.gnu.org/wiki/FAQ
>
> The other change was "feed-back" -> "feedback"
> https://gcc.gnu.org/wiki/Community


Both fixed, thanks!

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-05 14:49                       ` Jonathan Wakely
@ 2023-12-06 21:48                         ` Jonny Grant
  2023-12-07  0:17                           ` Jonathan Wakely
  0 siblings, 1 reply; 12+ messages in thread
From: Jonny Grant @ 2023-12-06 21:48 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: Xi Ruoyao, gcc-help



On 05/12/2023 14:49, Jonathan Wakely wrote:
> On Tue, 5 Dec 2023 at 14:44, Jonny Grant <jg@jguk.org> wrote:
>>
>>
>>
>> On 05/12/2023 04:04, Xi Ruoyao wrote:
>>> On Mon, 2023-12-04 at 23:22 +0000, Jonny Grant wrote:
>>>
>>> /* snip */
>>>
>>>>
>>>>
>>>> Thank you and Xi for the link again.
>>>>
>>>>
>>>> I signed up for a wiki account, but I can't see an "edit" button - is
>>>> there a step I need to follow? Wanted to make a spelling correction on
>>>> that page "hellgrind".
>>>
>>> https://gcc.gnu.org/wiki/EditorGroup
>>
>> I see, my username is JonnyGrant, I'm not on the list.
>>
>> Could you change "hellgrind" -> "helgrind" ?
>> https://gcc.gnu.org/wiki/FAQ
>>
>> The other change was "feed-back" -> "feedback"
>> https://gcc.gnu.org/wiki/Community
> 
> 
> Both fixed, thanks!

Great!

https://gcc.gnu.org/wiki/FAQ#configure

Current:
"Then make a peer gcc-build directory next to the GCC source code directory. This should be an empty directory before you start."

I suggest changing "peer" -> "separate" and "next to" -> "outside"

ie:
"Then make a separate gcc-build directory outside to the GCC source code directory. This should be an empty directory before you start."

I was thinking of submitting a patch to add a link to https://gcc.gnu.org/wiki/FAQ
to https://gcc.gnu.org/install/configure.html

Cheers, Jonny

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-06 21:48                         ` Jonny Grant
@ 2023-12-07  0:17                           ` Jonathan Wakely
  2023-12-07  9:47                             ` Jonny Grant
  0 siblings, 1 reply; 12+ messages in thread
From: Jonathan Wakely @ 2023-12-07  0:17 UTC (permalink / raw)
  To: Jonny Grant; +Cc: Xi Ruoyao, gcc-help

[-- Attachment #1: Type: text/plain, Size: 1663 bytes --]

On Wed, 6 Dec 2023, 21:49 Jonny Grant, <jg@jguk.org> wrote:

>
>
> On 05/12/2023 14:49, Jonathan Wakely wrote:
> > On Tue, 5 Dec 2023 at 14:44, Jonny Grant <jg@jguk.org> wrote:
> >>
> >>
> >>
> >> On 05/12/2023 04:04, Xi Ruoyao wrote:
> >>> On Mon, 2023-12-04 at 23:22 +0000, Jonny Grant wrote:
> >>>
> >>> /* snip */
> >>>
> >>>>
> >>>>
> >>>> Thank you and Xi for the link again.
> >>>>
> >>>>
> >>>> I signed up for a wiki account, but I can't see an "edit" button - is
> >>>> there a step I need to follow? Wanted to make a spelling correction on
> >>>> that page "hellgrind".
> >>>
> >>> https://gcc.gnu.org/wiki/EditorGroup
> >>
> >> I see, my username is JonnyGrant, I'm not on the list.
> >>
> >> Could you change "hellgrind" -> "helgrind" ?
> >> https://gcc.gnu.org/wiki/FAQ
> >>
> >> The other change was "feed-back" -> "feedback"
> >> https://gcc.gnu.org/wiki/Community
> >
> >
> > Both fixed, thanks!
>
> Great!
>
> https://gcc.gnu.org/wiki/FAQ#configure
>
> Current:
> "Then make a peer gcc-build directory next to the GCC source code
> directory. This should be an empty directory before you start."
>
> I suggest changing "peer" -> "separate" and "next to" -> "outside"
>
> ie:
> "Then make a separate gcc-build directory outside to the GCC source code
> directory.


It doesn't actually need to be outside the source directory. It can't be a
parent of the source directory though.

This should be an empty directory before you start."
>
> I was thinking of submitting a patch to add a link to
> https://gcc.gnu.org/wiki/FAQ
> to https://gcc.gnu.org/install/configure.html


I don't think the official/formal manual links to the informal wiki.


>

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

* Re: host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory
  2023-12-07  0:17                           ` Jonathan Wakely
@ 2023-12-07  9:47                             ` Jonny Grant
  0 siblings, 0 replies; 12+ messages in thread
From: Jonny Grant @ 2023-12-07  9:47 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: Xi Ruoyao, gcc-help



On 07/12/2023 00:17, Jonathan Wakely wrote:
> 
> 
> On Wed, 6 Dec 2023, 21:49 Jonny Grant, <jg@jguk.org <mailto:jg@jguk.org>> wrote:
> 
> 
> 
>     On 05/12/2023 14:49, Jonathan Wakely wrote:
>     > On Tue, 5 Dec 2023 at 14:44, Jonny Grant <jg@jguk.org <mailto:jg@jguk.org>> wrote:
>     >>
>     >>
>     >>
>     >> On 05/12/2023 04:04, Xi Ruoyao wrote:
>     >>> On Mon, 2023-12-04 at 23:22 +0000, Jonny Grant wrote:
>     >>>
>     >>> /* snip */
>     >>>
>     >>>>
>     >>>>
>     >>>> Thank you and Xi for the link again.
>     >>>>
>     >>>>
>     >>>> I signed up for a wiki account, but I can't see an "edit" button - is
>     >>>> there a step I need to follow? Wanted to make a spelling correction on
>     >>>> that page "hellgrind".
>     >>>
>     >>> https://gcc.gnu.org/wiki/EditorGroup <https://gcc.gnu.org/wiki/EditorGroup>
>     >>
>     >> I see, my username is JonnyGrant, I'm not on the list.
>     >>
>     >> Could you change "hellgrind" -> "helgrind" ?
>     >> https://gcc.gnu.org/wiki/FAQ <https://gcc.gnu.org/wiki/FAQ>
>     >>
>     >> The other change was "feed-back" -> "feedback"
>     >> https://gcc.gnu.org/wiki/Community <https://gcc.gnu.org/wiki/Community>
>     >
>     >
>     > Both fixed, thanks!
> 
>     Great!
> 
>     https://gcc.gnu.org/wiki/FAQ#configure <https://gcc.gnu.org/wiki/FAQ#configure>
> 
>     Current:
>     "Then make a peer gcc-build directory next to the GCC source code directory. This should be an empty directory before you start."
> 
>     I suggest changing "peer" -> "separate" and "next to" -> "outside"
> 
>     ie:
>     "Then make a separate gcc-build directory outside to the GCC source code directory.
> 
> 
> It doesn't actually need to be outside the source directory. It can't be a parent of the source directory though. 

Fair enough, so I just suggest removing the word "peer". I'll leave it with you.

Kind regards
Jonny

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

end of thread, other threads:[~2023-12-07  9:47 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <9eed991c-7def-440a-bb3b-96ea4f26a19e@jguk.org>
     [not found] ` <CAH6eHdQNRRQH09J_x+vUBF1WUXGEaVkBy+_gC8BWXZ3EkhKxFg@mail.gmail.com>
     [not found]   ` <8b1d2871-b1e1-4f6a-985a-a66d1b2fe40e@jguk.org>
     [not found]     ` <CAH6eHdRfqegjidsvAka4RQHCWqPD1y0RBBrn4NHHT64fppJjmA@mail.gmail.com>
2023-11-29 23:53       ` host-x86_64-pc-linux-gnu/gcc/xgcc: No such file or directory Jonny Grant
2023-11-30  9:31         ` Jonathan Wakely
2023-12-04  0:34           ` Jonny Grant
2023-12-04  4:38             ` Xi Ruoyao
2023-12-04 10:44               ` Jonathan Wakely
2023-12-04 23:22                 ` Jonny Grant
2023-12-05  4:04                   ` Xi Ruoyao
2023-12-05 14:44                     ` Jonny Grant
2023-12-05 14:49                       ` Jonathan Wakely
2023-12-06 21:48                         ` Jonny Grant
2023-12-07  0:17                           ` Jonathan Wakely
2023-12-07  9:47                             ` Jonny Grant

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