On 2015-07-10, Jan Vlach <ja...@volny.cz> wrote: > after countless cpu cycles on my little Atom and running out of disk > space 3 times I'm getting: > > error: inline assembly requires more > registers than available > > Does this mean that I need different CPU to get this compiled? I'm out > of ideas at this point ... hit with a cluestick appreciated, so I can > get further ...
You might be able to get it built by adding -fno-pie to the compiler flags. Or -fomit-frame-pointer may also let it build, though it may hinder debugging. The problem isn't your cpu model, rather that i386 is rather short on registers.