[llvm] r280746 - Try to fix a circular dependency in the modules build.
Rafael Espindola via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 6 13:16:20 PDT 2016
Author: rafael
Date: Tue Sep 6 15:16:19 2016
New Revision: 280746
URL: http://llvm.org/viewvc/llvm-project?rev=280746&view=rev
Log:
Try to fix a circular dependency in the modules build.
Modified:
llvm/trunk/CMakeLists.txt
llvm/trunk/lib/CMakeLists.txt
Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=280746&r1=280745&r2=280746&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Tue Sep 6 15:16:19 2016
@@ -743,6 +743,7 @@ if( MINGW )
endif()
# Put this before tblgen. Else we have a circular dependence.
+add_subdirectory(lib/Demangle)
add_subdirectory(lib/Support)
add_subdirectory(lib/TableGen)
Modified: llvm/trunk/lib/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CMakeLists.txt?rev=280746&r1=280745&r2=280746&view=diff
==============================================================================
--- llvm/trunk/lib/CMakeLists.txt (original)
+++ llvm/trunk/lib/CMakeLists.txt Tue Sep 6 15:16:19 2016
@@ -1,6 +1,6 @@
-# `Support' and `TableGen' libraries are added on the top-level CMakeLists.txt
+# `Demangle', `Support' and `TableGen' libraries are added on the top-level
+# CMakeLists.txt
-add_subdirectory(Demangle)
add_subdirectory(IR)
add_subdirectory(IRReader)
add_subdirectory(CodeGen)
More information about the llvm-commits
mailing list