Top "Shared-libraries" questions

Shared libraries are libraries that are loaded by programs when they start.

gmp shared libraries not found

I have a very simple GMP program in C (below) #include <stdio.h> #include <gmp.h> …

c shared-libraries gmp
dyld error: image not found

I got this error message while running my application on simulator. Dyld Error Message: Library not loaded: /System/Library/Frameworks/…

cocoa-touch linker shared-libraries dyld
How to build a dylib from several .o in Mac OS X using gcc

I have several .o files and want to bundle them in a .dylib, how can I do that it Mac …

macos gcc shared-libraries dylib
What path does @loader_path resolve to?

I'm having a hard time understanding the absolute path that a @loader_path within a file refers to. user@local:~$ …

macos shared-libraries mach-o dyld otool
Include assets when building library using ng-packagr

Could anyone give a hint where to start to include images and css files into Angular library using ng-packagr?

angular shared-libraries ng-packagr
Easiest way to install Python dependencies on Spark executor nodes?

I understand that you can send individual files as dependencies with Python Spark programs. But what about full-fledged libraries (e.…

hadoop dependencies apache-spark shared-libraries distributed-computing
Relation between object file and shared object file

what is the relation between shared object(.so) file and object(.o) file? can you please explain via example?

c++ linker shared-libraries object-files
Does ldd also show dependencies of dependencies?

I have a binary for which ldd shows an unexpected dependency und libicuuc (from "icu"). #ldd A [...] libxml2.so.2 => /…

linux shared-libraries ldd
dlopen - Undefined symbol error

I'm using dlopen to load a shared library at run time dlopen("SharedLibarary1.so", RTLD_NOW | RTLD_GLOBAL); In that …

c++ c linux dlopen shared-libraries