[llvm-commits] [llvm] r59325 - in /llvm/trunk/cmake/modules: AddLLVM.cmake AddPartiallyLinkedObject.cmake LLVMProcessSources.cmake TableGen.cmake

Oscar Fuentes ofv at wanadoo.es
Fri Nov 14 14:06:14 PST 2008


Author: ofv
Date: Fri Nov 14 16:06:14 2008
New Revision: 59325

URL: http://llvm.org/viewvc/llvm-project?rev=59325&view=rev
Log:
CMake: Fixed dependencies of .cpp source files on .td and tablegenned
files.

Added:
    llvm/trunk/cmake/modules/LLVMProcessSources.cmake
Modified:
    llvm/trunk/cmake/modules/AddLLVM.cmake
    llvm/trunk/cmake/modules/AddPartiallyLinkedObject.cmake
    llvm/trunk/cmake/modules/TableGen.cmake

Modified: llvm/trunk/cmake/modules/AddLLVM.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/AddLLVM.cmake?rev=59325&r1=59324&r2=59325&view=diff

==============================================================================
--- llvm/trunk/cmake/modules/AddLLVM.cmake (original)
+++ llvm/trunk/cmake/modules/AddLLVM.cmake Fri Nov 14 16:06:14 2008
@@ -1,6 +1,8 @@
+include(LLVMProcessSources)
 include(LLVMConfig)
 
 macro(add_llvm_library name)
+  llvm_process_sources( ${ARGN} )
   add_library( ${name} ${ARGN} )
   set( llvm_libs ${llvm_libs} ${name} PARENT_SCOPE)
   set( llvm_lib_targets ${llvm_lib_targets} ${name} PARENT_SCOPE )
@@ -14,6 +16,7 @@
 
 
 macro(add_llvm_executable name)
+  llvm_process_sources( ${ARGN} )
   add_executable(${name} ${ARGN})
   if( LLVM_USED_LIBS )
     foreach(lib ${LLVM_USED_LIBS})

Modified: llvm/trunk/cmake/modules/AddPartiallyLinkedObject.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/AddPartiallyLinkedObject.cmake?rev=59325&r1=59324&r2=59325&view=diff

==============================================================================
--- llvm/trunk/cmake/modules/AddPartiallyLinkedObject.cmake (original)
+++ llvm/trunk/cmake/modules/AddPartiallyLinkedObject.cmake Fri Nov 14 16:06:14 2008
@@ -1,3 +1,4 @@
+include(LLVMProcessSources)
 
 macro(target_name_of_partially_linked_object lib var)
   if( MSVC )
@@ -15,6 +16,7 @@
     set(pll ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}/${lib}.o)
     set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/temp_lib)
     set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/temp_lib)
+    llvm_process_sources( ${ARGN} )
     add_library( ${lib} STATIC ${ARGN})
     if( LLVM_COMMON_DEPENDS )
       add_dependencies( ${lib} ${LLVM_COMMON_DEPENDS} )

Added: llvm/trunk/cmake/modules/LLVMProcessSources.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/LLVMProcessSources.cmake?rev=59325&view=auto

==============================================================================
--- llvm/trunk/cmake/modules/LLVMProcessSources.cmake (added)
+++ llvm/trunk/cmake/modules/LLVMProcessSources.cmake Fri Nov 14 16:06:14 2008
@@ -0,0 +1,13 @@
+include(AddFileDependencies)
+
+function(llvm_process_sources)
+  set( sources ${ARGN} )
+  # Create file dependencies on the tablegenned files, if any.  Seems
+  # that this is not strictly needed, as dependencies of the .cpp
+  # sources on the tablegenned .inc files are detected and handled,
+  # but just in case...
+  foreach( s ${sources} )
+    set( f ${CMAKE_CURRENT_SOURCE_DIR}/${s} )
+    add_file_dependencies( ${f} ${TABLEGEN_OUTPUT} )
+  endforeach(s)
+endfunction(llvm_process_sources)

Modified: llvm/trunk/cmake/modules/TableGen.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/TableGen.cmake?rev=59325&r1=59324&r2=59325&view=diff

==============================================================================
--- llvm/trunk/cmake/modules/TableGen.cmake (original)
+++ llvm/trunk/cmake/modules/TableGen.cmake Fri Nov 14 16:06:14 2008
@@ -3,9 +3,10 @@
 # Adds the name of the generated file to TABLEGEN_OUTPUT.
 
 macro(tablegen ofn)
+  file(GLOB all_tds "*.td")
   add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
     COMMAND ${LLVM_TABLEGEN} ${ARGN} -I ${CMAKE_CURRENT_SOURCE_DIR} -I ${CMAKE_SOURCE_DIR}/lib/Target -I ${LLVM_MAIN_INCLUDE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/${LLVM_TARGET_DEFINITIONS} -o ${ofn}
-    DEPENDS tblgen ${CMAKE_CURRENT_SOURCE_DIR}/${LLVM_TARGET_DEFINITIONS}
+    DEPENDS tblgen ${all_tds}
     COMMENT "Building ${ofn}..."
     )
   set(TABLEGEN_OUTPUT ${TABLEGEN_OUTPUT} ${CMAKE_CURRENT_BINARY_DIR}/${ofn})





More information about the llvm-commits mailing list