Browse Source

Make sure to use the arm version of dynamic.c in ARM64 DYNAMIC_ARCH

cf. #1908
tags/v0.3.5
Martin Kroeker GitHub 7 years ago
parent
commit
2b355592e3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      driver/others/CMakeLists.txt

+ 5
- 1
driver/others/CMakeLists.txt View File

@@ -47,7 +47,11 @@ GenerateNamedObjects("abs.c" "DOUBLE" "z_abs" 0 "" "" 1)
GenerateNamedObjects("openblas_get_config.c;openblas_get_parallel.c" "" "" 0 "" "" 1)

if (DYNAMIC_ARCH)
list(APPEND COMMON_SOURCES dynamic.c)
if (ARM64)
list(APPEND COMMON_SOURcES dynamic_arm64.c)
else ()
list(APPEND COMMON_SOURCES dynamic.c)
endif ()
else ()
list(APPEND COMMON_SOURCES parameter.c)
endif ()


Loading…
Cancel
Save