On 3/30/2017 6:51 PM, Jeff Pollard wrote: > > I'm trying to build machinekit from the 2017-02-12 version. I've gone > through the steps below, and at step 24 I encounter an error while compiling > emctask.cc. I read somewhere that adding a swap space might help, so I tried > to > add one, and it either didn't help, or I did it wrong. In any case, can > anyone > tell me if the steps I've taken below are either wrong, or if I'm missing any?
In addition to a swap space, you need to limit the number of simultaneous jobs spawned by make or you'll run out of memory and crash. Try: make -j1 ...or you can use the .travis directory and cross-build in a Docker VM on an x86 server if you've got the infrastructure handy. See a previous thread on the list for details. -- Charles Steinkuehler [email protected] -- website: http://www.machinekit.io blog: http://blog.machinekit.io github: https://github.com/machinekit --- You received this message because you are subscribed to the Google Groups "Machinekit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/machinekit. For more options, visit https://groups.google.com/d/optout.
