mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-15 12:39:19 +00:00
e8356a79ff
This missing dependency has been causing the Flang buildbots (with BUILD_SHARED_LIBS set to ON) to fail: * http://lab.llvm.org:8011/#/builders/66/builds/542 * http://lab.llvm.org:8011/#/builders/33/builds/764 This missing dependency was exposed by this change: * https://reviews.llvm.org/D91461 This change is fine - the root cause of the failing builds is the missing dependency.
17 lines
232 B
CMake
17 lines
232 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
FrontendOpenACC
|
|
FrontendOpenMP
|
|
Support
|
|
)
|
|
|
|
add_flang_tool(f18-parse-demo
|
|
f18-parse-demo.cpp
|
|
stub-evaluate.cpp
|
|
)
|
|
|
|
target_link_libraries(f18-parse-demo
|
|
PRIVATE
|
|
FortranCommon
|
|
FortranParser
|
|
)
|