diff options
author | Thomas Perl <m@thp.io> | 2023-02-02 08:24:12 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-06-28 14:22:49 +0200 |
commit | 97b2c64727d7aaab9b762731041ba347f83a1a8c (patch) | |
tree | f015eeae68db5ea318fbb92fa45d47416d950a24 | |
parent | 906e5410b5b6222882fa0aaddbb88d012aef6914 (diff) |
Add support for i586 builds
-rwxr-xr-x | mingw-w64-build | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/mingw-w64-build b/mingw-w64-build index 3f43a1c..82f7e70 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -36,6 +36,7 @@ ENABLE_THREADS="--enable-threads=posix" JOB_COUNT=$(($(getconf _NPROCESSORS_ONLN) + 2)) +BUILD_I586=0 BUILD_I686=0 BUILD_X86_64=0 @@ -48,7 +49,8 @@ Usage: $0 [options] <arch>... Archs: - i686 Windows 32-bit + i586 Windows 32-bit for old CPUs (Intel Pentium (MMX), AMD K5, K6, K6-2, K6-III) + i686 Windows 32-bit (Intel P6 [Pentium Pro], AMD K7 and newer) x86_64 Windows 64-bit Options: @@ -211,10 +213,11 @@ build() remove_path "$prefix" fi - if [ "$arch" = "i686" ]; then - local i686_dwarf2="--disable-sjlj-exceptions --with-dwarf2" + if [ "$arch" = "i586" ] || [ "$arch" = "i686" ]; then + local x86_dwarf2="--disable-sjlj-exceptions --with-dwarf2" local crt_lib="--enable-lib32 --disable-lib64" else + local x86_dwarf2="" local crt_lib="--enable-lib64 --disable-lib32" fi @@ -250,7 +253,7 @@ build() "$SRC_PATH/gcc/configure" --target="$host" --disable-shared \ --enable-static --disable-multilib --prefix="$prefix" \ --enable-languages=c,c++ --disable-nls $ENABLE_THREADS \ - $i686_dwarf2 + $x86_dwarf2 execute "($arch): building GCC (all-gcc)" "" \ make -j $JOB_COUNT all-gcc @@ -419,6 +422,9 @@ while :; do arg_error "'--tarball' requires a non-empty option argument" fi ;; + i586) + BUILD_I586=1 + ;; i686) BUILD_I686=1 ;; @@ -442,7 +448,7 @@ while :; do shift done -NUM_BUILDS=$((BUILD_I686 + BUILD_X86_64)) +NUM_BUILDS=$((BUILD_I586 + BUILD_I686 + BUILD_X86_64)) if [ "$NUM_BUILDS" -eq 0 ]; then arg_error "no ARCH was specified" fi @@ -495,9 +501,11 @@ BLD_PATH="$ROOT_PATH/bld" LOG_FILE="$ROOT_PATH/build.log" if [ "$PREFIX" ]; then + I586_PREFIX="$PREFIX" I686_PREFIX="$PREFIX" X86_64_PREFIX="$PREFIX" else + I586_PREFIX="$ROOT_PATH/i586" I686_PREFIX="$ROOT_PATH/i686" X86_64_PREFIX="$ROOT_PATH/x86_64" fi @@ -526,6 +534,10 @@ export CFLAGS="-g0" export CXXFLAGS="-g0" export LDFLAGS="-s" +if [ "$BUILD_I586" -eq 1 ]; then + build i586 "$I586_PREFIX" +fi + if [ "$BUILD_I686" ]; then build i686 "$I686_PREFIX" fi @@ -549,6 +561,9 @@ EOF chmod +x ${ROOT_PATH}/activate.sh if [ ! -z ${TARBALL} ]; then + if [ "$BUILD_I586" ]; then + TAR_DIRS="i586" + fi if [ "$BUILD_I686" ]; then TAR_DIRS="i686" fi |