|
From: Kirill B. <bat...@is...> - 2010-09-17 12:18:03
|
Hello. > Does anybody know what are the mandatory library objects in order to > run valgrind on a arm-linux box? (I cannot run strace on our box, so I > can't find them myself). Valgrind does not use any specific libraries. If you are able to build simple Hello world program with your cross toolchain and run it on your hardware then Valgrind should be ok too. The error you mention is most probably caused by the fact that path $PREFIX/lib/valgrind is hardcoded to Valgrind binaries. Considering your previous email note, that command make install DESTDIR=/foo/bar will install Valgrind not to /foo/bar but to /foo/bar/$PREFIX. In other words DESTDIR is appended to PREFIX. ---- Kirill. |