1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

Try to fix a circular dependency in the modules build.

llvm-svn: 280746
This commit is contained in:
Rafael Espindola 2016-09-06 20:16:19 +00:00
parent ba7e5d7ba1
commit 66de9e0d16
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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)