Tagged Questions
The so tag has no wiki summary.
6
votes
2answers
5k views
5
votes
1answer
199 views
gcc, shared objects, and “undefined reference”, what am I doing wrong
I am trying to create a shared object (.so) that exports one function, "external()". I then try to link against the .so but get "undefined reference 'external'". What am I doing wrong here?
File: ...
3
votes
2answers
36 views
g++ generates wrong symbols in dynamic library
I'm trying to make simplest so library.
#include <stdio.h>
void PutLoLoLo(){
puts("Lololo");
}
compiling with g++:
g++ -shared -fPIC main2.cpp -o simple.so -Wall
and I get this in ...
2
votes
2answers
224 views
How to create a shared object file from static library
How to create a shared object file from a static library? I am using Cygwin.
Is the following syntax correct?
gcc -shared -o libexample.so libexample.a
2
votes
3answers
346 views
Writing Delphi/FreePascal DLL to be called from gcc application
I need to make parts of my Win32 Delphi app available to another company's Linux gcc program.
Throughput and deployment requirements make any sort of remote service unsuitable so I'm looking at using ...
2
votes
2answers
94 views
Why the value webservice returns was not xml
webservice.PService pService = new Project.webservice.PService();
var v3 = passportService.HelloWorld();
Response.Write(v3);
I debugged it and found that v3 was string. Why? Should not a webservcie ...
2
votes
1answer
151 views
Compile .so in Windows
Is there any way to compile a source code to .so instead of .dll in Windows and using Visual Studio?
Thanks in advance.
2
votes
3answers
125 views
Is it possible to recreate the C++ header files needed to use a given .dll/.so/.dylib?
Is it possible to recreate the C++ header files needed to use a given .dll/.so/.dylib?
If it is, how would one go about doing that?
2
votes
2answers
101 views
Library as dependency for another library
I have a big project compiled into libProject.so-file (shared library), I made some modules (shared libraries too) which use code from all libProject. Can I set libProject as dependence for ...
2
votes
1answer
99 views
Plan to make a SO indicator for Firefox
Problem: to show that a Not-SO-page has been discussed in SO when you at the Not-SO-site by a SO indicator at Firefox bottom bar
How should the extension work?
It should show a colorful SO indicator ...
1
vote
2answers
34 views
How to make the program dynamic-library-linked being portable?
this is my solution:
I move the program to another computer without any lib installed, read the error messeges and copy the lib one by one.
I have to repeat it several time until all library ...
1
vote
1answer
20 views
Integrating a .so with asterisk telephony
I have an application running on an Asterisk telephony server that alters the voice packets of an incoming call. To do this, I have followed the steps:
1. I built an so of the application (coded in ...
1
vote
0answers
41 views
SO API: How to get a user's reputation rank/position?
Having earned the "Tumbleweed" badge for this question, I thought I'd re-post here and put it to a larger audience:
Using the SO API request http://api.stackoverflow.com/1.1/users/{userId}, I can get ...
1
vote
2answers
166 views
GDB does not break in dynamically-loaded .so file?
In my Linux system I'm writing a program that dynamically loads some .so libraries when running. It's like this: The executable program will search under a particular directory when it starts to run ...
1
vote
1answer
239 views
Python freeze.py generated bin doesn't run
I need to run a Python 2.7 script into a client critical machine, so I have permission to install nothing, and when I say nothing I mean nothing even into local dirs, so the solution I found is to ...
1
vote
2answers
419 views
How to use copy_from_user?
ssize_t probchar_write(struct file *filp,
const char __user *data, size_t s, loff_t *off) {
printk(KERN_DEBUG "Data> |%s|\n", data); // only for debug
char chars[MAX_LENGHT];
if(s ...
1
vote
1answer
154 views
OSX Loading dylib Lua Module
When trying to load a Lua module on OSX I receive the following error.
lua: level1.lua:1: module 'libexpand_luaLib' not found:
no field package.preload['libexpand_luaLib']
no file ...
1
vote
1answer
390 views
wordexp followed by strcpy = EXC_BAD_ACCESS + sharedlibrary apply-load-rules-all
The implication is a memory problem. I have static allocations for these:
char akdir[400];
char homedir[400];
This crashes on the first strcpy():
void setuplibfoo()
{
long ii;
double x;
wordexp_t ...
1
vote
1answer
76 views
rvm and different versions of a system library
I need to run a set of tests against the same ruby version and same gemset but with different versions of a .so library.
Therefor I need to have two ruby installations (for the same version 1.8.7), ...
1
vote
1answer
959 views
How to link as .so instead of .dylib on OSX 10.6 using qmake
I am trying to use SWIG to wrap some C++ code for the use with Python. As described here it seems to be necessary to link my C++ code against an .so file, not a .dylib file. The thread suggests to use ...
1
vote
2answers
602 views
Python importing & using cdll (with a linux .so file)
After one of my last questions about python&c++ integration i was told to use dlls at windows.
(Previous question)
That worked ok doing:
cl /LD A.cpp B.cpp C.pp
in windows enviroment, after ...
1
vote
7answers
234 views
Is the SO tag ordering a good representation of programming language popularity?
Is the SO tag ordering a good representation of programming language popularity?
My first guess would be that it's not and that it's largely populated by fans of Jeff (who would probably be .Net ...
0
votes
2answers
35 views
How do you combine a dll with your application?
Kind of a simple question, but when I compile an application I'd like to make it so the user doesn't need all the dll's/shared objects and can just have one standalone executable. How do I do this? ...
0
votes
0answers
30 views
Require_relative in Ruby not finding files that do exist
I am trying to use require_relative in ruby 1.9.2 to load a .so file in Mac OS X 10.6.8. Require_relative is working properly for .rb files, but is claiming a .so file I am trying to load does not ...
0
votes
0answers
24 views
How to specify LD_LIBRARY_PATH (or PATH) for each project in Netbeans?
In order to load .DLLs (under Windows) or .SOs (under Linux) we must use the environment variables PATH (Windows) or LD_LIBRARY_PATH (Linux).
The only way we could find to properly use DLLs and SOs ...
0
votes
1answer
29 views
Unable to LoadLibrary ssl for Android, getting UnsatifiedLinkError
I have built OpenSSL for Android(using ndk-build) and have linked it to my program. Compilation and linking works, but I get a run time error of UnsatisfiedLinkError.
More specifically, the program ...
0
votes
0answers
19 views
How is dynamic library is loaded?
all buddies:
I am recently working on a project dealing with dynamic library loading. And a block of memory has to be distributed in each library, ( Heap or Stack ), specifically, the memeory is ...
0
votes
0answers
67 views
Web app can't use loaded library (.so or .dll) in Glassfish 3.1.1
I'm here again.
This time I'm trying load a .so lib in Glassfish 3.1.1 in a way I can redeploy my applications...
I've tried 2 ways to solve it: create a Lifecycle module and load the lib with JVM ...
0
votes
4answers
112 views
Library for Python: How to call C++ functions from Python program?
There is a library for Python that enables the calling ability (can call functions in C++ format without extern "C". Please, could you remind me the name of the library? I forgot it's name and can't ...
0
votes
1answer
116 views
Can I call a windows DLL from a linux client? [closed]
Possible Duplicate:
Using Windows DLL from Linux
I found this command line in a tutorial.
gcc -o Client1 Client1.o CodeSample1.dll -lgdi32 -lm
and made me wonder when is possible to call ...
0
votes
1answer
76 views
Shared Object (DLL) question
I have a question regarding Shared Objects (or DLLs). I am working on a plugin loader for my game engine. I need one question answered before starting to do that, though.
If I load the data using an ...
0
votes
1answer
193 views
Installing Task Management System without Social Office portlet
I want to install TMS (Task Management System) from SO (Social Office) to my Liferay so that I would not install the SO first. So, it would be used as a portlet or so and I don't have to take the full ...
0
votes
3answers
314 views
Java System.loadLibrary call on Linux freezes
I have a very small .so file (Available here: https://docs.google.com/leaf?id=0B4MxFm-ACB3INjhkMjhlNzktYzkxYy00Zjk5LTk0Y2MtZDE2MWQ2MzY1OWUy&hl=en_US&authkey=CMrJguwN)
I am trying to load ...
0
votes
1answer
104 views
java.lang.UnsatisfiedLinkError
Exception in thread "Thread-17" java.lang.UnsatisfiedLinkError: MetadataMatching.SimXMLModule.computeStructSimXML([Ljava/lang/String;)[D
at MetadataMatching.SimXMLModule.computeStructSimXML(Native ...
0
votes
1answer
169 views
Solaris shared libraries and global variables
I have an issue with global variables in shared library on Solaris.
Consider following sample:
class Foo
{
public:
Foo() { Init(); }
private:
void Init() { // do something }
};
I have some ...
0
votes
1answer
48 views
.so runtime linkable libraries as plugs ins; cocoa capability?
I'm writing a plug-in interface for an OSX image processing application. It's designed around the idea that the plug-ins should be as simple as possible, such that a developer can get in there and ...
0
votes
1answer
107 views
Installing LibHX on Ubuntu
I have installed LibHX using the Synaptic Packet Manager.
I can see the libHX.so.22 file in /usr/lib
3 I have run ldconfig -n /usr/lib
How do I go ahead and use this library in my C files?
any ...
0
votes
1answer
324 views
Solaris 32 bit - build shared object using gcc
I am trying to crate a shared object (.so) using gcc version 3.4.3 for Solaris 32 bit system. I was googling for flags required to create a shared object for solaris. In some of the posts , I see that ...
0
votes
0answers
125 views
Memory leak in .so file [closed]
I have a .o object file compiled from cpp source code.
If I compile the .o file into an executable file, there's no memory leak;
but if i wrap it into a .so and then write an executable to load the ...
0
votes
1answer
20 views
Standard folder for .so files
Where should I put .so files in Ubuntu. In other words, what is the standard/convention for this.
0
votes
1answer
271 views
Include static C++ library to Objective C project
I want to create an C++ so library and include it in my Objective C code. I work in XCode.
Here is C++ code:
--------------core.cpp----------
#include <vector>
#include <algorithm>
...
0
votes
2answers
49 views
Can i set which .so to link in php scripts?
I have serveral copies of same ".so" file under different system directory. Can I set link path in my php scripts so that i can link to a certain ".so'?
0
votes
0answers
72 views
so file does not work sometimes
My Question is not resolved.
A.so depends on B.so. B.so depends on C.so.
The method in A.so is called many times in my application.
On Ubuntu 9.10, the method works properly.
But on Ubuntu 8.04, ...
0
votes
1answer
51 views
Facing following error while .so build on eclipse CDT c++ — Please suggest
not able to upload img .. please check at following site...
http://i40.tinypic.com/ilzyqa.gif
0
votes
1answer
77 views
How do I require Gosu with IronRuby?
I tried to require Gosu's .so file, but it said something about "expecting assembly".
I assumed that IronRuby will support library files which aren't written in dot net, is this true?
-1
votes
1answer
35 views
Creating an android native level application using .h and.c file?
Is there any way to use an .h , .c and .so file and also create an android native level application???
Plz Help
Regards
Heading
-1
votes
1answer
177 views
Solving 16 equations simultaneously to solve 16 variables using the 'solve' command in MATLAB
I have been trying to get a solution to 16 variables with 16 equations (linear) with the solve command.
Below I am pasting my code
syms x11 x12 x13 x14 x21 x22 x23 x24 x31 x32 x33 x34 x41 x42 x43 ...