A shared object, similar in use to the Windows dynamically linked library.
-1
votes
0answers
53 views
Compiling C++ programm on Ubuntu Linux and calling it by JNI
I'm assigned a task that to compile the C++ program (developed by others) to .so file on Ubuntu Linux server, and use JNI (Java Native Interface) to call it to meet my goal. I'm majored in Java ...
3
votes
6answers
163 views
How to prepare a build job that produces .dll and unix .so on single Windows environment?
How to create a C++ single build job that will produce .dll working on windows and .so prepared to work on Unix?
Suppose that our development environment is based on Windows.
0
votes
2answers
99 views
Calling C++ from JavaScript / HTML using GTK+ Webkit Webview (and Qt WebKit bridge)
I am currently evaluating different approaches / solutions to call C++ functions from JavaScript code embedded in an HTML page. The application must be run on Ubuntu Server 12.04 LTS.
I am not an ...
0
votes
0answers
38 views
.So file for FFMPEG from NDK
I am not able to make .So file for FFMPEG from NDK .
I Just Download a zip file from GitHub
https://github.com/appunite/AndroidFFmpeg
Then i used CYGWIN for using NDK commends for making .so file ...
2
votes
2answers
73 views
Writing dependencies in makefile, with makefile
Based on some SO questions -- and some further reference found --, I'm trying to build a makefile able to:
find, given the directories in $(SRC), the .cpp files to be compiled;
compile the .cpp, ...
1
vote
1answer
32 views
loading .so library C++
I'm trying load library library.so, when i try if exist return true, but when I use dlopen return library doesn't exist.
std::ifstream ifile("library.so"); if (ifile) {
cout << "Exist!" ...
0
votes
1answer
133 views
CentOS 6.x and jansson library problems
My OS is CentOS 6.4 x86_64bit.
And I was trying to use jansson lib just like what their tutorial shows.
Here is my history.
I downloaded github_commits.c
I downloaded curl lib.
I got some problem ...
0
votes
2answers
42 views
why the building a .so file involves multiple .c files
I thought the .so file is like a .o file. And since the .o file is built directly from a single .c file, I'm confused why .so file involves linking of multiple .c files.
1
vote
1answer
65 views
Loading Linux libraries at runtime
I think a major design flaw in Linux is the shared object hell when it comes to distributing programs in binary instead of source code form.
Here is my specific problem: I want to publish a Linux ...
1
vote
0answers
40 views
“Transitive” dynamic link in c++
Let's say I have a dynamic lib a.so.
Then I'm building b.so against a.so only if a.so is present on the machine.
Then I'm building executable c against b.so.
I was hoping to forget everything about ...
1
vote
0answers
66 views
How to run “decompiled NDK apk”
I am new to android ndk development. What i am trying to do is this :
Step 1: Compiled my ndk app and got an apk
Step 2: i decompiled it with apktool and jdcompilers
Step 3: now i want to put it ...
0
votes
1answer
43 views
NDK: using user created .so when trying to build another .so
I'm trying to link some .so that I generated using the NDK to a new .so I'm trying to create,
as the old .so contains definitions of functions that I want to use in the new .so.
I've tried this ...
0
votes
1answer
31 views
creating an .so file with an so file and some other .o files
I am trying to create a dynamic library(.so) from some .so files and some .o files.
The final so file is getting generated, but when I am using that .so file some of the libraries are not getting ...
1
vote
1answer
43 views
Linking to so library in gcc
I will start by saying that I am new to gcc and makefiles. I have a .so file on the desktop (~/Desktop) called lib.so. I want to link my program (called myProgram) to it. What I wrote in my makefile ...
1
vote
1answer
41 views
What is the differences between real so file and ln -s
for example, my directory like this:
lib
|
+--foo.so
+--bar.so -> bar.so.1.0.0.0
+--bar.so.1.0.0.0
Are these both ways always same?
The reason I ask this question is that I found unix will copy ...
0
votes
0answers
53 views
Use .so File for ARM in java project
I have a .so file which contains a method I want to use in my java program.
I tried to load it via System.load("/usr/lib/file.so");
but then I get this error:
Exception in thread "main" ...
0
votes
1answer
46 views
Why implicit linking to DLL needs a lib file on Windows
On Linux platforms you need only the .so file when you want to implicitly link to it.
Why Microsoft developed the approach where you need a .lib file also. Doesn't the DLL contain all the information ...
0
votes
0answers
56 views
Can't link Shared Library
I want make wrapper for another shared library.
elsymobileclient.h
extern void* CreateClass(void);
elsymobileclientwrapper.c
#include <AnswStruct.h>
#include <elsymobileclient.h>
...
5
votes
1answer
125 views
Dalvik is looking for .so file with '.0' extension - why?
I have started developing a very simple Android application that consists of three parts:
the Java application itself
a pre-built shared library (we'll call it libfoo)
another shared library that ...
0
votes
1answer
62 views
Tool for Windows to view symbols in .so files
Is there a tool for Windows with which one could open an .so file and see which functions are inside it?
For Linux, there is binutils and objdump does that as well as other ways listed here How do I ...
0
votes
2answers
72 views
shared object file path that is executed by the current thread
Is there a way to get the file path/file name of the .so that is currently under execution by a thread? The program is written in c++ and run on a 64-bit Linux 3.0 machine.
0
votes
1answer
97 views
ELF .so file, can I run it in some way on my windows thorugh java?
I have tree .so files, one for x86 and two other processors.
I can use them on my android simulator to call functions from the .so file:
static
{
System.loadLibrary("nameoflib");
}
...
2
votes
1answer
79 views
C++ name mangling in a so
Here's what i did:
I changed a .h file from
SomeObj* getCacheObj( int i = 0 );
to
SomeObj* getCacheObj( int i );
SomeObj* getCacheObj();
I recompiled the code (no problems), the changes went ...
2
votes
1answer
82 views
Adding to function pointer map in dynamic library
The two code sections below show important info. The real work is done in the third code section, main.cpp.
// For all files:
typedef void (*func_ptr)(Event&); // Event is a class with certain ...
1
vote
2answers
68 views
cannot load a shared library at runtime
foo.h
#ifndef foo_h__
#define foo_h__
extern void foo(void);
#endif
foo.c
#include <stdio.h>
#include "foo.h"
void foo(void)
{
puts("Hello, I'm a shared library");
}
compiled ...
0
votes
0answers
28 views
linking .so files crash after dlsym
I am having an libA.so and i want to use a function in that dynamic library.
I am loading the so using DLOPEN
program_handle = dlopen(program_so, RTLD_NOW);
it does not give any error
i want to ...
0
votes
0answers
69 views
gcc shared library linked incorrect in ubuntu 12.04
cat /etc/issue
Ubuntu 12.04.2 LTS \n \l
gcc --version
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
CFLAGS = -g -O2 -Wall -fPIC -c $(INCLUDES)
OFLAGS = -g -O2 -shared -Wall $(LIBS) ...
2
votes
1answer
580 views
Build .so file from .c file using gcc command line
I'm trying to create a hello world project for Linux dynamic libraries (.so files). So I have a file hello.c:
#include <stdio.h>
void hello()
{
printf("Hello world!\n");
}
How do I create ...
1
vote
2answers
279 views
Are the library location on Android 4.2.1 moved?
I faced a suspicious problem when I tried to update my Android App to work on 4.2.1, Nexus 7. I'm using my own .so library, which inclusion was working fine on Android version 4.1, before I updated. ...
1
vote
0answers
89 views
Include dependency on a shared object in my c++ source within a JNI project for Android
I apologize if I'm not using the correct terms, but I'm pretty new to Maven and JNI.
Here is my problem.
I have an Android project (A) which relies on JNI to use c++ sources. The c++ code is in an ...
0
votes
1answer
80 views
What is the difference between LD_PRELOAD_PATH and LD_LIBRARY_PATH?
What is the difference between LD_PRELOAD_PATH and LD_LIBRARY_PATH?
I understand what they do, but not the particulars of how they differ.
From
http://en.wikipedia.org/wiki/Dynamic_linker
The ...
0
votes
2answers
198 views
Accessing .so libraries using dlopen() throws undefined symbol error
I'm trying to dynamically load a camera library .so file into a Linux executable to gain access to simple camera functions.
I'm attempting to do this by:
if ( (newHandle = ...
2
votes
3answers
200 views
information about .so files
I am new in C programing.I have no Idea about .so files. what is the need of it ? how can I create it ? how to bind my C code or Binary with it ? If I don't make any .so file and directly make ...
0
votes
0answers
210 views
Android project imported in Eclipse: built App crashes
I have a project's source code I want to use/access from the App I'm developing.
It's a FFmpeg port to Android: http://roman10.net/src/affmpeg.zip
This App is available on Play, and works if ...
-1
votes
1answer
310 views
I am implementing ls command using system calls (in c programming)
I want to display the contents so am using bubble sort to perform the sorting. The problem is when the strcmp() compares "EX2" and "a.out" it returns -1. so a.out is displayed somewhere in the middle ...
1
vote
1answer
78 views
When is it safe to call a shared library from multiple threads using JNA/JNI?
I have compiled some FORTRAN subroutines into a .so file, and I am using JNA to call them from Java.
Is it safe to call the subroutines at the same time (reentrant) from multiple threads?
I don't ...
0
votes
0answers
70 views
Certain GLX calls in one dynamic library segfault unless first called in another library
I'm trying to create an application which uses OpenGL but dynamically chooses the window system, window system binding, and OpenGL profile (i.e. Xlib+GLX+OpenGL, Xlib+EGL+OpenGL, Xlib+EGL+OpenGLES, ...
1
vote
1answer
81 views
python ctypes hanging
I am having a problem calling a shared c library from python. The library loads fine and one of the 3 functions exposed are callable, and work as expected; however, when adding another function to ...
0
votes
0answers
114 views
error during linking in g++ [closed]
I am compiling one of my program. I am able to compile the code successfully exept for some warnings that were generated. The code is compiled. But now in linking i am facing issues which says hidden ...
0
votes
1answer
162 views
APK with two shared objects inside
According to docs/PREBUILTS.html it is allowed to use prebuilt shared objects in NDK apps. So I tried to have my NDK app import a function from a second shared object but as soon as I use a second ...
1
vote
1answer
61 views
Checking whether a shared object was loaded in unix
When writing a windows application I can check if the current process has a specific dll loaded by using:
GetModuleHandle(TEXT("Dll Name"));
How can I obtain the same functionality in unix systems? ...
0
votes
1answer
51 views
Libapr .so files don't have the functionality of source code
I compiled libAPR sources and ran successfully all tests provided by Apache.
However when I link my program to libapr.so the same functionality is not present.
For instance, apr_pollset_add ...
0
votes
0answers
49 views
.so file not working with Axis C++ code added
I tried calling a web service using Axis C++ from a .c file of cyrus sasl package ( a modified mechanism, I added a piece of code to call a webservice in plain.c ). I added the .c stub files generated ...
2
votes
1answer
211 views
how to link a .so file to a .so file
I am creating a .so file with a C code. I need to link some other .so files to the .so file am creating. how to do it?
I tried this -L{path to file containing library} -l${library name} is it ...
1
vote
1answer
123 views
calling a .so shared library object from php
I have a statically linked .so that I'm supposed to be able to call a function from, and its first argument is the memory address of the data to be processed. I have a sample caller written in Pascal, ...
0
votes
1answer
760 views
java.lang.UnsatisfiedLinkError: no <LIBRARY> in java.library.path
The problem
I've been trying to run a unit test on my own Mac. The test runs fine on Linux servers, but fails locally with the following trace:
java.lang.UnsatisfiedLinkError: no fedel_client in ...
2
votes
2answers
88 views
How to sub a C++ class from a .so on Linux?
I am using the ACE library to do some reactor jobs. On linux ,the default ACE compile output is the libACE.so. I usually to compilte it with the -lACE compile option, but this rely on whether i have ...
2
votes
1answer
682 views
readelf does not show shared libraries' version numbers
For a shared object which is compiled for ARM, calling readelf with -a option, displays libraries without version numbers, i.e. libc.so
me@home:~ $ readelf -a shared_object_for_arm | grep "Shared ...
0
votes
1answer
89 views
Cannot link to shared library
I'm trying to compile a minimal shared library and link to it and have been failing for two hours now. Here is ALL the code:
// rect.h
class Rect{
private:
int width_, height_;
public:
...
1
vote
0answers
156 views
Bonjour service is so late on iPad
I met a strange problem when I make the bonjour develop on iPad.
The requirement is like this:
a).I write the bonjour server on Mac and it works fine.
And iPad will conntect with this service ...
