forked from OSchip/llvm-project
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
This commit is contained in:
parent
0fdeb7158e
commit
72cebdec2e
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue