Search found 15 matches

by DOMINOSRULZ
Mon Apr 18, 2022 5:04 pm
Forum: Support and Development
Topic: Shared object files and porting to other systems
Replies: 0
Views: 8988

Shared object files and porting to other systems

I have a question. I am thinking about porting a game over to the 3DS using the lovebrew tool: https://lovebrew.org/#/ The game uses a library using shared object files to give the game svg graphics. I assume that the .so shared object files will be a significant issue in the process. Is there a way...
by DOMINOSRULZ
Mon Apr 18, 2022 7:28 am
Forum: Support and Development
Topic: Having an issue with share dobject files.
Replies: 6
Views: 6171

Re: Having an issue with share dobject files.

Thanks! I have fixed the issue at hand, and everything is working perfectly. i have a question. I am thinking about porting the game over to the 3DS using the lovebrew tool: https://lovebrew.org/#/ I assume that the .so shard object files will be a significant issue in the process. Is there a way to...
by DOMINOSRULZ
Thu Mar 24, 2022 6:55 am
Forum: Support and Development
Topic: Having an issue with share dobject files.
Replies: 6
Views: 6171

Re: Having an issue with share dobject files.

I tried to do that, but still gives me errors: I did it like this: Before love.load() local c = love.filesystem.read('tove/libTove.so') local c2 = love.filesystem.read('tove/libTove.dll') local c3 = love.filesystem.read('tove/libTove.dylib') local c4 = love.filesystem.read('tove/init.lua') love.file...
by DOMINOSRULZ
Thu Mar 24, 2022 1:52 am
Forum: Support and Development
Topic: Having an issue with share dobject files.
Replies: 6
Views: 6171

Re: Having an issue with share dobject files.

Is there a psuedocode or code example you could give? I have actually tried doing the first solution, but to no avail.
by DOMINOSRULZ
Wed Mar 23, 2022 9:24 am
Forum: Support and Development
Topic: Having an issue with share dobject files.
Replies: 6
Views: 6171

Having an issue with share dobject files.

Hello, I am working on a simple Love2D game, and I am using a library called tove. It implements SVG graphics for Love2D. However, when I try to run the game after converting everything into a love file, I get an error saying the I cannot open the shared object file, because it is not a directory. I...