Skip to content
  1. Apr 15, 2010
  2. Apr 12, 2010
  3. Apr 09, 2010
  4. Mar 04, 2010
  5. Feb 25, 2010
  6. Feb 23, 2010
  7. 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
  8. Dec 07, 2009
  9. Nov 16, 2009
  10. Nov 12, 2009
  11. Nov 04, 2009
  12. Oct 26, 2009
  13. Sep 27, 2009
  14. Sep 03, 2009
  15. 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
  16. Jul 04, 2009
  17. Jul 03, 2009
  18. 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
  19. Apr 13, 2009
  20. Mar 05, 2009
  21. Mar 03, 2009
  22. Feb 21, 2009
  23. 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
  24. Feb 03, 2009
  25. Jan 09, 2009
  26. Oct 22, 2008
  27. Oct 21, 2008
  28. 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
  29. Sep 02, 2008
  30. Aug 30, 2008
  31. Mar 31, 2008
Loading