tags:

views:

136

answers:

2

Hi all,

I'm trying to setup a parallel CMake-based build for my source tree, but when I issue

$ cmake .
$ make -j2

I get a jobserver unavailable: using -j1. Add '+' to parent make rule warning. Does anyone have an idea if it is possible to fix it somehow?

A: 

Just from googling it looks like you're using distcc (e.g. here)

dimba
No, I don't. I guess the solution to my problem lies somewhere deep in CMake, i.e. I need to convince it to pass the right parameters to the make.
Roman D
you can run "VERBOSE=1 make' to see what make exactly executing
dimba
A: 

looks like this is not a cmake issue but make only.

Denis Barmenkov