The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
32 views

proxychains LD_PRELOAD cannot be preloaded

Using proxychains to do apt-get update in ubuntu 12.04.2 sudo proxychains apt-get update gives following error ERROR: ld.so: object 'libproxychains.so.3' from LD_PRELOAD cannot be preloaded: ...
0
votes
1answer
32 views

g++ fails to link to libmysqlclient

I use Ubuntu 12.04 on a virtual machine on my MacbookPro. I installed build-essential, mysql-server and libmysqlclient-dev. Both commands 'mysql' and 'mysql_config' work. However, the following ...
0
votes
0answers
63 views

undefined reference to symbol dgemm cblas error

I am trying to compile a code package, which makes use of cblas and Lapack. Thus, after specifying the path of Lapack and cblas in its makefile, when I try to make or compile, I get the following ...
0
votes
1answer
64 views

dlclose does not call library destructors, dlopen called just once

consider the following code for a dynamic loaded library built with g++-4.7 on linux, -fPIC and linked with -rdynamic option: typedef std::vector< void* > cbRegister_t; struct Wrapper ...
1
vote
1answer
84 views

Cannot find -lgfortran

I'm trying to install a package in R (package "ks"). It fails with error message: /usr/bin/ld: cannot find -lgfortran I've already installed the Ubuntu package build-essential: sudo apt-get ...
1
vote
1answer
111 views

How can I re-order LD_LIBRARY_PATH?

How can I re-order LD_LIBRARY_PATH? Edit: I'm interested in LD_LIBRARY_PATH because I have this problem: I can't update, upgrade and remove my app from kubuntu and one of the error is due to ...
5
votes
2answers
158 views

Running ARM(EL) executables on ARM(HF) system - Missing Symlink to dynamic Loader?

I am using an Ubuntu 12.10 (ARMHF) distribution on a panda board. I want to run applications compiled for ARMEL. It was not possible due to a changed dynamic loader location ...
0
votes
2answers
219 views

Linker cannot find libcv

The package I am building on Precise instructs me to install OpenCV using synaptic to get libcv-dev libcvaux-dev and libhighgui-dev. So I opened up synaptic and checked the boxes and downloaded these ...
2
votes
2answers
934 views

ld cannot find math library

I just installed ubuntu 12.04 LTS and am having trouble linking to the math functions (from ). I have gcc installed and able to compile the source fine. However, trying: gcc -lm montecarlo_time.o ...
1
vote
1answer
513 views

How to reset LD_PRELOAD

I've done the following command to set the path for LD_PRELOAD. But it's the wrong path. export LD_PRELOAD=/home/ Does anyone know what is the default path for LD_PRELOAD on Ubuntu 12.04? What is ...