From: Richard Biener <richard.guenther@gmail.com>
To: Peter Damianov <peter0x44@disroot.org>
Cc: gcc-patches@gcc.gnu.org
Subject: Re: [PATCH v2 2/2] lto-wrapper: Truncate files using -truncate driver option [PR110710]
Date: Thu, 18 Apr 2024 08:27:14 +0200 [thread overview]
Message-ID: <CAFiYyc2+6nKGS6hmEptDS_we59rBqa7jBpUMZeL5ypW3ChkgJg@mail.gmail.com> (raw)
In-Reply-To: <20240418040912.6236-2-peter0x44@disroot.org>
On Thu, Apr 18, 2024 at 6:12 AM Peter Damianov <peter0x44@disroot.org> wrote:
>
> This commit changes the Makefiles generated by lto-wrapper to no longer use
> the "mv" and "touch" shell commands. These don't exist on Windows, so when the
> Makefile attempts to call them, it results in errors like:
> The system cannot find the file specified.
>
> This problem only manifested when calling gcc from cmd.exe, and having no
> sh.exe present on the PATH. The Windows port of GNU Make searches the PATH for
> an sh.exe, and uses it if present.
>
> I have tested this in environments with and without sh.exe on the PATH and
> confirmed it works as expected.
OK.
Thanks,
Richard.
> Signed-off-by: Peter Damianov <peter0x44@disroot.org>
> ---
> gcc/lto-wrapper.cc | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/gcc/lto-wrapper.cc b/gcc/lto-wrapper.cc
> index 02579951569..a36a59e6fb8 100644
> --- a/gcc/lto-wrapper.cc
> +++ b/gcc/lto-wrapper.cc
> @@ -2023,14 +2023,12 @@ cont:
> fprintf (mstream, "%s:\n\t@%s ", output_name, new_argv[0]);
> for (j = 1; new_argv[j] != NULL; ++j)
> fprintf (mstream, " '%s'", new_argv[j]);
> - fprintf (mstream, "\n");
> /* If we are not preserving the ltrans input files then
> truncate them as soon as we have processed it. This
> reduces temporary disk-space usage. */
> if (! save_temps)
> - fprintf (mstream, "\t@-touch -r \"%s\" \"%s.tem\" > /dev/null "
> - "2>&1 && mv \"%s.tem\" \"%s\"\n",
> - input_name, input_name, input_name, input_name);
> + fprintf (mstream, " '-truncate' '%s'", input_name);
> + fprintf (mstream, "\n");
> }
> else
> {
> --
> 2.39.2
>
next prev parent reply other threads:[~2024-04-18 6:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-18 4:09 [PATCH v2 1/2] Driver: Add new -truncate option Peter Damianov
2024-04-18 4:09 ` [PATCH v2 2/2] lto-wrapper: Truncate files using -truncate driver option [PR110710] Peter Damianov
2024-04-18 6:27 ` Richard Biener [this message]
2024-04-18 6:26 ` [PATCH v2 1/2] Driver: Add new -truncate option Richard Biener
2024-04-18 8:26 ` Peter0x44
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAFiYyc2+6nKGS6hmEptDS_we59rBqa7jBpUMZeL5ypW3ChkgJg@mail.gmail.com \
--to=richard.guenther@gmail.com \
--cc=gcc-patches@gcc.gnu.org \
--cc=peter0x44@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).