Re: [PATCH] configure: Add -fno-ident when available

2019-07-11 Thread Daniel Kiper
On Thu, Jul 11, 2019 at 05:43:17PM +0200, Vladimir 'phcoder' Serbinenko wrote: > From 03707a618d13a67f947833a7752c97ce3dda55a6 Mon Sep 17 00:00:00 2001 > From: Vladimir Serbinenko > Date: Tue, 9 Jul 2019 17:46:25 +0200 > Subject: [PATCH] configure: Add -fno-ident when availa

Re: [PATCH] configure: Add -fno-ident when available

2019-07-11 Thread Vladimir 'phcoder' Serbinenko
On Thu, Jul 11, 2019 at 12:32 PM Daniel Kiper wrote: > > On Tue, Jul 09, 2019 at 05:52:58PM +0200, Vladimir 'phcoder' Serbinenko wrote: > > On mingw i386-pc without this option mingw generates a > > rdata$zzz symbol that is page-aligned and hence lzma_decompress no > > longer fits in its allocated

Re: [PATCH] configure: Add -fno-ident when available

2019-07-11 Thread Vladimir 'phcoder' Serbinenko
From 03707a618d13a67f947833a7752c97ce3dda55a6 Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Tue, 9 Jul 2019 17:46:25 +0200 Subject: [PATCH] configure: Add -fno-ident when available With mingw for i386-pc without this option mingw generates a rdata$zzz symbol that is page-aligned and

Re: [PATCH] configure: Add -fno-ident when available

2019-07-11 Thread Daniel Kiper
On Tue, Jul 09, 2019 at 05:52:58PM +0200, Vladimir 'phcoder' Serbinenko wrote: > On mingw i386-pc without this option mingw generates a > rdata$zzz symbol that is page-aligned and hence lzma_decompress no > longer fits in its allocated space. Out of curiosity, why is the size of lzma_decompress li

[PATCH] configure: Add -fno-ident when available

2019-07-09 Thread Vladimir 'phcoder' Serbinenko
On mingw i386-pc without this option mingw generates a rdata$zzz symbol that is page-aligned and hence lzma_decompress no longer fits in its allocated space. With mingw this also saves a bit of space in modules On other platforms we should already strip this, so no effect --- configure.ac | 23 +++