vote up 7 vote down star
3

I just got a new quad core computer and noticed that nmake is only using 1 process.

I used to use make which had the switch -j4 for launching 4 processes. What is the nmake equivalent?

[edit] Based on the information below I have been able to add a command to my qmake project file:

QMAKE_CXXFLAGS += /MP

Which effectively did it for me. Many thanks.

flag

5 Answers

vote up 5 vote down check

According to MSDN, there's no such option for 'nmake'.

It is possible to get parallel compiles using the /MP option with the VC++ command line compiler:

> cl /MP a.cpp b.cpp c.cpp

However most makefiles don't put multiple source files into a single invocation of the compiler - it's far more common for the .cpp files to be compiled to .o files individually.

link|flag
Only not .o, but .obj. VC++ compilers generates .obj, GCC - .o, AFAIK – abatishchev Mar 2 at 12:22
vote up 3 vote down

Quick googling gives: http://msdn.microsoft.com/en-us/library/bb385193.aspx

link|flag
that's parallel compilation of multiple .cpp files in the same invocation of the compiler - not parallel building of multiple 'make' targets – Alnitak Mar 2 at 11:24
It's very interesting, how to switch on this switch in VS2008! I can't find it – abatishchev Mar 2 at 11:31
it's not an "nmake" option, it's a "c1" option (i.e. for use with the command line compiler) – Alnitak Mar 2 at 11:41
Yeap, cl.exe, so it must be possible to use in Visual Studio, as far as it calls it directly, I guess, not using nmake. Or I'm not right? – abatishchev Mar 2 at 12:23
Didn't Visual Studion use that switch by default? I remember it batch compiling files already. – MSalters Mar 3 at 12:57
show 1 more comment
vote up 3 vote down

QT have tool supposed for this http://qt.gitorious.org/qt-labs/jom

link|flag
Excellent find!! – Arno Setagaya Jun 28 at 17:18
vote up 1 vote down

Incredibuild claims to be able to run nmake builds on multiple cores / multiple machines. I don't have any experience of it.

link|flag
vote up 0 vote down

This doesn't work for normal makefiles, but there is a setting in Visual Studio 2005 that lets you build more than one .vcproj file at the same time (provided one isn't dependent on the other). Tools -> Options -> Projects and Solutions -> Build and Run -> X maximum number of parallel project builds.

link|flag

Your Answer

Get an OpenID
or

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