python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to make cmake to find local library in /usr/local/lib?
I have create simple library testlib.c:
char *reverse(char *string)
{
int len = strlen(string);
for (int i = 0; i < len / 2; i++)
{
char tmp = string[i];
string[i] = str...
milanHrabos
Votes: 0
Answers: 0
Need rebuild to use it with different library that provides the same interface?
I have a project "A" that has dependency to "B". "B" is dynamically loaded in start up time.
Imagine there's a library "C" that satisfies the same interface as ...
hytgbn
Votes: 0
Answers: 1
Custom ld-linux.so for subprocesses
I am running a program with a set of custom libraries as follows:
/path/to/my/ld-linux-x86-64.so.2 --library-path /path/to/my/libs /path/to/my/executable
This works great for most of the programs I a...
Ian
Votes: 0
Answers: 1
Integrate pre-compiled libraries into C++ codebase with CMake ExternalProject
I want to integrate CasADi into a CMake-based C++ codebase as an ExternalProject. For this purpose, I would like to use pre-compiled libraries because building from source is not recommended. So far, ...
fdev
Votes: 0
Answers: 1