vote up 3 vote down star
2

I have this large C++ project that I need to build on a platform that does not have a parallel make (like make -j on Linux). The server has 6 CPU's and I want to do a parallel build manually.

I can generate a task list like this for about 300 object files. I use the Makefile for the dependency checks and incremental build:

make -f Makefile obj1.o

make -f Makefile obj2.o

make -f Makefile obj3.o ...

How would I execute these tasks in parallel with no more then 6 tasks running at a time using Ksh and Perl? (Java or Python are not available :-( )

flag

Are there dependencies between the tasks? – alex Oct 29 '08 at 20:45
what platform are you running? – warren Oct 29 '08 at 20:50
There are no dependencies. I would do the link later and separately. This is an older HP-UX box. (For porting and 64 bit testing mostly main development environment is Linux.) – James Dean Oct 29 '08 at 21:10
Any reason you couldn't simply install the latest GNU make? – Sherm Pendley Oct 30 '08 at 15:41

4 Answers

vote up 5 vote down check

In Perl the you should look at Parallel::ForkManager. You could do something like this:

my @make_obj = qw(
  obj1.o
  obj2.o
  obj3.o
  ...
);

my $fm = $pm = new Parallel::ForkManager(6);
foreach my $obj (@make_obj) {
  $fm->start and next;
  system("make -f Makefile $make_obj");
  $fm->finish();
}
link|flag
vote up 3 vote down

An alternative to forking is to run each make in its own thread.

use threads;

my $max_threads = 5;

my @targets = qw(obj1.o obj2.o obj3.o ...);
while(@targets) {
    my $num_threads = threads->list(threads::running);
    if( $num_threads < $max_threads ) {
        my $target = shift @targets;
        threads->create(sub { return system "make $target" });
    }
}

I am unfortunately hand waving around two bits. First is making the loop wait quiescently until a thread finishes. I believe this is accomplished using threads::shared's cond_wait() and a semaphore variable.

The second is getting the return value from make, so you know if something failed and to halt the build. To do that you'd have to join() each thread to get the result of system(), the process' exit code.

Sorry for the hasty reply. Hopefully the community will fill in the rest.

link|flag
vote up 3 vote down

Does gnu make on HPUX not have the -j flag?

http://hpux.connect.org.uk/hppd/hpux/Gnu/make-3.81/

link|flag
vote up -1 vote down

If the OS is properly handling inter-processor communication and scheduling, you should just be able to throw all the makes into backgrounded processes, as long as there are no interdependencies.

If they're all independent, I would issues a series of commands like this:

make -f Makefile obj1.o &
make -f Makefile obj2.o &
...
make -f Makefile objn.o &

With dependencies, string them with the double ampersand (&&) so that the dependent item doesn't start until its 'parent' has finished.

I realize that's not quite the solution you requested, but it's how I would attack the problem :)

link|flag
I think the os would barf it I started 500 builds at the same time... – James Dean Oct 29 '08 at 21:08
it might at that - just making a possible suggestion :) – warren Oct 30 '08 at 13:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.