Skip to content
  1. Aug 30, 2013
  2. Aug 29, 2013
  3. Aug 28, 2013
  4. Aug 27, 2013
  5. Aug 23, 2013
  6. Aug 22, 2013
  7. Aug 21, 2013
  8. Aug 20, 2013
  9. Aug 19, 2013
  10. Aug 18, 2013
  11. Aug 17, 2013
  12. Aug 16, 2013
  13. Aug 10, 2013
  14. Aug 08, 2013
  15. Aug 06, 2013
  16. Aug 02, 2013
  17. Aug 01, 2013
    • Rafael Espindola's avatar
      Use llvm::sys::fs::UniqueID for windows and unix. · f8f91b89
      Rafael Espindola authored
      This unifies the unix and windows versions of FileManager::UniqueDirContainer
      and FileManager::UniqueFileContainer by using UniqueID.
      
      We cannot just replace "struct stat" with llvm::sys::fs::file_status, since we
      want to be able to construct fake ones, and file_status has different members
      on unix and windows.
      
      What the patch does is:
      
      * Record only the information that clang is actually using.
      * Use llvm::sys::fs::status instead of stat and fstat.
      * Use llvm::sys::fs::UniqueID
      * Delete the old windows versions of UniqueDirContainer and
      UniqueFileContainer since the "unix" one now works on windows too.
      
      llvm-svn: 187619
      f8f91b89
    • Daniel Jasper's avatar
      Simplify git-clang-format by using new -lines option. · 695bad54
      Daniel Jasper authored
      Patch by Mark Lodato. Thank you!
      
      llvm-svn: 187592
      695bad54
  18. Jul 26, 2013
    • Bob Wilson's avatar
      Fix up the BUILD_CLANG_ONLY code to work properly after r184794. · eb635b88
      Bob Wilson authored
      When BUILD_CLANG_ONLY is set to YES, it is supposed to simply limit the tools
      that get built.  The change in r184794 broke this feature by moving libclang
      and c-index-test into PARALLEL_DIRS. Those are both supposed to be in DIRS,
      because c-index-test has a build dependency on libclang and cannot be
      reliably built in parallel with it.
      
      llvm-svn: 187246
      eb635b88
  19. Jul 25, 2013
    • David Blaikie's avatar
      Don't forward all assembler arguments untouched to -cc1as · 9260ed6c
      David Blaikie authored
      Use the same filtering for assembly arguments to -cc1as as we do for
      -cc1, this allows a consistent (& more useful) diagnostic experience for
      users (rather than getting an error from -cc1as (which a user shouldn't
      really be thinking about) about --foo, they get an error from clang
      about --foo in -Wa,)
      
      I'm sort of surprised by the separation of -cc1as & the separate
      argument handling, etc, but at least this removes a little bit of the
      duplication.
      
      llvm-svn: 187156
      9260ed6c
  20. Jul 23, 2013
  21. Jul 22, 2013
Loading