[polly] r188624 - Rename "polly-test" in the document and script.
Logan Chien
tzuhsiang.chien at gmail.com
Sun Aug 18 00:33:28 PDT 2013
Author: logan
Date: Sun Aug 18 02:33:28 2013
New Revision: 188624
URL: http://llvm.org/viewvc/llvm-project?rev=188624&view=rev
Log:
Rename "polly-test" in the document and script.
The Makefile rule "polly-test" has been renamed to
"check-polly" in r182171. This CL updates the document and
the automatic build script.
Modified:
polly/trunk/www/get_started.html
polly/trunk/www/polly.sh
Modified: polly/trunk/www/get_started.html
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/get_started.html?rev=188624&r1=188623&r2=188624&view=diff
==============================================================================
--- polly/trunk/www/get_started.html (original)
+++ polly/trunk/www/get_started.html Sun Aug 18 02:33:28 2013
@@ -111,7 +111,7 @@ cd ${BASE}
To build Polly you can either use the autoconf or the cmake build system. At the
moment only the autoconf build system allows to run the llvm test-suite and only
-the cmake build system allows to run 'make polly-test'.
+the cmake build system allows to run 'make check-polly'.
<h4>Set the directory layout:</h4>
<pre>
@@ -136,8 +136,8 @@ make
<h3> Test Polly</h3>
-<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
+<p>To check if Polly works correctly you can run <em>make check-polly</em> for the
+cmake build or <em>make check-polly -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>,
Modified: polly/trunk/www/polly.sh
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/www/polly.sh?rev=188624&r1=188623&r2=188624&view=diff
==============================================================================
--- polly/trunk/www/polly.sh (original)
+++ polly/trunk/www/polly.sh Sun Aug 18 02:33:28 2013
@@ -42,9 +42,9 @@ cd ${LLVM_BUILD}
if which cmake ; then
cmake -DCMAKE_PREFIX_PATH=${CLOOG_INSTALL} ${LLVM_SRC}
make -j$procs -l$procs
- make polly-test
+ make check-polly
else
${LLVM_SRC}/configure --with-cloog=${CLOOG_INSTALL} --with-isl=${CLOOG_INSTALL}
make -j$procs -l$procs
- make polly-test -C tools/polly/test/
+ make check-polly -C tools/polly/test/
fi
More information about the llvm-commits
mailing list