Browse Source

Merge pull request #5365 from martin-frbg/issue5324

Fix arm64 HAVE_SME setting for DYNAMIC_ARCH builds using CMake
pull/5369/head
Martin Kroeker GitHub 2 months ago
parent
commit
cdebb4fd4b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      kernel/CMakeLists.txt

+ 3
- 0
kernel/CMakeLists.txt View File

@@ -238,6 +238,9 @@ function (build_core TARGET_CORE KDIR TSUFFIX KERNEL_DEFINITIONS)
if (X86_64 OR ARM64)
set(USE_DIRECT_SGEMM true)
endif()
if (UC_TARGET_CORE MATCHES ARMV9SME)
set (HAVE_SME true)
endif ()

if (USE_DIRECT_SGEMM)
# if (NOT DEFINED SGEMMDIRECTKERNEL)


Loading…
Cancel
Save