[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: static linked lua with loaded modules
- From: "John Dunn" <John_Dunn@...>
- Date: Wed, 5 Dec 2007 12:12:03 -0800
> 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.