09-25-2020, 11:52 AM
(09-25-2020, 11:03 AM)Paulie420 Wrote: I have many many ARM computers, and a few lower-middle end ThinkPad systems. However, for everything 'pretty' or that needs horsepower, we use iMac Pro 27" setups... I have 2 of those in the house.
You could set up a build farm of these dockers if you wanted to try distributing compilation to multiple amd64 machines. The DISTCC_HOSTS environment variable can contain multiple host entries, separated by spaces, something like:
Code:
DISTCC_HOSTS="<ip1>:<port> <ip2>:<port> <ip3>:<port>"
See the distcc man page for more details on that environment variable. I think you can choose different distribution strategies and stuff.