Search found 2 matches

by iconmaster
Sun Sep 09, 2012 7:59 pm
Forum: Support and Development
Topic: Help with external library inclusion
Replies: 12
Views: 8325

Re: Help with external library inclusion

Yes, LÖVE can load binaries. There are a few things to consider. You say the dynamic library is in a compressed archive. The OS will never load a binary out of a Zip and the LÖVE binary loader does not automatically extract it for you. It's necessary to write the library to an actual file with love...
by iconmaster
Sun Sep 09, 2012 12:16 am
Forum: Support and Development
Topic: Help with external library inclusion
Replies: 12
Views: 8325

Help with external library inclusion

I have, in my .love file, a library named 'gd.dll'. The first line of code in my program is gd = require "gd" This returns the error message that the library is not found. In the list of places it checked, it says no file was at '.\gd.dll', which happens to be exactly where gd.dll currentl...