Page 1 of 1

Lua help

Posted: Tue Apr 21, 2009 6:47 pm
by Ewan
Well, yet again my linker's giving me crap. I've downloaded the source code for this tutorial: http://www.gamedev.net/reference/progra ... efault.asp (thanks M_D_K). I'm linking to lualib.lib and lualib_dbg.lib, and in my Search Directories I have lib and include, in compiler and linker respectively.

Running this

Code: Select all

#include <lua.h>

int main(int argc, char* argv[])
{
	lua_State* L = lua_open(0);
	lua_close(L);
	return 0;
}
gives me undefined references to both lua functions.
obj\Debug\main.o||In function `main':|
C:\Documents and Settings\Ewan\Desktop\Code Blocks\luatest\Lua\main.cpp|5|undefined reference to `lua_open(int)'|
C:\Documents and Settings\Ewan\Desktop\Code Blocks\luatest\Lua\main.cpp|6|undefined reference to `lua_close(lua_State*)'|
||=== Build finished: 2 errors, 0 warnings ===|
The guy in the tut says to use extern "C" around your includes but that just gives me a bunch of DIFFERENT errors..

Code: Select all

extern "C"
{
    #include <lua.h>
}

int main(int argc, char* argv[])
{
	lua_State* L = lua_open(0);
	lua_close(L);
	return 0;
}
||Info: resolving __iob by linking to __imp___iob |
||Info: resolving __pctype by linking to __imp___pctype |
||Info: resolving ___mb_cur_max by linking to __imp____mb_cur_max |
||warning: auto-importing has been activated without --enable-auto-import specified on the command line.|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
||Warning: .drectve `/DEFAULTLIB:"LIBC" /DEFAULTLIB:"OLDNAMES" ' unrecognized|
fu000001.o:(.idata$2+0xc)||undefined reference to `_libmsvcrt_a_iname'|
fu000004.o:(.idata$2+0xc)||undefined reference to `_libmsvcrt_a_iname'|
fu000005.o:(.idata$2+0xc)||undefined reference to `_libmsvcrt_a_iname'|
fu000006.o:(.idata$2+0xc)||undefined reference to `_libmsvcrt_a_iname'|
fu000008.o:(.idata$2+0xc)||undefined reference to `_libmsvcrt_a_iname'|
nmth000000.o:(.idata$4+0x0)||undefined reference to `__nm___iob'|
nmth000007.o:(.idata$4+0x0)||undefined reference to `__nm___pctype'|
nmth000017.o:(.idata$4+0x0)||undefined reference to `__nm____mb_cur_max'|
||=== Build finished: 8 errors, 18 warnings ===|
Any help would be greatly appreciated :)

Re: Lua help

Posted: Tue Apr 21, 2009 10:05 pm
by Joeyotrevor
You have to put quotes around lua.h instead of brackets.

Re: Lua help

Posted: Wed Apr 22, 2009 4:06 am
by Ewan
Joeyotrevor wrote:You have to put quotes around lua.h instead of brackets.
Thanks, I figured that out but now I get this:

Image

"The application has failed to start because MSVCR90.dll was not found. Re-installing the application may fix this problem."

Any clues? :x

Edit: I'm guessing it's something to do with the fact that I compiled the Lua libraries with VS, because when I downloaded them they were in VS project form..

Re: Lua help

Posted: Wed Apr 22, 2009 7:28 am
by dani93
You need the M$-C-Runtime-Library. Isn't it included with VS? Sorry, I can't give you further information cause I don't use VS (gcc ;) ). Maybe it is because you didn't create the project yourself. Look for the dll in the Windows-directory.
If you can't find it you can download it from here.
Or create a new project and copy the code.

Re: Lua help

Posted: Wed Apr 22, 2009 7:35 am
by Ewan
dani93 wrote:You need the M$-C-Runtime-Library. Isn't it included with VS? Sorry, I can't give you further information cause I don't use VS (gcc ;) ). Maybe it is because you didn't create the project yourself. Look for the dll in the Windows-directory.
If you can't find it you can download it from here.
Or create a new project and copy the code.
Thanks, I've now got the compiled libraries for Windows from the Lua site and it seems to be working fine.