[polly] r205556 - Add another hint for fixing check-polly errors to get_started.html

Tobias Grosser tobias at grosser.es
Thu Apr 3 12:38:39 PDT 2014


Author: grosser
Date: Thu Apr  3 14:38:38 2014
New Revision: 205556

URL: http://llvm.org/viewvc/llvm-project?rev=205556&view=rev
Log:
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 at googlemail.com>

Modified:
    polly/trunk/www/get_started.html

Modified: polly/trunk/www/get_started.html
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/get_started.html?rev=205556&r1=205555&r2=205556&view=diff
==============================================================================
--- polly/trunk/www/get_started.html (original)
+++ polly/trunk/www/get_started.html Thu Apr  3 14:38:38 2014
@@ -146,7 +146,10 @@ it is because you installed cloog to a n
 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.





More information about the llvm-commits mailing list