Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucien <astrataro@gmail.com>2015-01-03 14:45:34 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-01-03 14:45:34 +0300
commitaaf68b50f81c717fa77858b0d47c2b0264c2ff09 (patch)
tree04c008584506e90157acae69ad9eb22d4aea9f2a /build_ffmpeg.sh
parent881f2ecfbd38bf48a078ed328873ea542a5f5e66 (diff)
Automatically detect build threads
Diffstat (limited to 'build_ffmpeg.sh')
-rw-r--r--build_ffmpeg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_ffmpeg.sh b/build_ffmpeg.sh
index eccc5617..b9cce174 100644
--- a/build_ffmpeg.sh
+++ b/build_ffmpeg.sh
@@ -111,7 +111,7 @@ configure() (
)
build() (
- make -j8
+ make -j$(($NUMBER_OF_PROCESSORS+1))
)
echo Building ffmpeg in GCC ${arch} Release config...