-
-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible Enhacement Idea #126
Comments
This is open-source software, so feel free to experiment and implement what you suggest. |
Any idea where a good place to start would be? |
Here is a guess, first try to do this totally externally. If you can't, then describe what thing internally would make this work. In my opinion being able to describe in pseudo code how things would work would help. Pretend you are the computer you see x so you do y, and so on. But if you are a low-level kind of guy then |
If you check out the |
rocky tip is an epic one.. on the mindset to have when hacking up code.... very helpful to me. |
When I first look at a build to profile I normally find the box with the most cores on it and run /usr/bin/time -v make -j NumOfCPU
I then look at Percent of CPU this job got: in the output of time from the build command. If it is close to the number of cores I gave the make command then I know I can probably look into things like dist_cc or icecreamcc to get faster builds, but if I gave that thing 24 cores and it only got a 800% then things like dist_cc or icecreamcc aren't going to do any good because I couldn't even uses all the cores on my current box all the way.
It might be nice if remake could give us some data or stats on how busy the make job queue is during the build. Average Job Queue length, How much time it spent with a full job queue and maybe if it never hit the max number of jobs in the queue.
The text was updated successfully, but these errors were encountered: