Hi Ludovic,
Ludovic Courtès <ludo@gnu.org> writes:
Toggle quote (7 lines)
> Mark H Weaver <mhw@netris.org> skribis:>>> Sometimes when compiling a package with --verbosity=1, some parts of the>> compile output leak through. For example, see the transcript below.>> Weird.
FWIW, a few observations, possibly relevant:
(1) Each chunk of leaked output begins with 1 or 2 Unicode Replacement characters (U+FFFD). In the transcript I provided, the first leak began with 1 replacement char, and all later leaks began with 2.
(2) The replacement characters are immediately followed by "@ build-log 30033 4096\n", and that string is also sprinkled throughout the leaked output, with approximately ~4060-4070 characters of leaked output between each occurrence of "@ build-log 30033 4096\n".
Toggle quote (2 lines)
> What’s the value of --max-jobs?
I'm not sure, how do I find out? I don't specify it in my OSconfiguration, and it's not on the command line of 'guix-daemon'.Here's the relevant portion of my OS config:
(modify-services %base-services (guix-service-type config => (guix-configuration (inherit config) (use-substitutes? #f) (authorized-keys '()) (substitute-urls '()) (extra-options '("--gc-keep-derivations=yes" "--gc-keep-outputs=yes")))))
I guess it's probably 2, because that's how many cores are in thismachine (Thinkpad X200), and 2 is also the number of GCC processes thatI typically see when building packages on this machine.
Toggle quote (2 lines)
> Is offloading enabled?
No. In addition to the above configuration, my /etc/guix/acl alsocontains simply "(acl)".
Toggle quote (2 lines)
> Presumably both the client and daemon are recent, right?
Yes, this machine is rarely more than a week out-of-date w.r.t. our'master' branch.
Thanks, Mark