Please have a look at this patch, we could suggest users to append the
path of cloog libraries' parent directory to LD_LIBRARY_PATH.
best regards
ether
---
www/get_started.html | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/www/get_started.html b/www/get_started.html
index 8a9bef0..fffeba7 100644
--- a/www/get_started.html
+++ b/www/get_started.html
@@ -135,10 +135,17 @@ make
<h3> Test Polly</h3>
-To check if Polly works correctly you can run <em>make polly-test</em> for the
+<p>To check if Polly works correctly you can run <em>make
polly-test</em> for the
cmake build or <em>make polly-test -C tools/polly/test/</em> for the autoconf
build.
+<p>If you get something like <em>"... libisl.so.9: cannot open shared
object file .."</em>,
+it is because you installed cloog to a non-standard path, and libisl/libcloog
+could not be found. To solve this issue, you need to append the path of parent
+directory of libisl/libcloog, i.e. ${CLOOG_INSTALL}/lib, to LD_LIBRARY_PATH by:
+
+<pre>export LD_LBIRARY_PATH=$LD_LIBRARY_PATH;${CLOOG_INSTALL}/lib</pre>
+
<h2> Optional Features </h2>
<h3> Pocc </h3>
--
1.7.5.4
True. This looks good.
Tobi