summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2023-03-13 23:57:50 +0000
committerVincent Sanders <vince@kyllikki.org>2023-03-13 23:57:50 +0000
commit78871a0b9d36f79e00ddf84f73dadeff3f2687da (patch)
treed553549fe63974586d308788f5f8732fcac20538
parent16a57c03b15a61eac19edb5190cdc6fc4cefd9eb (diff)
downloadtoolchains-78871a0b9d36f79e00ddf84f73dadeff3f2687da.tar.gz
toolchains-78871a0b9d36f79e00ddf84f73dadeff3f2687da.tar.bz2
Chang parallelism limit to something teh worker can achive
-rw-r--r--i686-w64-mingw32/Makefile2
-rw-r--r--x86_64-w64-mingw32/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/i686-w64-mingw32/Makefile b/i686-w64-mingw32/Makefile
index cf45022..5d35249 100644
--- a/i686-w64-mingw32/Makefile
+++ b/i686-w64-mingw32/Makefile
@@ -61,7 +61,7 @@ $(BUILDSTEPS)/gcc-core.d: $(BUILDSTEPS)/srcdir-step3.d $(BUILDSTEPS)/binutils.d
--prefix=$(PREFIX) --target=$(TARGET_NAME) \
--enable-languages=c,c++ --with-system-zlib --disable-multilib \
--enable-shared --enable-fully-dynamic-string
- cd $(BUILDDIR)/gcc && PATH="$(PREFIX)/bin:$(PATH)" make all-gcc -j
+ cd $(BUILDDIR)/gcc && PATH="$(PREFIX)/bin:$(PATH)" make all-gcc -j 8
cd $(BUILDDIR)/gcc && PATH="$(PREFIX)/bin:$(PATH)" make install-gcc
touch $@
diff --git a/x86_64-w64-mingw32/Makefile b/x86_64-w64-mingw32/Makefile
index a7e7edc..154be8f 100644
--- a/x86_64-w64-mingw32/Makefile
+++ b/x86_64-w64-mingw32/Makefile
@@ -61,7 +61,7 @@ $(BUILDSTEPS)/gcc-core.d: $(BUILDSTEPS)/srcdir-step3.d $(BUILDSTEPS)/binutils.d
--prefix=$(PREFIX) --target=$(TARGET_NAME) \
--enable-languages=c,c++ --with-system-zlib --disable-multilib \
--enable-shared --enable-fully-dynamic-string
- cd $(BUILDDIR)/gcc && PATH="$(PREFIX)/bin:$(PATH)" make all-gcc -j 4
+ cd $(BUILDDIR)/gcc && PATH="$(PREFIX)/bin:$(PATH)" make all-gcc -j 8
cd $(BUILDDIR)/gcc && PATH="$(PREFIX)/bin:$(PATH)" make install-gcc
touch $@