[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#29299] [PATCH] build-system/go: Don't let Go executables refer to t
From: |
Ludovic Courtès |
Subject: |
[bug#29299] [PATCH] build-system/go: Don't let Go executables refer to the Go compiler. |
Date: |
Thu, 16 Nov 2017 11:50:23 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Heya,
Leo Famulari <address@hidden> skribis:
> On Tue, Nov 14, 2017 at 01:57:38PM -0500, Leo Famulari wrote:
>> On Tue, Nov 14, 2017 at 12:00:36PM -0500, Leo Famulari wrote:
>> > This is a naive adaptation of ((guix build utils)
>> > remove-store-references).
>> >
>> > It takes ~55 seconds to remove the references from Syncthing's
>> > executables (96 MiB) on an SSD. Any ideas about how to speed it up?
>>
>> I checked, and remove-store-references (aka nuke-refs) takes the same
>> amount of time.
>
> So, fold-port-matches reads the port one character at a time, IIUC (I
> don't really understand it).
>
> I think we don't need to do that in this case. We could instead do
> Boyer-Moore and skip 34 bytes + the length of %store-directory, which
> could speed things up a lot.
Indeed. Mark’s code in (guix build grafts) does this, perhaps that
would be a better source of inspiration.
But yeah, no need to wait for that optimization. :-)
Ludo’.