Hello,
I have created a shared library(*.so) using the *.o object code files(C source code) using RVDS compiler on windows Host.
I link this shared object with a application(using gcc for arm target on linux host) and obtain a executable, which on running generates segmentation fault.(I know i have to debug it!)
Instead of creating sh...
Hello,
I am working on creating and linking shared library (.so). While working with them, many questions popped up which i could not find satisying answers when i searched for them, hence putting them here. The questions about shared libraries i have are:
1.) How is shared library different than static library? What are the Key differ...
I've got a shared class (static in C#) which mostly carries some settings data that any class in the application can read and sometimes write. Also there are some static properties which holds some internal states.
Now I want to revert this class to initial stage of it. With all default variables etc. Assume that the user want to reset ...
This should be a common scenario, but could not find any relevant post yet..
I plan to deploy a Python library (I guess the same applies to regular applications) which makes use of some images and other resource files. What is the standard location for such items? I imagine, for project Foo, the choices would be
Have resources directo...
Hello,
I have a question about performance difference (from the perspective of Cycles consumed) between a static library and shared library(windows - dll).
I have a static library for some code. I also have a dynamic library for the same code.
I have linked these two libraries to a application.
Will there be any difference in perform...
I'm planning on hosting 3 or 4 WCF/.NET 3.5 REST webservices to be used by a new iPhone application.
I've heard good reviews about DiscountASP.NET (http://www.discountasp.net/index.aspx), but I'm pretty ignorant about shared hosting performance. At the same time, I think it's still early to pay $90 a month for a scalable Amazon EC2 ser...
How the shared files (linked files) in VSS can be migrated to a Subversion repository in Debian ? Please help.
...
How do I find out which executables or processes are using my shared library objects in a Unix environment, specifically the AIX environment. Is there any command for it?
...
Hi All, I've a class with few properties A, B, C. I consider this as an input object as I use this in the logic to run some rules based on the values of these properties. Now, after running the rules, I created another class as an output with the same properties and with same values in addition to few other properties specific to the out...
I have a VB.NET application where various objects are going to access some common code, and I have some counters and values shared between all the calls, so I'm currently using a "Shared Class" (I'm aware classes can't be shared, per se, but all the variables and methods are marked "Shared").
My concern is for the visibility of this obj...
IE 8 sharing session among different Explorer Window for same domain.
Like if you are a logined at hotmail.com in IE 8, and you have open another explorer window for hotmail.com, you will automatically logined.
This was not in IE 7, In IE 7 session has shared in the same explorer tab rather different Explorer Window.
Can anyone have a i...
Here is some tricky problem.
I am trying to watch a shared folder which is on Linux machine.
I am running the program on windows XP which is developed in Visual Studio 2005, VC++
and using FileSystemWatcher class.
But it's not raising events for that shared folder at all.
Please suggest a solution.
...
The program that I am working on is statically linked to a 3rdPartyLibrary.lib.
We wanted to take advantage of a newer version of the same 3rdPartyLibrary, say 3rdPartyLibraryNewVersion.lib.
So the decision is to include the 3rdPartyLibraryNewVersion.so as a dynamically linked library, to be included via a wrapper dynamic library calle...
Hello,
I am trying to work my way through the NerdDinner tutorial - and as an exercise I'm converting it to VB as I go. I'm not very far in and after having gotten past the C# Yield statement I'm stuck on Shared VB Array Initialisors.
static IDictionary<string, Regex> countryRegex =
new Dictionary<string, Regex>() {
{ "USA", new Regex(...
how can i let ipod playback continue when my app is on the run..... THANKS IN ADVANCE FOR HELP//...
...
Hi,
I have an application that i have built(on linux, written in c++ compiling with g++), that uses shared libs, it works fine when i run it locally, as the shared libs can be found, however when i run it on a cluster where the libs are only installed on the head nodes, i get the error :
./start: error while loading shared libraries:
...
I have some python modules in a shared folder on a Windows machine.
The file is \mtl12366150\test\mymodule.py
os.path.exists tells me this path is valid.
I appended to sys.path the folder \mtl12366150\test (and os.path.exists tells me this path is valid).
When I try to import mymodule I get an error saying the module doesn't exist.
...
Hello,
I'm having trouble with uploading my cakePHP project on a shared hosting ( from hostgator ).
Here is what I have done:
I've organized my cake distribution like this:
home/user/app
home/user/cake/cake
home/user/cake/vendors
home/user/cake/.htaccess
home/user/cake/index.php
I have taken the content of webroot directory from ...
¿It's possible to share a partition (or lvm volume) and using it at the same time between the host and the guest virtual machine?
For example, if you have the /home in the /dev/sdf2 partition, use it inside the otherdistro vm and work at the same time, also.
Thanks.
...
Hi,
In a separate library, we have a struct with:
typedef struct bsmat{
int m;
int *n;
double **d;
} bs;
where **d is a array of pointers to double arrays.
bs *new_bs(int n, double **d);
There are two use cases:
(a) The main application allocates multiple double matrices and calls the library to construct the structure.
b = new...