From a827158c818e4406e98e533d8e37f6b21bf90060 Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Sat, 18 Sep 2021 20:43:24 -0400 Subject: Only build target arch CRT libs --- mingw-w64-build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mingw-w64-build b/mingw-w64-build index 99cdd61..c908179 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -161,6 +161,9 @@ build() if [ "$arch" = "i686" ]; then local i686_dwarf2="--disable-sjlj-exceptions --with-dwarf2" + local crt_lib="--enable-lib32 --disable-lib64" + else + local crt_lib="--enable-lib64 --disable-lib32" fi create_dir "$bld_path/binutils" @@ -207,7 +210,7 @@ build() execute "($arch): configuring MinGW-w64 CRT" "" \ "$SRC_PATH/mingw-w64/mingw-w64-crt/configure" --build="$BUILD" \ --host="$host" --prefix="$prefix/$host" \ - --with-sysroot="$prefix/$host" + --with-sysroot="$prefix/$host" $crt_lib execute "($arch): building MinGW-w64 CRT" "" \ make -j $JOB_COUNT -- cgit v1.2.3