Skip to content
  1. Oct 30, 2010
    • Tobias Grosser's avatar
      Add polly support to the build system. · ea9dca4c
      Tobias Grosser authored
      Update the cmake and autoconf build system to compile polly
      as a shared library if it is checked out into tools/polly. In case
      polly is not checked out, nothing changes.
      This models the way clang can be added to llvm if checked out to tools/clang.
      
      Also rebuild configure.
      
      Patch contributed by ether.
      
      llvm-svn: 117755
      ea9dca4c
  2. Aug 04, 2010
  3. Jul 07, 2010
  4. Jun 01, 2010
  5. May 10, 2010
  6. 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
  7. Apr 17, 2010
  8. Apr 15, 2010
  9. Apr 12, 2010
  10. Apr 09, 2010
  11. Mar 04, 2010
  12. Feb 25, 2010
  13. Feb 23, 2010
  14. 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
  15. Dec 07, 2009
  16. Nov 16, 2009
  17. Nov 12, 2009
  18. Nov 04, 2009
  19. Oct 26, 2009
  20. Sep 27, 2009
  21. Sep 03, 2009
  22. 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
  23. Jul 04, 2009
  24. Jul 03, 2009
  25. 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
  26. Apr 13, 2009
  27. Mar 05, 2009
  28. Mar 03, 2009
  29. Feb 21, 2009
  30. 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
  31. Feb 03, 2009
  32. Jan 09, 2009
Loading