Fix documentation for Makefile target name change. install-bytecode is now

just "install" in the runtime directory.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17677 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-11-11 07:30:27 +00:00
parent ff1529b6cf
commit 7863c404ee
2 changed files with 5 additions and 5 deletions

View File

@ -228,7 +228,7 @@ libgcc.a library, which you can find by running
<pre> <pre>
% gmake % gmake
% mkdir $CFEINSTALL/bytecode-libs % mkdir $CFEINSTALL/bytecode-libs
% gmake -C runtime install-bytecode % gmake -C runtime install
% setenv LLVM_LIB_SEARCH_PATH $CFEINSTALL/bytecode-libs % setenv LLVM_LIB_SEARCH_PATH $CFEINSTALL/bytecode-libs
</pre></li> </pre></li>

View File

@ -748,11 +748,11 @@ source code:</p>
<tt>./configure --prefix=[dir]</tt>, defaults to <tt>/usr/local</tt>. <tt>./configure --prefix=[dir]</tt>, defaults to <tt>/usr/local</tt>.
<p> <p>
<dt><tt>gmake install-bytecode</tt> <dt><tt>gmake -C runtime install</tt>
<dd> <dd>
Assuming you built LLVM into $OBJDIR, when this command is run in Assuming you built LLVM into $OBJDIR, when this command is run, it will
$OBJDIR/runtime, it will install bytecode libraries into the GCC front end's install bytecode libraries into the GCC front end's bytecode library
bytecode library directory. If you need to update your bytecode libraries, directory. If you need to update your bytecode libraries,
this is the target to use once you've built them. this is the target to use once you've built them.
<p> <p>
</dl> </dl>