aocl-da & aocl-utils: fix missing compiler dependencies (#50029)

This commit is contained in:
AMD Toolchain Support 2025-04-14 12:48:29 +05:30 committed by GitHub
parent fa9dcb43bd
commit 74f78bd24f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -53,6 +53,8 @@ class AoclDa(CMakePackage):
)
depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("fortran", type="build")
depends_on("cmake@3.22:", type="build")
for vers in ["5.0"]:

View File

@ -47,7 +47,8 @@ class AoclUtils(CMakePackage):
variant("shared", default=True, when="@4.2:", description="build shared library")
variant("examples", default=False, description="enable examples")
depends_on("cxx", type="build") # generated
depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("cmake@3.22:", type="build")
depends_on("doxygen", when="+doc")