Skip to content

Commit

Permalink
disable parallel make for mingw-crt
Browse files Browse the repository at this point in the history
  • Loading branch information
franzflasch committed Aug 6, 2023
1 parent 1176702 commit f45d5db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/mingw.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ function build_mingw_crt() {
mkdir -p "${BUILD_DIR}/build-mingw-crt"
cd "${BUILD_DIR}/build-mingw-crt" || die "build-mingw-crt folder does not exist!"
call_cmd "${SOURCES_DIR}/mingw-${MINGW}/configure" "${MINGW_CRT_CONFIGURATION[@]}"
call_cmd make "${JOBS}" || die "Error while building mingw-crt"

# Do not use parallel make here:
# https://sourceforge.net/p/mingw-w64/mailman/message/37635156/
call_cmd make || die "Error while building mingw-crt"
call_cmd make install || die "Error while installing mingw-crt"

set_build_state "${FUNCNAME[0]}"
Expand Down

0 comments on commit f45d5db

Please sign in to comment.