Make OpenJPEG with 4 job slots - ~2.2 times faster

This commit is contained in:
hugovk 2014-08-21 14:11:35 +03:00
parent 30680bb384
commit 4b8b91965a

View File

@ -11,9 +11,9 @@ rm -r openjpeg-2.1.0
tar -xvzf openjpeg-2.1.0.tar.gz
pushd openjpeg-2.1.0
pushd openjpeg-2.1.0
cmake -DCMAKE_INSTALL_PREFIX=/usr . && make && sudo make install
cmake -DCMAKE_INSTALL_PREFIX=/usr . && make -j 4 && sudo make -j 4 install
popd