I was following this tutorial to see how to fix the undefined reference errors, and it adds -llua:
https://csl.name/post/lua-and-cpp/
Search found 4 matches
- Mon Jan 02, 2017 7:32 am
- Forum: Libraries and Tools
- Topic: GifCat -- Write GIFs in LOVE.
- Replies: 21
- Views: 23642
- Sun Jan 01, 2017 11:46 am
- Forum: Libraries and Tools
- Topic: GifCat -- Write GIFs in LOVE.
- Replies: 21
- Views: 23642
Re: GifCat -- Write GIFs in LOVE.
Without that linker, I get the same undefined reference errors that PixelPiledriver was getting.
- Thu Dec 29, 2016 7:52 am
- Forum: Libraries and Tools
- Topic: GifCat -- Write GIFs in LOVE.
- Replies: 21
- Views: 23642
Re: GifCat -- Write GIFs in LOVE.
Since colours don't work in <code>, I added capitalised comments of the changes I made in braces to this post. I'm also building using Python 3.5. I'll also note that exclusion of opt["link"] += " -lws2_32" makes no difference during the build. #!/usr/bin/python2.7 import os, sys...
- Mon Dec 26, 2016 7:43 am
- Forum: Libraries and Tools
- Topic: GifCat -- Write GIFs in LOVE.
- Replies: 21
- Views: 23642
Re: GifCat -- Write GIFs in LOVE.
Hi, I'd made the following modifications to build.py to get mingw to compile gifcatlib.dll on Windows: import os, sys, platform, string opt = { "compiler" : "gcc", "source" : "src/lua_bindings.c", "link" : "", "include" : "&q...