Am 25.07.2017 um 12:53 schrieb alvinpenner:
previously, according to the instructions at:
https://inkscape.org/en/develop/getting-started/#building-inkscape-windows
I would execute the commands:
md build
cd build
cmake -G "MinGW Makefiles" ..
mingw32-make -j 2
mingw32-make install

Now it appears that the command 'mingw32-make -j 2' is redundant, and all
that is needed is the sequence:
md build
cd build
cmake -G "MinGW Makefiles" ..
mingw32-make install

I found this out by accident while trying to compile the 0.92.x branch
revision 84f9b04a from July 24 on Windows XP using devlibs and cmake. All
the source code got compiled twice using the original set of commands. When
I deleted the build directory and removed the redundant make command, it
compiled normally. The same appears to be true in trunk as well.

Alvin

Hi Alvin,

the command "mingw32-make -j 2" was always "optional":

Two notes:

Regards,
Eduard