- Feb 13, 2016
-
-
Argyrios Kyrtzidis authored
[libclang] Separate the underlying indexing functionality of libclang and introduce it into the clangIndex library. It is a general goodness for libclang itself to mostly be a wrapper of functionality provided by the libraries. llvm-svn: 260760
-
- Jan 14, 2016
-
-
Chris Bieneman authored
This makes it so if you disable building libclang you won't install the headers as part of the 'install' target. llvm-svn: 257828
-
- Nov 12, 2015
-
-
Argyrios Kyrtzidis authored
Also don't create libclang dylib symlinks on darwin. llvm-svn: 252836
-
- Oct 14, 2015
-
-
Chris Bieneman authored
This is to match autoconf where LLVM_SUBMIT_SUBVERSION is usually set to ${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}. llvm-svn: 250278
-
Chris Bieneman authored
[CMake]Getting rid of references to LLVM_SUBMIT_VERSION and LLVM_SUBMIT_SUBVERSION in favor of LLVM_VERSION_MAJOR and LLVM_VERSION_MINOR. LLVM_SUBMIT_VERSION and LLVM_SUBMIT_SUBVERSION are commonly used variable names in the autoconf build system. They seem to have leeched into clang's CMake in a few places, and should just be replaced by the LLVM_VERSION_* variables where appropriate. llvm-svn: 250246
-
- Jul 17, 2015
-
-
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
-
- Jul 08, 2015
-
-
NAKAMURA Takumi authored
llvm-svn: 241661
-
Adrian Prantl authored
of the llvm targets from clang/CodeGen into ClangCheck.cpp and CIndex.cpp. llvm-svn: 241653
-
Adrian Prantl authored
llvm-svn: 241642
-
- Jul 07, 2015
-
-
Adrian Prantl authored
This patch adds ObjectFilePCHContainerOperations uses the LLVM backend to put the contents of a PCH into a __clangast section inside a COFF, ELF, or Mach-O object file container. This is done to facilitate module debugging by makeing it possible to store the debug info for the types defined by a module alongside the AST. rdar://problem/20091852 llvm-svn: 241620
-
- Feb 25, 2015
-
-
Adrian Prantl authored
llvm-svn: 230454
-
Adrian Prantl authored
This is a necessary prerequisite for debugging with modules. The .pcm files become containers that hold the serialized AST which allows us to store debug information in the module file that can be shared by all object files that were built importing the module. This reapplies r230044 with a fixed configure+make build and updated dependencies and testcase requirements. Over the last iteration this version adds - missing target requirements for testcases that specify an x86 triple, - a missing clangCodeGen.a dependency to libClang.a in the make build. rdar://problem/19104245 llvm-svn: 230423
-
- Feb 24, 2015
-
-
Adrian Prantl authored
This reverts commit r230305. Off to fix another round of missing dependencies on various platforms. llvm-svn: 230309
-
Adrian Prantl authored
This is a necessary prerequisite for debugging with modules. The .pcm files become containers that hold the serialized AST which allows us to store debug information in the module file that can be shared by all object files that were built importing the module. rdar://problem/19104245 This reapplies r230044 with a fixed configure+make build and updated dependencies. Take 3. llvm-svn: 230305
-
- Feb 21, 2015
-
-
Adrian Prantl authored
This reverts commit 230099. The Linux configure+make build variant still needs some work. llvm-svn: 230103
-
Adrian Prantl authored
This is a necessary prerequisite for debugging with modules. The .pcm files become containers that hold the serialized AST which allows us to store debug information in the module file that can be shared by all object files that were built importing the module. rdar://problem/19104245 This reapplies r230044 with a fixed configure+make build and updated dependencies. Take 2. llvm-svn: 230089
-
- Feb 20, 2015
-
-
Adrian Prantl authored
This reverts commit r230067. Investigating another batch of problems found by the bots. llvm-svn: 230073
-
Adrian Prantl authored
This is a necessary prerequisite for debugging with modules. The .pcm files become containers that hold the serialized AST which allows us to store debug information in the module file that can be shared by all object files that were built importing the module. rdar://problem/19104245 This reapplies r230044 with a fixed configure+make build and updated dependencies. llvm-svn: 230067
-
Adrian Prantl authored
This reverts commit r230044 while dealing with buildbot breakage. Conflicts: test/Modules/module_container.m llvm-svn: 230052
-
Adrian Prantl authored
This is a necessary prerequisite for debugging with modules. The .pcm files become containers that hold the serialized AST which allows us to store debug information in the module file that can be shared by all object files that were built importing the module. rdar://problem/19104245 llvm-svn: 230044
-
- Jan 20, 2015
-
-
Rafael Espindola authored
This is in preparation for changing the link to use -Wl,-z,defs. llvm-svn: 226609
-
- Oct 30, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 220893
-
- Aug 02, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 214616
-
- Jul 15, 2014
-
-
Alp Toker authored
llvm-svn: 212995
-
- Feb 28, 2014
-
-
Rafael Espindola authored
llvm-svn: 202500
-
- Feb 21, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 201862
-
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
-
- Feb 12, 2014
-
-
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
-
- Jan 24, 2014
-
-
NAKAMURA Takumi authored
+ ClangAttrVisitor + ClangCommentCommandList llvm-svn: 199999
-
- Jan 23, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 199903
-
NAKAMURA Takumi authored
llvm-svn: 199902
-
- Jan 22, 2014
-
-
NAKAMURA Takumi authored
Each functions is exported as "dllexport" in include/clang-c. See also KB835326. llvm-svn: 199799
-
- Jan 20, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 199640
-
- Dec 30, 2013
-
-
Nico Weber authored
Also stop setting passing -dead_strip explicitly for libclang and instead rely on this now happening by default. (And make it happen by default for add_clang_library, which doesn't use the library cmake functions from llvm.) llvm-svn: 198200
-
- Dec 29, 2013
-
-
Nico Weber authored
Now the exports file should have an effect on non-darwin too. llvm-svn: 198176
-
- Dec 10, 2013
-
-
NAKAMURA Takumi authored
llvm-svn: 196916
-
- Nov 13, 2013
-
-
Dmitri Gribenko authored
llvm-svn: 194611
-
Dmitri Gribenko authored
llvm-svn: 194610
-
- Nov 06, 2013
-
-
Argyrios Kyrtzidis authored
- Use the 'libclang.exports' file. - Pass -Wl,-current_version - Set install name to "@rpath" llvm-svn: 194134
-
- Aug 17, 2013
-
-
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
-