summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2014-04-03 19:38:38 +0000
committerTobias Grosser <tobias@grosser.es>2014-04-03 19:38:38 +0000
commit72cebdec2e203949fd57ef1376905e0980d4b370 (patch)
treeffd8276baa86f98fb575baf26bb17d06a1af2590
parent0fdeb7158ed4e1da91f5f1f78d2c6b19328b3f4d (diff)
downloadbcm5719-llvm-72cebdec2e203949fd57ef1376905e0980d4b370.tar.gz
bcm5719-llvm-72cebdec2e203949fd57ef1376905e0980d4b370.zip
Add another hint for fixing check-polly errors to get_started.html
Reversed the order in which LD_LIBRARY_PATH is defined in order to make sure the ${CLOOG_INSTALL} prefix is found first. Contributed-by: Christian Bielert <cib123@googlemail.com> llvm-svn: 205556
-rw-r--r--polly/www/get_started.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/polly/www/get_started.html b/polly/www/get_started.html
index 920275e9979..c025f8d51cd 100644
--- a/polly/www/get_started.html
+++ b/polly/www/get_started.html
@@ -146,7 +146,10 @@ 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_LIBRARY_PATH=$LD_LIBRARY_PATH:${CLOOG_INSTALL}/lib</pre>
+<pre>export LD_LIBRARY_PATH=${CLOOG_INSTALL}/lib:$LD_LIBRARY_PATH</pre>
+
+<p>Also try the above command if you get errors such as:
+<code>undefined symbol: isl_ctx_get_max_operations</code>
<p>If you get an error in one of the python files, your system probably uses python3
as default python interpreter. This is the case, for instance, under Arch Linux.
OpenPOWER on IntegriCloud