14
votes
38answers
531 views
Favorite 3rd-party Python Libraries?
The more I've learned about Python, The more I've heard about several external libraries that are available, and I was wondering what are some of your favorite python libraries tha …
1
vote
3answers
38 views
Can I use a shared library compiled on Ubuntu on a Redhat Linux machine ?
I have compiled a shared library on my Ubuntu 9.10 desktop. I want to send the shared lib to a co-developer who has a Red Hat Enterprise 5 box.
Can he use my shared lib on his mac …
0
votes
3answers
24 views
UnsatisfiedLinkError When Loading a Library from Java in MATLAB
I've been integrating simple java modules into the MATLAB environment on Windows with some success. Recently I encountered a problem with a third-party library which attempts to lo …
0
votes
1answer
96 views
Shared library in Go?
Is it possible to create a Shared Library (.so) using Go?
UPDATED: created an "issue" for it.
2
votes
4answers
105 views
Load multiple copies of a shared library
I am running Linux, and I would like to be able to make parallel function calls into a shared library (.so) which is unfortunately not threadsafe (I am guessing it has global datas …
0
votes
1answer
60 views
libtiff.3.dylib: unknown required load command 0x80000022
Has anyone found a fix for this?
I read that it has something to do with new dylib format in Snow Leopard...
(This is the lib I get back from MacPorts.)
Thanks,
rui
1
vote
1answer
26 views
create a shared lib using another shared lib
I have a shared library "libwiston.so". I am using this to create another shared library called "libAnimation.so", which will be used by another project. Now, the second library "l …
0
votes
2answers
24 views
[ linux, g++, linking]: library is in ldconf cache and Links Manually, but not by default
Hi all,
This appears similar to an earlier post: http://stackoverflow.com/questions/335928/linux-gcc-linking-ld-cannot-find-a-library-that-exists But to the best of my knowledge, …
0
votes
2answers
36 views
Is dynamically linking against the Sqlite library safe on the iPhone?
The concern is guaranteeing compatibility with the Sqlite Header file compiled into the iPhone app. What if the header file used at compile time is from a newer version then the dy …
3
votes
3answers
95 views
How do shared libraries work in a mixed 64bit/32bit system?
Good morning,
on a 64bit RedHat box we have to compile and run a 32bit application. Meanwhile I managed to compile the gcc version needed (4.0.3) and all required runtime librarie …
0
votes
0answers
15 views
Creating a plain C shared library in Mac OS that uses Objective-C libraries
Hi, I want to create a plain BSD library in Mac OS which provides a plan C wrapper for Objective-C bases system APIs (like the CoreLocation API).
Although I've written and gotten …
1
vote
3answers
46 views
Dynamic shared library loading framework
I am working with a legacy C library that can be extended by writing user defined function(s) and then recompiling the source. I want to avoid the compilation requirement, and inst …
1
vote
1answer
104 views
Compiling a shared library with Qt on Ubuntu 9.10
I am new to both Qt and Linux C++ development (although I have many years C and C++ development experience on Windows).
I have some legacy C projects (source files and headers - [ …
2
votes
3answers
83 views
How to initialize a shared library on Linux
Hi there,
I am developing a shared library using c++ under Linux. I would like to user log4cxx for logging purposes. However, I'm not sure how to initialize this. For log4cxx I ne …
0
votes
1answer
28 views
What is the difference between a .sl and a .so on HPUX?
Since you can link your application to a .sl file and a .so file what exactly are the differences between .so and .sl files?
