[llvm-commits] [polly] r143025 - /polly/trunk/www/get_started.html

Raghesh Aloor raghesh.a at gmail.com
Wed Oct 26 05:25:50 PDT 2011


Author: raghesh
Date: Wed Oct 26 07:25:49 2011
New Revision: 143025

URL: http://llvm.org/viewvc/llvm-project?rev=143025&view=rev
Log:
www: Change in cloog installation procedure


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=143025&r1=143024&r2=143025&view=diff
==============================================================================
--- polly/trunk/www/get_started.html (original)
+++ polly/trunk/www/get_started.html Wed Oct 26 07:25:49 2011
@@ -65,9 +65,11 @@
 <h4> First installation</h4>
 <pre>
 ${POLLY_SRC}/utils/checkout_cloog.sh ${CLOOG_SRC}
-${POLLY_SRC}/configure --prefix=${CLOOG_INSTALL}
+cd ${CLOOG_SRC}
+./configure --prefix=${CLOOG_INSTALL}
 make
 make install
+cd ${BASE}
 </pre>
 
 <h4> Update the installation</h4>
@@ -76,8 +78,10 @@
 only available in a recent version of CLooG.
 <pre>
 ${POLLY_SRC}/utils/checkout_cloog.sh ${CLOOG_SRC}
+cd ${CLOOG_SRC}
 make
 make install
+cd ${BASE}
 </pre>
 
 <h3> Install Pocc (Optional) </h3>





More information about the llvm-commits mailing list