Skip to content

Commit 1368780

Browse files
authored
Merge pull request #39 from Brainiarc7/patch-1
Use nproc in the make step
2 parents 3f7a978 + f2619cb commit 1368780

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Autotooled version of the opensource Intel media sdk dispatcher.
1313
```
1414
autoreconf -i
1515
./configure --prefix=/usr
16-
make -j 18
16+
make -j$(nproc)
1717
make install
1818
```
1919

@@ -34,15 +34,15 @@ This set of build systems let you easily build a mingw-w64 one.
3434
``` sh
3535
autoreconf -i
3636
./configure --host=x86_64-w64-mingw32
37-
make -j
37+
make -j$(nproc)
3838
make install DESTDIR=/usr/x86_64-w64-mingw32
3939
```
4040

4141
### Building on a native mingw-w64 environment
4242
``` sh
4343
autoreconf -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.

0 commit comments

Comments
 (0)