From 59615d3823c040f9734670c967ad747a90f35604 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Wed, 26 Nov 2003 20:09:49 +0000 Subject: [PATCH] Makefiles are now copies over to the object root directory dynamically. llvm-svn: 10240 --- docs/ReleaseNotes.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index b8d817ff6e6..ba18b1805c3 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, 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. + +
  • +The build system now copies Makefiles dynamically from the source tree to the +object tree as subdirectories are built. This means that: +
      +
    1. + New directories can be added to the source tree, and the build will + automatically pick them up (i.e. no need to re-run configure). +
    2. + +
    3. + 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. +
    4. +
    +
  • + +
  • +The configure script will now configure all projects placed in the +llvm/projects directory. +
  • In this release, the following missing features were implemented: