New programming languages

Moderators: None (Apply to moderate this forum)
Number of threads: 113
Number of posts: 331

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
I have a problem with compiling c source with lua.. Posted by begnur on 9 Jul 2010 at 9:48 AM
I use debian lenny. installed liblua50-dev and other libraries with synaptic..
write basic c program called init.c (from tutorials)..
#include <stdio.h>

#include "lua.h"
#include "lualib.h"
#include "luaxlib.h"



int main(int argc, char *argv[])
{
	lua_State* L;
	L = lua_open();
	
	lua_baselibopen(L);
	luaopen_table(L);
	luaopen_io(L);
	luaopen_string(L);
	luaopen_string(L);
	luaopen_math(L);

	lua_close(L);

	return 0;
}



compiled with

gcc -o init -Wall 'lua-config --include --libs' init.c

but I get the following errors can you help me what is the problem ..

gcc: lua-config --include --libs: No such file or directory
init.c:3:17: error: lua.h: No such file or directory
init.c:4:20: error: lualib.h: No such file or directory
init.c:5:21: error: luaxlib.h: No such file or directory
init.c: In function ‘main’:
init.c:11: error: ‘lua_State’ undeclared (first use in this function)
init.c:11: error: (Each undeclared identifier is reported only once
init.c:11: error: for each function it appears in.)
init.c:11: error: ‘L’ undeclared (first use in this function)
init.c:12: warning: implicit declaration of function ‘lua_open’
init.c:14: warning: implicit declaration of function ‘lua_baselibopen’
init.c:15: warning: implicit declaration of function ‘luaopen_table’
init.c:16: warning: implicit declaration of function ‘luaopen_io’
init.c:17: warning: implicit declaration of function ‘luaopen_string’
init.c:19: warning: implicit declaration of function ‘luaopen_math’
init.c:21: warning: implicit declaration of function ‘lua_close’

Report
Re: I have a problem with compiling c source with lua.. Posted by anthrax11 on 12 Jul 2010 at 6:04 AM
Try lua-config50 instead of lua-config.



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.