[CMake] Fix Xcode build with LLVM_ENABLE_OBJLIB.
authorJordan Rose <jordan_rose@apple.com>
Thu, 10 Sep 2015 17:18:51 +0000 (17:18 +0000)
committerJordan Rose <jordan_rose@apple.com>
Thu, 10 Sep 2015 17:18:51 +0000 (17:18 +0000)
This amends chapuni's r246156 to handle an Xcode quirk, one even called out
in the CMake documentation:

    Some native build systems may not like targets that have only object files,
    so consider adding at least one real source file to any target that
    references $<TARGET_OBJECTS:objlib>.

I've limited the scope of this hack to Xcode for now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247305 91177308-0d34-0410-b5e6-96231b3b80d8

cmake/dummy.cpp [new file with mode: 0644]
cmake/modules/AddLLVM.cmake

diff --git a/cmake/dummy.cpp b/cmake/dummy.cpp
new file mode 100644 (file)
index 0000000..c4e7e95
--- /dev/null
@@ -0,0 +1 @@
+typedef int dummy;
index 840a860b0163aad402e30b6dafc4bc3c336b3566..8ec6311c3bf4dc5f3f776cc174dfdadd878eb661 100644 (file)
@@ -590,6 +590,12 @@ macro(add_llvm_executable name)
 
   add_windows_version_resource_file(ALL_FILES ${ALL_FILES})
 
+  if(XCODE)
+    # Note: the dummy.cpp source file provides no definitions. However,
+    # it forces Xcode to properly link the static library.
+    list(APPEND ALL_FILES "${LLVM_SOURCE_DIR}/cmake/dummy.cpp")
+  endif()
+
   if( EXCLUDE_FROM_ALL )
     add_executable(${name} EXCLUDE_FROM_ALL ${ALL_FILES})
   else()