lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Stefan Sandberg
> w8, does that mean that you're linking dynamically to crt, 
> but bringing in stuff that's statically linked to crt?
> That's pretty much exactly what I just said, no?
> 
> (even if that would work well in theory, it doesn't 'save you 
> files', it just adds the crt to each of them for no particular reason)

No, everything is dynamically linked to the crt. It saves me files since
my app can be a single .exe and not an .exe with a bunch of support
DLLs. That said, if it doesn't work well then I won't be doing it.