diff options
author | Jan Schmidt <jan@centricular.com> | 2018-03-07 22:10:37 +1100 |
---|---|---|
committer | Jan Schmidt <jan@centricular.com> | 2018-03-07 22:11:58 +1100 |
commit | 50bbdda0f5b7987a63b6326713b8e9870eb4f7d0 (patch) | |
tree | e97908121bb339394baa1c1ecd95cd4bdd5d4667 /config | |
parent | f65786dc9184af9b401f8a284634952f39d35247 (diff) |
config/win{32|64}.cbc: Disable parallel builds
The make in mingw is very fragile when doing parallel
builds and frequently hangs. Builds take longer without,
but that's better than randomly stopping.
Diffstat (limited to 'config')
-rw-r--r-- | config/win32.cbc | 1 | ||||
-rw-r--r-- | config/win64.cbc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/config/win32.cbc b/config/win32.cbc index 16012585..4a348d85 100644 --- a/config/win32.cbc +++ b/config/win32.cbc @@ -1,3 +1,4 @@ prefix='c:/gstreamer/1.0/x86' from cerbero.config import Architecture target_arch = Architecture.X86 +allow_parallel_build = False diff --git a/config/win64.cbc b/config/win64.cbc index 1a609234..952345ae 100644 --- a/config/win64.cbc +++ b/config/win64.cbc @@ -2,3 +2,4 @@ prefix='c:/gstreamer/1.0/x86_64' from cerbero.config import Architecture arch = Architecture.X86_64 target_arch = Architecture.X86_64 +allow_parallel_build = False |