forked from OSchip/llvm-project
[flang] Add dependency on libSemantics to libEvaluate.
When building flang with LLVM HEAD, the unittests fail to link with ld.bfd or ld.gold due to a linker ordering issue. Adding libSemantics as a dependency to libEvaluate seems to fix that issue. Reviewed at: https://github.com/flang-compiler/f18/pull/1104
This commit is contained in:
parent
0f7aedfd48
commit
a1726e65bc
|
@ -32,6 +32,7 @@ target_compile_features(FortranEvaluate PUBLIC cxx_std_17)
|
||||||
target_link_libraries(FortranEvaluate
|
target_link_libraries(FortranEvaluate
|
||||||
FortranCommon
|
FortranCommon
|
||||||
FortranDecimal
|
FortranDecimal
|
||||||
|
FortranSemantics
|
||||||
FortranParser
|
FortranParser
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue