[llvm-commits] CVS: llvm/docs/CFEBuildInstrs.html

Reid Spencer reid at x10sys.com
Tue Nov 30 21:15:56 PST 2004



Changes in directory llvm/docs:

CFEBuildInstrs.html updated: 1.29 -> 1.30
---
Log message:

Be a little more explicit about how to configure LLVM with the --prefix
option so that permissions errors don't occur if the default, /usr/local,
is taken.


---
Diffs of the changes:  (+8 -3)

Index: llvm/docs/CFEBuildInstrs.html
diff -u llvm/docs/CFEBuildInstrs.html:1.29 llvm/docs/CFEBuildInstrs.html:1.30
--- llvm/docs/CFEBuildInstrs.html:1.29	Tue Nov 30 22:16:29 2004
+++ llvm/docs/CFEBuildInstrs.html	Tue Nov 30 23:15:44 2004
@@ -94,10 +94,15 @@
 <li><p>Configure and build the LLVM libraries and tools using:</p>
 <pre>
  % cd llvm
- % ./configure [options...]
+ % ./configure --prefix=/some/path/you/can/install/to [options...]
  % gmake tools-only
 </pre>
-    <p>This will build all of the LLVM tools and libraries.</p></li>
+  <p>This will build all of the LLVM tools and libraries. The <tt>--prefix</tt> 
+  option defaults to /usr/local (per configure standards) but unless you are a 
+  system administrator, you probably won't be able to install LLVM there because
+  of permissions. Specify a path into which LLVM can be installed (e.g.
+  <tt>--prefix=/home/user/llvm</tt>).</p>
+</li>
 
 <li><p>Add the directory containing the tools to your PATH.</p>
 <pre>
@@ -328,7 +333,7 @@
 
   Brian Gaeke<br>
   <a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2004/12/01 04:16:29 $
+  Last modified: $Date: 2004/12/01 05:15:44 $
 </address>
 
 </body>






More information about the llvm-commits mailing list