Skip to content
  1. May 07, 2010
    • mike-m's avatar
      Overhauled llvm/clang docs builds. Closes PR6613. · e08af303
      mike-m authored
      NOTE: 2nd part changeset for cfe trunk to follow.
      
      *** PRE-PATCH ISSUES ADDRESSED
      
      - clang api docs fail build from objdir
      - clang/llvm api docs collide in install PREFIX/
      - clang/llvm main docs collide in install
      - clang/llvm main docs have full of hard coded destination
        assumptions and make use of absolute root in static html files;
        namely CommandGuide tools hard codes a website destination
        for cross references and some html cross references assume
        website root paths
      
      *** IMPROVEMENTS
      
      - bumped Doxygen from 1.4.x -> 1.6.3
      - splits llvm/clang docs into 'main' and 'api' (doxygen) build trees
      - provide consistent, reliable doc builds for both main+api docs
      - support buid vs. install vs. website intentions
      - support objdir builds
      - document targets with 'make help'
      - correct clean and uninstall operations
      - use recursive dir delete only where absolutely necessary
      - added call function fn.RMRF which safeguards against botched 'rm -rf';
        if any target (or any variable is evaluated) which attempts
        to remove any dirs which match a hard-coded 'safelist', a verbose
        error will be printed and make will error-stop.
      
      llvm-svn: 103213
      e08af303
  2. Apr 17, 2010
  3. Apr 15, 2010
  4. Apr 12, 2010
  5. Apr 09, 2010
  6. Mar 04, 2010
  7. Feb 25, 2010
  8. Feb 23, 2010
  9. Feb 18, 2010
    • Jeffrey Yasskin's avatar
    • Jeffrey Yasskin's avatar
      Add a shared library for LLVM, named libLLVM2.7svn.(so|dylib), and add an · f750fefa
      Jeffrey Yasskin authored
      --enable-shared configure flag to have the tools linked shared. (2.7svn is just
      $(LLVMVersion) so it'll change to "2.7" in the release.)  Always link the
      example programs shared to test that the shared library keeps working.
      
      On my mac laptop, Debug libLLVM2.7svn.dylib is 39MB, and opt (for example) is
      16M static vs 440K shared.
      
      Two things are less than ideal here:
      1) The library doesn't include any version information. Since we expect to break
      the ABI with every release, this shouldn't be much of a problem. If we do
      release a compatible 2.7.1, we may be able to hack its library to work with
      binaries compiled against 2.7.0, or we can just ask them to recompile. I'm
      hoping to get a real packaging expert to look at this for the 2.8 release.
      2) llvm-config doesn't yet have an option to print link options for the shared
      library. I'll add this as a subsequent patch.
      
      llvm-svn: 96559
      f750fefa
  10. Dec 07, 2009
  11. Nov 16, 2009
  12. Nov 12, 2009
  13. Nov 04, 2009
  14. Oct 26, 2009
  15. Sep 27, 2009
  16. Sep 03, 2009
  17. Aug 18, 2009
    • Anton Korobeynikov's avatar
      The attached patches attempt to fix cross builds. For example, if you · 90e17e78
      Anton Korobeynikov authored
      try to use i686-darwin to build for arm-eabi, you'll quickly run into
      several false assumptions that the target OS must be the same as the
      host OS. These patches split $(OS) into $(HOST_OS) and $(TARGET_OS) to
      help builds like "make check" and the test-suite able to cross
      compile. Along the way a target of *-unknown-eabi is defined as
      "Freestanding" so that TARGET_OS checks have something to work with.
      
      Patch by Sandeep Patel!
      
      llvm-svn: 79296
      90e17e78
  18. Jul 04, 2009
  19. Jul 03, 2009
  20. Apr 17, 2009
    • David Greene's avatar
      · 80f48bd1
      David Greene authored
      Add a --enable-profiling option to configure to build Debug+Profile and
      Opt+Profile tools.  Now we can profile any kind of flavor we build.
      
      llvm-svn: 69351
      80f48bd1
  21. Apr 13, 2009
  22. Mar 05, 2009
  23. Mar 03, 2009
  24. Feb 21, 2009
  25. Feb 04, 2009
    • Nick Lewycky's avatar
      Reapply patch from r62553, with a fix to avoid looking for an ffi.h that isn't · a89ec99f
      Nick Lewycky authored
      there.
      
      This changes the interpreter to use libffi. After this patch, the interpreter
      will barely be able to call any external functions if built on a system without
      libffi installed (just enough to pass 'make check' really). But with libffi,
      we can now call any function that isn't variadic or taking a struct or vector
      parameter (but pointer to struct is fine). Patch by Alexei Svitkine!
      
      llvm-svn: 63723
      a89ec99f
  26. Feb 03, 2009
  27. Jan 09, 2009
  28. Oct 22, 2008
  29. Oct 21, 2008
  30. Oct 03, 2008
    • Jim Grosbach's avatar
      Add support for Canadian Cross builds where the host executables are not · 009db895
      Jim Grosbach authored
      runnable on the build machine.
      
      There are a few bits that need built for the build environment (TableGen).
      This patch builds those bits, and the associated libraries, for the build
      environment as well as the (usual) host environment.
      
      Thanks to Eric C. and Devang P. for pre-commit review.
      
      llvm-svn: 56975
      009db895
  31. Sep 02, 2008
  32. Aug 30, 2008
Loading