aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-11-26 20:09:49 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-11-26 20:09:49 +0000
commitf2ec35be40bd3ac71ea528ce766f826565403282 (patch)
tree685d22b4af177bb20e5ff02eeed15cab264867a1
parent1b4fb5a32c9c9b9573ae49d503c3c25bedb66d9d (diff)
Makefiles are now copies over to the object root directory dynamically.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10240 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index b8d817ff6e..ba18b1805c 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -87,6 +87,27 @@ href="http://mail.cs.uiuc.edu/pipermail/llvmdev/2003-November/000554.html">moved
into an 'llvm' C++ namespace</a>, for easier integration with third-party
code. Note that due to a bug in GDB 5.x, to debug namespacified LLVM code,
you will need to upgrade to GDB 6.</li>
+
+<li>
+The build system now copies Makefiles dynamically from the source tree to the
+object tree as subdirectories are built. This means that:
+ <ol>
+ <li>
+ New directories can be added to the source tree, and the build will
+ automatically pick them up (i.e. no need to re-run <tt>configure</tt>).
+ </li>
+
+ <li>
+ You will need to build LLVM from the top of the object tree once to ensure
+ that all of the Makefiles are copied into the object tree subdirectories.
+ </li>
+ </ol>
+</li>
+
+<li>
+The <tt>configure</tt> script will now configure all projects placed in the
+<tt>llvm/projects</tt> directory.
+</li>
</ol>
<p>In this release, the following missing features were implemented:</p>