[llvm-commits] [hlvm] r38396 - /hlvm/trunk/docs/DevelopersGuide.html
Reid Spencer
reid at x10sys.com
Sat Jul 7 17:02:58 PDT 2007
Author: reid
Date: Sat Jul 7 19:02:58 2007
New Revision: 38396
URL: http://llvm.org/viewvc/llvm-project?rev=38396&view=rev
Log:
Correct the instructions for building HLVM. You need to specify the
"debug" target the first time around as well as overriding the MYLLVMGCC
variable (new). This works around the problems with finding llvm-gcc and
llvm-gxx.
Modified:
hlvm/trunk/docs/DevelopersGuide.html
Modified: hlvm/trunk/docs/DevelopersGuide.html
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/docs/DevelopersGuide.html?rev=38396&r1=38395&r2=38396&view=diff
==============================================================================
--- hlvm/trunk/docs/DevelopersGuide.html (original)
+++ hlvm/trunk/docs/DevelopersGuide.html Sat Jul 7 19:02:58 2007
@@ -496,7 +496,8 @@
mkdir build install
cd build
../cfe/configure --prefix=/proj/llvm-gcc4/cfe/install \
- --enable-llvm=/proj/llvm/build --enable-languages=c,c++ --disable-threads
+ --enable-llvm=/proj/llvm/build --enable-languages=c,c++ --disable-threads \
+ --program-prefix=llvm-
make
make install</pre>
<p>Note that the <tt>--disable-threads</tt> option is a temporary workaround
@@ -532,8 +533,8 @@
cd /proj/hlvm
svn co svn://hlvm.org/hlvm hlvm
cd hlvm
- make MYMODE=Debug MYPATH=/proj/llvm/cfe/install:/proj/install \
- MYPREFIX=/proj/install</pre>
+ make debug MYMODE=Debug MYPREFIX=/proj/install MYPATH=/proj/install \
+ MYLLVMGCC=/proj/llvm/cfe/install/bin</pre>
</div>
<h2><a name="style">Coding Style</a></h2>
More information about the llvm-commits
mailing list