[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Adding module+DLL to Lua for Windows (LfW)
- From: Mike Pall <mikelu-0912@...>
- Date: Wed, 9 Dec 2009 11:45:58 +0100
steve donovan wrote:
> Alas, but the MS compilers do give faster code than mingw, about
> 20-25% in my informal tests.
A good share of that is due to -fomit-frame-pointer being the
default in MSVC release mode, but not in MinGW. The other reason
is that MSVC with the highest optimization setting has better
heuristics than GCC -O3 (try -O2 plus selected -f options instead).
--Mike