Re: Compilation Fails due to Linker Error

2014-02-01 Thread Alexis
Hi all, the latest commits on the master branch address the build errors and improve the python module support. It was tested on Mac, Debian 8, and Ubuntu 12. Please test whether the current repository state works for you and report any issues. In order to quickly find severe issues as these Trav

Re: Compilation Fails due to Linker Error

2014-02-01 Thread Ryan May
I just did a clean build from master on Ubuntu 13.10 and the compilation now works. -Ryan On Sat, Feb 1, 2014 at 1:54 PM, Alexis wrote: > Hi all, > the latest commits on the master branch address the build errors > and improve the python module support. > > It was tested on Mac, Debian 8, and

Re: Compilation Fails due to Linker Error

2014-02-01 Thread Ryan May
Well, I may have been a bit hasty. Compilation now works, but when I `make install` and attempt to run ledger I get the following error: ledger: error while loading shared libraries: libledger.so.3: cannot open shared object file: No such file or directory The output of `make install` is: [ 88%]

Re: Compilation Fails due to Linker Error

2014-02-01 Thread Johann Klähn
You can work around this by including /usr/local/lib/x86_64-linux-gnu in a LD_LIBRARY_PATH environment variable or configuring the inclusion of that directory via /etc/ld.so.conf or similar. As a step to the correct fix of this problem: Is the library simply installed into a wrong directory? I.e. d

Re: Compilation Fails due to Linker Error

2014-02-01 Thread Ryan May
Setting LD_LIBRARY_PATH does not fix the problem. readelf shows that the ledger binary in the compilation directory does have an RPATH pointing to the compilation directory, but the installed binary does not have an RPATH. A quick look at other programs in /usr/local/bin shows that none of them ha