|
Danilo Tuler escribió:
What can happen if I compile my application with lua statically linked, and load a lua module that is dynamically linked to lua.dll?
You will be in trouble.You will have two C runtimes, and the allocation arena will be different for each.
Should (or must) both be linked the same way?
You should, but I recommend you to do it in order to avoid problems. Regards, Daniel