removed debug info in mingw-w64 32 bit to reduce compiler memory consumption (#310)

* removed debug info in mingw-w64 32.bit to reduce compiler memory consumption

* documented previous
This commit is contained in:
joaquintides
2025-04-13 09:17:20 +02:00
committed by GitHub
parent 3d2c63f744
commit 5417494fae

View File

@@ -146,6 +146,7 @@ environment:
- FLAVOR: MinGW-w64 (32 bit, C++11) - FLAVOR: MinGW-w64 (32 bit, C++11)
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin; ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin;
B2_CXXFLAGS: -g0 # Reduce compiler's memory consumption
B2_CXXSTD: 11 B2_CXXSTD: 11
B2_TOOLSET: gcc B2_TOOLSET: gcc
B2_ADDRESS_MODEL: 32 B2_ADDRESS_MODEL: 32
@@ -153,6 +154,7 @@ environment:
- FLAVOR: MinGW-w64 (32 bit, C++14) - FLAVOR: MinGW-w64 (32 bit, C++14)
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin; ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin;
B2_CXXFLAGS: -g0 # Reduce compiler's memory consumption
B2_CXXSTD: 14 B2_CXXSTD: 14
B2_TOOLSET: gcc B2_TOOLSET: gcc
B2_ADDRESS_MODEL: 32 B2_ADDRESS_MODEL: 32
@@ -160,6 +162,7 @@ environment:
- FLAVOR: MinGW-w64 (32 bit, C++17) - FLAVOR: MinGW-w64 (32 bit, C++17)
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin; ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin;
B2_CXXFLAGS: -g0 # Reduce compiler's memory consumption
B2_CXXSTD: 17 B2_CXXSTD: 17
B2_TOOLSET: gcc B2_TOOLSET: gcc
B2_ADDRESS_MODEL: 32 B2_ADDRESS_MODEL: 32
@@ -167,6 +170,7 @@ environment:
- FLAVOR: MinGW-w64 (32 bit, C++2a) - FLAVOR: MinGW-w64 (32 bit, C++2a)
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin; ADDPATH: C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin;
B2_CXXFLAGS: -g0 # Reduce compiler's memory consumption
B2_CXXSTD: 2a B2_CXXSTD: 2a
B2_TOOLSET: gcc B2_TOOLSET: gcc
B2_ADDRESS_MODEL: 32 B2_ADDRESS_MODEL: 32