[clang-tools-extra] r198693 - Initial checkin of new module-map-checker tool.

NAKAMURA Takumi geek4civic at gmail.com
Sun Jan 12 19:29:15 PST 2014


2014/1/8 John Thompson <John.Thompson.JTSoftware at gmail.com>:
> Author: jtsoftware
> Date: Tue Jan  7 09:22:08 2014
> New Revision: 198693
>
> URL: http://llvm.org/viewvc/llvm-project?rev=198693&view=rev
> Log:
> Initial checkin of new module-map-checker tool.

> Added: clang-tools-extra/trunk/module-map-checker/CMakeLists.txt
> URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/module-map-checker/CMakeLists.txt?rev=198693&view=auto
> ==============================================================================
> --- clang-tools-extra/trunk/module-map-checker/CMakeLists.txt (added)
> +++ clang-tools-extra/trunk/module-map-checker/CMakeLists.txt Tue Jan  7 09:22:08 2014
> @@ -0,0 +1,16 @@
> +set(LLVM_LINK_COMPONENTS
> +  ${LLVM_TARGETS_TO_BUILD}
> +  asmparser
> +  support
> +  mc
> +  )

It was redundant to bring in extra dependencies.
Fixed in r199072.

> +add_clang_executable(module-map-checker
> +  ModuleMapChecker.cpp
> +  )
> +
> +target_link_libraries(module-map-checker
> +  clangTooling
> +  clangBasic
> +  clangRewriteFrontend
> +  )



More information about the cfe-commits mailing list