[llvm-commits] [hlvm] r38395 - /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: 38395

URL: http://llvm.org/viewvc/llvm-project?rev=38395&view=rev
Log:
Put in a note about the --disable-threads option being needed.

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=38395&r1=38394&r2=38395&view=diff

==============================================================================
--- hlvm/trunk/docs/DevelopersGuide.html (original)
+++ hlvm/trunk/docs/DevelopersGuide.html Sat Jul  7 19:02:58 2007
@@ -496,9 +496,13 @@
   mkdir build install
   cd build
   ../cfe/configure --prefix=/proj/llvm-gcc4/cfe/install \
-    --enable-llvm=/proj/llvm/build --enable-languages=c,c++
+    --enable-llvm=/proj/llvm/build --enable-languages=c,c++ --disable-threads
   make
   make install</pre>
+  <p>Note that the <tt>--disable-threads</tt> option is a temporary workaround
+  until LLVM's PR822 (supporting weak-external linkage) is implemented. This
+  should be fixed by September, 2006 at which time --disable-threads won't be
+  needed any more.</p>
   <p><em class="warning">IMPORTANT: </em>You <em>MUST</em> install llvm-gcc4
   into its own installation area. Do <em>NOT</em> be tempted to install it into
   <tt>/proj/install</tt>. If you do, it will overwrite your gcc 3.4.6





More information about the llvm-commits mailing list