25 Jan
2017
25 Jan
'17
11:44 a.m.
On 24.01.2017 12:24, P-M wrote:
I have set `export LD_LIBRARY_PATH="-L/home/pmj27/anaconda/lib"` in `~/.bashrc` and `~/.profile`. If I type `echo $LD_LIBRARY_PATH` the shell returns `-L/home/pmj27/anaconda/lib` as I would expect.
This is incorrect. This environment variable expects a path, not compiler flag. The correct would be: LD_LIBRARY_PATH="/home/pmj27/anaconda/lib" (provided this is really where the cairo library resides) -- Tiago de Paula Peixoto <tiago@skewed.de>