lua
lua copied to clipboard
linking to DLL does not work because of "regular expressions"
I think there is a problem with linking to DLLs in lua.nim. There are links to shared libraries written as glob/regular expressions (e.g. lua(|5.1|5.0).dll).
When running compiled exe, it probably search for lua(|5.1|5.0).dll which does not exist on disk. When I changed it to lua5.1.dll in lua.nim it was running OK.