File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Autotooled version of the opensource Intel media sdk dispatcher.
1313```
1414autoreconf -i
1515./configure --prefix=/usr
16- make -j 18
16+ make -j$(nproc)
1717make install
1818```
1919
@@ -34,15 +34,15 @@ This set of build systems let you easily build a mingw-w64 one.
3434``` sh
3535autoreconf -i
3636./configure --host=x86_64-w64-mingw32
37- make -j
37+ make -j$( nproc )
3838make install DESTDIR=/usr/x86_64-w64-mingw32
3939```
4040
4141### Building on a native mingw-w64 environment
4242``` sh
4343autoreconf -i
4444./configure --prefix=/mingw64
45- make -j 8 install
45+ make -j$( nproc ) install
4646```
4747
4848** NOTE** : Make sure you set the ` prefix ` to the correct one for your environment otherwise it will fail to link.
You can’t perform that action at this time.
0 commit comments