mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
Re-land "Fix MSVC dependency issue between Clang-tablegen and LLVM-tablegen"
(was reverted by mistake) llvm-svn: 349672
This commit is contained in:
parent
d6124cff35
commit
f107767821
@ -146,6 +146,12 @@ macro(add_tablegen target project)
|
||||
llvm_ExternalProject_BuildCmd(tblgen_build_cmd ${target}
|
||||
${LLVM_NATIVE_BUILD}
|
||||
CONFIGURATION Release)
|
||||
# Create an artificial dependency between tablegen projects, because they
|
||||
# compile the same dependencies, thus using the same build folders.
|
||||
# FIXME: A proper fix requires sequentially chaining tablegens.
|
||||
if (NOT ${project} STREQUAL LLVM AND TARGET ${project}-tablegen-host)
|
||||
add_dependencies(${project}-tablegen-host LLVM-tablegen-host)
|
||||
endif()
|
||||
add_custom_command(OUTPUT ${${project}_TABLEGEN_EXE}
|
||||
COMMAND ${tblgen_build_cmd}
|
||||
DEPENDS CONFIGURE_LLVM_NATIVE ${target}
|
||||
|
Loading…
Reference in New Issue
Block a user