Search found 2 matches

by pocoyo
Tue Aug 29, 2023 1:35 am
Forum: Support and Development
Topic: How to add a C library in linux?
Replies: 3
Views: 1413

Re: How to add a C library in linux?

You mean, like in this tutorial? I guess so. I thought it would be faster to have the code directly in the executable. The library contains functions specific to a hardware platform.
by pocoyo
Mon Aug 28, 2023 7:01 pm
Forum: Support and Development
Topic: How to add a C library in linux?
Replies: 3
Views: 1413

How to add a C library in linux?

Hi everyone. I'm trying to add a library to the Love2D source code. (The main goal is to expose it as a module on lua). In Windows it was easy using vcpkg, just #include'ing the library compiled and worked. However in Ubuntu the compilation throw errors, as it is not finding the library functions. I...