[cfe-commits] r170225 - in /cfe/trunk: CMakeLists.txt tools/c-index-test/CMakeLists.txt

Douglas Gregor dgregor at apple.com
Sat Jan 5 09:12:30 PST 2013


On Jan 5, 2013, at 6:22 AM, NAKAMURA Takumi <geek4civic at gmail.com> wrote:

> 2012/12/19 Douglas Gregor <dgregor at apple.com>:
>> 
>> On Dec 14, 2012, at 10:30 AM, NAKAMURA Takumi <geek4civic at gmail.com> wrote:
>> 
>>> Author: chapuni
>>> Date: Fri Dec 14 12:30:20 2012
>>> New Revision: 170225
>>> 
>>> URL: http://llvm.org/viewvc/llvm-project?rev=170225&view=rev
>>> Log:
>>> [CMake] Move libxml2 stuff from clang to llvm/cmake.
>> 
>> This actually broke CMake builds of Clang that don't occur as part of the LLVM build, because...
>> 
>>> Modified:
>>>   cfe/trunk/CMakeLists.txt
>>>   cfe/trunk/tools/c-index-test/CMakeLists.txt
>>> 
>>> Modified: cfe/trunk/CMakeLists.txt
>>> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CMakeLists.txt?rev=170225&r1=170224&r2=170225&view=diff
>>> ==============================================================================
>>> --- cfe/trunk/CMakeLists.txt (original)
>>> +++ cfe/trunk/CMakeLists.txt Fri Dec 14 12:30:20 2012
>>> @@ -139,10 +139,6 @@
>>>  set(CMAKE_MODULE_LINKER_FLAGS "-Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
>>> endif ()
>>> 
>>> -# libxml2 is an optional dependency, required only to run validation
>>> -# tests on XML output.
>>> -find_package(LibXml2)
>>> -
>>> configure_file(
>>>  ${CLANG_SOURCE_DIR}/include/clang/Config/config.h.cmake
>>>  ${CLANG_BINARY_DIR}/include/clang/Config/config.h)
>>> 
>>> Modified: cfe/trunk/tools/c-index-test/CMakeLists.txt
>>> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/c-index-test/CMakeLists.txt?rev=170225&r1=170224&r2=170225&view=diff
>>> ==============================================================================
>>> --- cfe/trunk/tools/c-index-test/CMakeLists.txt (original)
>>> +++ cfe/trunk/tools/c-index-test/CMakeLists.txt Fri Dec 14 12:30:20 2012
>>> @@ -23,8 +23,7 @@
>>>  LINKER_LANGUAGE CXX)
>>> 
>>> # If libxml2 is available, make it available for c-index-test.
>>> -if (LIBXML2_FOUND)
>>> -  add_definitions(${LIBXML2_DEFINITIONS} "-DCLANG_HAVE_LIBXML")
>>> +if (CLANG_HAVE_LIBXML)
>>>  include_directories(${LIBXML2_INCLUDE_DIR})
>>>  target_link_libraries(c-index-test ${LIBXML2_LIBRARIES})
>>> endif()
>> 
>> CLANG_HAVE_LIBXML isn't actually defined in the Clang-only CMake. I fixed it in r170444.
> 
> I suppose it has been processed in config-ix.cmake. Therefore, it
> should be active also on clang-only build. I heard, in the IRC, he
> didn't build clang synchronized to llvm.
> 
> We should refine clang-only cmakefiles. IMHO, it is ugly.

I agree that it is ugly. Unfortunately, it is also useful, and off-hand I don't know of a better way to achieve that effect. 



More information about the cfe-commits mailing list