Re: [PATCH 7/8] gitlab: disable optimization and debug symbols in msys build

2023-08-01 Thread Daniel P . Berrangé
On Tue, Aug 01, 2023 at 08:44:02PM +0200, Thomas Huth wrote: > On 01/08/2023 15.04, Daniel P. Berrangé wrote: > > Building at -O2, adds 33% to the build time, over -O2. IOW a build that > > takes 45 minutes at -O0, takes 60 minutes at -O2. Turning off debug > > symbols drops it further, down to 38

Re: [PATCH 7/8] gitlab: disable optimization and debug symbols in msys build

2023-08-01 Thread Thomas Huth
On 01/08/2023 15.04, Daniel P. Berrangé wrote: Building at -O2, adds 33% to the build time, over -O2. IOW a build that takes 45 minutes at -O0, takes 60 minutes at -O2. Turning off debug symbols drops it further, down to 38 minutes. IOW, a "-O2 -g" build is 58% slower than a "-O0" build on msys

[PATCH 7/8] gitlab: disable optimization and debug symbols in msys build

2023-08-01 Thread Daniel P . Berrangé
Building at -O2, adds 33% to the build time, over -O2. IOW a build that takes 45 minutes at -O0, takes 60 minutes at -O2. Turning off debug symbols drops it further, down to 38 minutes. IOW, a "-O2 -g" build is 58% slower than a "-O0" build on msys in the gitlab CI windows shared runners. Signed-