This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: Suggestion: Use -pipe by default
- To: <gcc-bugs at gcc dot gnu dot org>, Niels Möller <nisse at lysator dot liu dot se>
- Subject: Re: Suggestion: Use -pipe by default
- From: "Tim Prince" <tprince at computer dot org>
- Date: Fri, 6 Oct 2000 06:34:28 -0700
- References: <nn3diarugs.fsf@sture.lysator.liu.se>
I used to use Irix 6, where -pipe isn't supported. If someone wanted to
find a way to configure -pipe by default for those systems where it works,
we might try it. If it's known to work on all gas systems (at least for
piping compiler to gas), it might be on by default for those, since the
configure checks for gas already. There are a number of cases to check.
----- Original Message -----
From: "Niels Möller" <nisse@lysator.liu.se>
To: <gcc-bugs@gcc.gnu.org>
Sent: Friday, October 06, 2000 6:05 AM
Subject: Suggestion: Use -pipe by default
> The gcc manual says about -pipe:
>
> `-pipe'
> Use pipes rather than temporary files for communication between
> the various stages of compilation. This fails to work on some
> systems where the assembler is unable to read from a pipe; but
> the GNU assembler has no trouble.
>
> Are there still many systems where -pipe doesn't work? I believe it
> would be a good thing to use -pipe by default. I feel a little uneasy
> about random use of files in /tmp, and in gcc's case it seems
> unnecessary. Perhaps one can use some configure or runtime test to
> detect the situations where -pipe is known not to work?
>
> Regards,
> /Niels