Search found 4 matches

by GodotMisogi
Mon Jan 02, 2017 7:32 am
Forum: Libraries and Tools
Topic: GifCat -- Write GIFs in LOVE.
Replies: 21
Views: 20419

Re: GifCat -- Write GIFs in LOVE.

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/
by GodotMisogi
Sun Jan 01, 2017 11:46 am
Forum: Libraries and Tools
Topic: GifCat -- Write GIFs in LOVE.
Replies: 21
Views: 20419

Re: GifCat -- Write GIFs in LOVE.

Without that linker, I get the same undefined reference errors that PixelPiledriver was getting.
by GodotMisogi
Thu Dec 29, 2016 7:52 am
Forum: Libraries and Tools
Topic: GifCat -- Write GIFs in LOVE.
Replies: 21
Views: 20419

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...
by GodotMisogi
Mon Dec 26, 2016 7:43 am
Forum: Libraries and Tools
Topic: GifCat -- Write GIFs in LOVE.
Replies: 21
Views: 20419

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...