I decided to yay resolve-davinci but it takes a WHOLE DAY to build(Building CXX object). Why? I have Ryzen 7 1700x and its usage is only up to 25%
You must log in or register to comment.
- eric5949 ( @eric5949@lemmy.cloudaf.site ) English6•1 year ago
There’s a file, I can’t remember what it is but I have it written on a sticky note on my desk at home, where I edited the makeflag or something to use 10 threads instead of 2 (I have a r5 3600) so maybe you just aren’t using all your threads.
- fx_ ( @fxttr@feddit.de ) English6•1 year ago
We would need to have way more information when we should say you why. But my first guess would be that you’re only using one core.
- orsetto ( @orsetto@beehaw.org ) English9•1 year ago
I had the same problem the other day and yes, it was only using one core.
Turns out you just need to set
MAKEFLAGS="-j$(nproc)"
. I didn’t test it yet, but the arch wiki says soThank you!
- fx_ ( @fxttr@feddit.de ) English3•1 year ago
Yep.