On Fri, Apr 4, 2008 at 3:43 PM, Nico Weber <[EMAIL PROTECTED]> wrote:
> Have compiled both versions yourself or is gvim.exe the official build?
I compiled both myself. Same settings, same compiler (VC++ 9).
Optimization=MAXSPEED (with LTCG), processor=pentium4. Features
included: OLE, Python, Mbyte
> How are the results if you just do `gvim[-re].exe -u NONE -U NONE -c
> wq!`?
gvim.exe 0.279026812268
gvim-re.exe 0.263482935745
test.py
---
import os
from time import clock
clock()
for i in range(0, 10):
os.system('gvim.exe -u NONE -U NONE -c q')
t1 = clock()
for i in range(0, 10):
os.system('gvim-re.exe -u NONE -U NONE -c q')
t2 = clock()
print "gvim.exe", t1/10
print "gvim-re.exe", (t2-t1)/10
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---