I am trying to do a build of gcc11 (on RHEL 7.6 which comes with 4.8.5 and no root access). When I run the following:
./configure --prefix=$HOME/gnu --enable-languages=c,c++
I get the response
configure: WARNING: unrecognized options: --enable-languages
When I go to make, it runs through all the languages and ultimately fails on the go portion (which I would love to turn off). Something about not supporting -fsplit-stack.
So the way I am trying to solve this error in the libgo portion is to edit the enable-languages which I cannot do. Why is this unrecognized and is there anything I can do downstream to convince it not to try to build the full list of languages?
EDIT
Thanks for the help so far I continue to explore what I have read. A couple of extra pieces of information I neglected to say:
- I am trying to do as explained on GNU Source Release Collection
- The whole goal of this is to be >= 5. I don't need 11, I just need one that will build an executable correctly. Compared with 7,8,9 and 10 I seemed to get closer to the end with 11. I need >=5 for a python library I am trying to install.