Skip to content
  1. Feb 13, 2016
  2. Jan 14, 2016
  3. Nov 12, 2015
  4. Oct 14, 2015
  5. Jul 17, 2015
    • Adrian Prantl's avatar
      Make the clang module container format selectable from the command line. · fb2398d0
      Adrian Prantl authored
      - introduces a new cc1 option -fmodule-format=[raw,obj]
        with 'raw' being the default
      - supports arbitrary module container formats that libclang is agnostic to
      - adds the format to the module hash to avoid collisions
      - splits the old PCHContainerOperations into PCHContainerWriter and
        a PCHContainerReader.
      
      Thanks to Richard Smith for reviewing this patch!
      
      llvm-svn: 242499
      fb2398d0
  6. Jul 08, 2015
  7. Jul 07, 2015
  8. Feb 25, 2015
  9. Feb 24, 2015
  10. Feb 21, 2015
  11. Feb 20, 2015
  12. Jan 20, 2015
  13. Oct 30, 2014
  14. Aug 02, 2014
  15. Jul 15, 2014
  16. Feb 28, 2014
  17. Feb 21, 2014
    • NAKAMURA Takumi's avatar
      [CMake] libclang: Use llvm_add_library(SHARED STATIC). · 959c64bb
      NAKAMURA Takumi authored
      llvm-svn: 201862
      959c64bb
    • NAKAMURA Takumi's avatar
      [CMake] Get rid of explicit dependencies to include/clang/*.inc and introduce... · 7da9487d
      NAKAMURA Takumi authored
      [CMake] Get rid of explicit dependencies to include/clang/*.inc and introduce CLANG_TABLEGEN_TARGETS.
      
      This does;
        - clang_tablegen() adds each tblgen'd target to global property CLANG_TABLEGEN_TARGETS as list.
        - List of targets is added to LLVM_COMMON_DEPENDS.
        - all clang libraries and targets depend on generated headers.
      
      You might wonder this would be regression, but in fact, this is little loss.
        - Almost all of clang libraries depend on tblgen'd files and clang-tblgen.
        - clang-tblgen may cause short stall-out but doesn't cause unconditional rebuild.
        - Each library's dependencies to tblgen'd files might vary along headers' structure.
          It made hard to track and update *really optimal* dependencies.
      
      Each dependency to intrinsics_gen and ClangSACheckers is left as DEPENDS.
      
      llvm-svn: 201842
      7da9487d
  18. Feb 12, 2014
    • Dmitri Gribenko's avatar
      Add an option to allow Clang verify source files for a module only once during · f430da4d
      Dmitri Gribenko authored
      the build
      
      When Clang loads the module, it verifies the user source files that the module
      was built from.  If any file was changed, the module is rebuilt.  There are two
      problems with this:
      1. correctness: we don't verify system files (there are too many of them, and
         stat'ing all of them would take a lot of time);
      2. performance: the same module file is verified again and again during a
         single build.
      
      This change allows the build system to optimize source file verification.  The
      idea is based on the fact that while the project is being built, the source
      files don't change.  This allows us to verify the module only once during a
      single build session.  The build system passes a flag,
      -fbuild-session-timestamp=, to inform Clang of the time when the build started.
      The build system also requests to enable this feature by passing
      -fmodules-validate-once-per-build-session.  If these flags are not passed, the
      behavior is not changed.  When Clang verifies the module the first time, it
      writes out a timestamp file.  Then, when Clang loads the module the second
      time, it finds a timestamp file, so it can compare the verification timestamp
      of the module with the time when the build started.  If the verification
      timestamp is too old, the module is verified again, and the timestamp file is
      updated.
      
      llvm-svn: 201224
      f430da4d
  19. Jan 24, 2014
  20. Jan 23, 2014
  21. Jan 22, 2014
  22. Jan 20, 2014
  23. Dec 30, 2013
  24. Dec 29, 2013
  25. Dec 10, 2013
  26. Nov 13, 2013
  27. Nov 06, 2013
  28. Aug 17, 2013
    • Argyrios Kyrtzidis's avatar
      Rename libIDE to libIndex. · 15a2fccb
      Argyrios Kyrtzidis authored
      Per feedback from Chandler, it's better to have libraries with more specific functionality.
      LibIndex will contain the indexing functionality of libclang, which includes USR generation.
      
      llvm-svn: 188601
      15a2fccb
Loading