mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-26 13:26:22 +00:00
[flang] fix shared library builds after D136428
https://reviews.llvm.org/D136428 introduced the need for FIRBuilder library to link against HLFIRDialect to satisfy shared builds. The PrintFlangFunctionNames failure is unrelated, it is a build race because many of the headers included in FrontendAction are tablegen generated. So PrintFlangFunctionNames must wait until its headers can be safely used. See https://lab.llvm.org/buildbot/#/builders/191/builds/10340
This commit is contained in:
parent
5b567637e2
commit
fb8886d126
@ -6,5 +6,6 @@ add_llvm_library(flangPrintFunctionNames
|
||||
|
||||
DEPENDS
|
||||
acc_gen
|
||||
flangFrontend
|
||||
omp_gen
|
||||
)
|
||||
|
@ -24,10 +24,12 @@ add_flang_library(FIRBuilder
|
||||
DEPENDS
|
||||
FIRDialect
|
||||
FIRSupport
|
||||
HLFIRDialect
|
||||
${dialect_libs}
|
||||
|
||||
LINK_LIBS
|
||||
FIRDialect
|
||||
FIRSupport
|
||||
HLFIRDialect
|
||||
${dialect_libs}
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user