Re: Compiling with VC2012

2013-08-13 Thread Mario Brandt
How it worked: open zlib\win32\Makefile.msc replace line 31 with ASFLAGS = -coff -Zi -safeseh $(LOC) Thanks for the tip! Mario On 13 August 2013 17:18, Mario Brandt wrote: > Hi Bert, > > how can I enable that in zlib? > > > Cheers > Mario > > On 13 August 2013 13:57, Bert Huijben wrote: > >

Re: Compiling with VC2012

2013-08-13 Thread Mario Brandt
Hi Bert, how can I enable that in zlib? Cheers Mario On 13 August 2013 13:57, Bert Huijben wrote: > VS2012 tries to enable table based exception handling, but your zlib > was compiled without the flags to enable that. You can also disable > this mode in the linker/compiler at a very small perf

RE: Compiling with VC2012

2013-08-13 Thread Bert Huijben
VS2012 tries to enable table based exception handling, but your zlib was compiled without the flags to enable that. You can also disable this mode in the linker/compiler at a very small performance and security cost. Vs2008 didn't warn for this as it was very common to fail this test at the time i