Skip to content
  1. Jan 18, 2013
  2. Dec 11, 2012
  3. Nov 16, 2012
  4. Oct 09, 2012
  5. Sep 24, 2012
  6. Sep 19, 2012
  7. Sep 13, 2012
  8. Sep 11, 2012
  9. Aug 24, 2012
  10. Aug 22, 2012
  11. Aug 10, 2012
  12. Jul 25, 2012
  13. Jun 25, 2012
    • Chandler Carruth's avatar
      Another big step toward a viable CMake build system for CompilerRT, · c78ad00c
      Chandler Carruth authored
      ASan, and friends.
      
      This explicitly switches the CompilerRT CMake build to require CMake
      version 2.8.8 or newer which provides first-class support for "object"
      libraries which consist of a pile of '.o' files -- exactly what is
      desired for composing runtime libraries. I've gone ahead and switched to
      using this.
      
      I've also added the interception library which I missed initially. And
      I've added proper dependencies between the various libraries. With this,
      I'm able to build archives for asan that appear to contain all of the
      necessary .o files.
      
      The final tweak here is to start setting up the compile flags and macro
      defines expected by ASan and its helper libraries. These may not be
      entirely correct currently, they're based loosely on my reading of the
      old Makefiles. However, they can be tweaked more easily now that they're
      wired up properly.
      
      llvm-svn: 159129
      c78ad00c
  14. Jun 22, 2012
  15. Jun 20, 2012
    • Chandler Carruth's avatar
      Resuming work on the compiler-rt CMake build at long long last. In order · bf22bd21
      Chandler Carruth authored
      to get it working again, two changes were needed:
      
      - I had to give up on glob-based file expansion. This just isn't well
        supported by CMake, and until we convince upstream there of its value,
        it's not worth dealing with the pain.
      - Add the common library as otherwise even ASan won't build.
      
      This now builds again, although the "correctness" of it is a touch
      debatable. ;] Specifically, there is no merging of the common runtime
      library with the asan runtime library into a single archive file. I'm
      not really sure what the best technique is for that, and it may be
      influenced by the ongoing discussion about how best to link runtime
      libraries.
      
      Note of course that this is still very much WIP. It doesn't entirely
      work yet, and remains disabled by the LLVM projects/CMakeLists.txt until
      it is in a working state.
      
      llvm-svn: 158811
      bf22bd21
  16. Apr 05, 2012
    • Chandler Carruth's avatar
      Initial, very rough cut at a new CMake build system for compiler-rt. · 1f5d5c0e
      Chandler Carruth authored
      Some high-level notes:
      
      1) An explicit goal is to support building compiler-rt as a subproject
         build, checked out into the projects/compiler-rt directory. There are
         many other possible ways of building the code here, but this is
         optimized for development on LLVM/Clang/compiler-rt, and incremental
         trial and testing of the toolchain.
      2) The current support is targeted at Linux. I would love to see this
         generalized to other platforms, but for the sake of simplicity in
         testing, I'm focusing here first.
      
      Much of this patch was paired with Manuel, and I credit him with the
      majority of the work here.
      
      Some important caveats that I'll be working on in subsequent patches:
      
      1) This uses the host compiler rather than using the just-built-clang.
      2) Currently only x86 is supported.
      3) Currently, none of the tests are built or run.
      4) Uses CMake's builtin globbing which doesn't update correctly.
      5) This is still turned off from LLVM's CMake build until these issues
         are addressed
      
      llvm-svn: 154060
      1f5d5c0e
    • Chandler Carruth's avatar
      Remove the old, and non-functional CMake build system from CompilerRT. · 6acfaaf3
      Chandler Carruth authored
      I cannot build any part of this successfully on either Linux or Darwin,
      and the replacement is worlds simpler by requiring that this be built as
      a subproject of LLVM. If this breaks you for any reason, please let me
      know, and let me know what your use case is.
      
      llvm-svn: 154059
      6acfaaf3
  17. Oct 29, 2009
  18. Sep 14, 2009
  19. Aug 09, 2009
  20. Aug 05, 2009
  21. Aug 03, 2009
Loading