The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
100 views

No module named pydevd

I'm trying to debug in openstack nova with Eclipse+ pydev. I can debug remote python process by adding the following to the target process. import sys;sys.path.append('/root/pysrc/') import ...
0
votes
2answers
391 views

Changing R default library path using .libPaths in Rprofile.site fails to work

I am running R on Windows, not as an administrator. When I install a package, the following command doesn't work: > install.packages("zoo") Installing package(s) into ‘C:/Program ...
1
vote
2answers
300 views

How can I make Cygwin/perl load a specific library à la LD_LIBRARY_PATH/LD_RUN_PATH?

The issue I'm seeing is that the wrong version of a library gets loaded in a perl process running on Cygwin (1.7.15, current as of 09/2012). Briefly, perl starts, does use XML::LibXML, which is the ...
0
votes
2answers
764 views

Eclipse C++ project not resolving LD_LIBRARY_PATH include variables

I have a C++ project I am importing and it is using activemq libraries. After I import the project, I set the LD_LIBRARY_PATH variable under environment to point to ...
1
vote
1answer
55 views

Can't call a script from within a script

I am trying to call a script from within another script. The idea is that the program should take in email that is sent to it directly from unix mail as stdin, and then parse some stuff out and send ...
2
votes
1answer
3k views

giving 'java.library.path' in netbeans for .dll/.so files

How do i give the path for the .dll or .so file in netbeans to load the library using System.loadLibrary("Foo") I read this on netbeans page but couldn't help me. as it gives the unsatisfied link ...
0
votes
1answer
316 views

Include path problems for GPU library

I am trying to use MAGMA (http://icl.cs.utk.edu/magma/) to perform some matrix operations on a GPU. I am able to invoke CUDA kernel's successfully, and there is no problem with that. But when I try ...
8
votes
2answers
739 views

Perl, Why is @INC different?

I have a simple Perl script that prints out @INC as the following: #!/usr/bin/perl print $_, "\n" for @INC; I execute the script in 2 different ways with ./test.pl and perl test.pl, the output as ...
2
votes
4answers
2k views

Is there any way to simulate LD_LIBRARY_PATH in Windows?

I have a program do so some graphics. When I run it interactively, I want it to use OpenGL from the system to provide hardware accelerated graphics. When I run it in batch, I want to be able to ...
4
votes
1answer
689 views

CMake set library search path fails in testCXXCompiler

I built my own GCC and libraries and put the libraries in /opt/gcc-4.6.2/lib so generically-named libraries like libstdc++ do not interfere with other parts of the system. This means I have to ...
1
vote
1answer
2k views

Default Library Path

Prior to my problem, I attempted to install a component which required me to change my Library - Win32 library path. The installation did not work out so I left it. A few days ago, I ran Delphi to ...
1
vote
1answer
825 views

How best to modify / install a component library path into the Delphi IDE without doing it manually?

I am preparing an installer (Inno Setup) to install my component package into Delphi XE without having to manually fiddle in the IDE. I need to modify the Delphi library path, for example to delete ...
7
votes
4answers
10k views

Mac OS X Lion and Xcode upgraded: missing headers and libs

After upgrading to Lion, and upgrading Xcode, make can't seem to locate headers and libs. I looked in /usr/include. The only thing in there was 'parallels-server'. So, I renamed /usr/include to ...
1
vote
1answer
373 views

Two versions of glibc on the same system

I currently have glibc 2.10.2 on my system. I upgraded an android installation on this same system the other day. Post the upgrade, however, I am unable to run the emulator. The emulator shuts down ...
4
votes
2answers
3k views

GNU ld cannot find library which is there

The packages I'm toying with here are rather unknown, but nevertheless the problem is rather generic. Basically, I'm trying to compile Python module (called rql) with C++ extension. The extension uses ...
7
votes
1answer
2k views

How to get the system library path on Unix (Linux, FreeBSD)

I need a more-or-less portable programmatic way for querying the the dynamic library path list. For Linux, I can concatenate the $LD_LIBRARY_PATH and the contents of /etc/ld.so.conf (processing the ...