diff options
author | Alexey Neyman <stilor@att.net> | 2015-11-10 18:21:43 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2015-11-10 18:21:43 -0800 |
commit | f3e62e0c090aab6047037d3025de69bc8b5328f3 (patch) | |
tree | 086ba7eb4df6cf25b6e6b786fdfb9858539d639c /scripts | |
parent | bea0cde3051624261eff6e413a044161d581973a (diff) | |
download | crosstool-ng-f3e62e0c090aab6047037d3025de69bc8b5328f3.tar.gz crosstool-ng-f3e62e0c090aab6047037d3025de69bc8b5328f3.tar.bz2 crosstool-ng-f3e62e0c090aab6047037d3025de69bc8b5328f3.zip |
Disable parallel build of mingw-w64-crt.
Unfortunately, parallel build issue is not yet fixed in current
mingw-w64 sources.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/libc/mingw.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/build/libc/mingw.sh b/scripts/build/libc/mingw.sh index 26a00e09..19289dea 100644 --- a/scripts/build/libc/mingw.sh +++ b/scripts/build/libc/mingw.sh @@ -104,8 +104,11 @@ do_libc() { --build=${CT_BUILD} \ --host=${CT_TARGET} \ + # mingw-w64-crt has a missing dependency occasionally breaking the + # parallel build. See https://github.com/crosstool-ng/crosstool-ng/issues/246 + # Do not pass ${JOBSFLAGS} - build serially. CT_DoLog EXTRA "Building mingw-w64-crt" - CT_DoExecLog ALL make ${JOBSFLAGS} + CT_DoExecLog ALL make CT_DoLog EXTRA "Installing mingw-w64-crt" CT_DoExecLog ALL make install DESTDIR=${CT_SYSROOT_DIR} |