Search found 3 matches
- Sat Jun 13, 2015 7:45 am
- Forum: Support and Development
- Topic: Can't build love-0.9.1 with lua-5.2.4 from source on gentoo
- Replies: 4
- Views: 4213
Re: Can't build love-0.9.1 with lua-5.2.4 from source on gen
So the lua_LIBS variable should contain the link flag for the library, not a -L flag. It also seems unlikely that that particular path is correct. Maybe it should be like this? lua_LIBS="-L/home/user/local/lib -llua" YES! The vampire was buried right here. lua_LIBS="-L/home/user/loca...
- Fri Jun 12, 2015 10:06 pm
- Forum: Support and Development
- Topic: Can't build love-0.9.1 with lua-5.2.4 from source on gentoo
- Replies: 4
- Views: 4213
Re: Can't build love-0.9.1 with lua-5.2.4 from source on gen
Well there's you problem, I never heard of this magical "" version. Try passing 5.2 as luaversion instead. lua_LIBS=-L/home/user/user/lib/ lua_CFLAGS=-I/home/user/local/include/ ./configure --prefix=/home/user/local/ --with-lua=lua --with-luaversion=5.2 finishes successful but with ... ch...
- Fri Jun 12, 2015 7:30 pm
- Forum: Support and Development
- Topic: Can't build love-0.9.1 with lua-5.2.4 from source on gentoo
- Replies: 4
- Views: 4213
Can't build love-0.9.1 with lua-5.2.4 from source on gentoo
Hello. There is a project which use love-0.9.1 and lua-5.2. There are no them in official gentoo's repos so I've decided to build it from source (in prefix of course). For prefix was used "/home/user/local/" All sources was taken from official sites. Firstly I've build lua. $ make linux $ ...