-
Notifications
You must be signed in to change notification settings - Fork 20
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
Find a way to parallelize compilation across different nodes #37
Comments
You should look at distcc: https://github.com/distcc/distcc, http://pointclouds.org/documentation/advanced/distcc.php. |
I'm not sure we need to parallelize a same winebuild (even though it would be extra interesting to provide on-demand builds) |
Then I think you should change the issue title. |
I think it was more about parallelizing several builds at the same time |
You mean launching x builds at the same time ? So that nodes/cores [1-a] do wine version 1, [a-b] wine version 2, etc ? Note it will be the same at the end if you use all your nodes for one build, and then go for the next one. |
In theory yes but I'm not sure if Wine really supports parallel building. I think there is something regarding this on WineHQ. |
You are already doing parallel building when doing make -j* (alone you only use the local cores). When using distcc (which seems to be some kind of wrapper around gcc), it seems you can also use other cpu in a network. So it is not really so much different. |
We are using clang, not gcc |
Works also with clang it seems. |
No description provided.
The text was updated successfully, but these errors were encountered: