diff options
author | Slava Barinov <v.barinov@samsung.com> | 2024-04-01 18:47:10 +0300 |
---|---|---|
committer | Dongkyun Son <dongkyun.s@samsung.com> | 2024-04-02 10:07:23 +0900 |
commit | db7005965baf04d7f2eb10248127b7121048bf7e (patch) | |
tree | 5216269beeb8a23ddd80dbfb025ed8f4c5ecc6f2 | |
parent | a1b18d8c24ebacbf452e4c80ff54d18ae4fd81bb (diff) | |
download | ncnn-sandbox/dkson95/build.tar.gz ncnn-sandbox/dkson95/build.tar.bz2 ncnn-sandbox/dkson95/build.zip |
Build: add libmvec to aarch64 buildaccepted/tizen/unified/x/20240818.074527accepted/tizen/unified/toolchain/20240429.123925accepted/tizen/unified/toolchain/20240402.055652sandbox/dkson95/build
Change-Id: Ic646b681e7b7ae558763ea64e96af408b18fcbd0
Signed-off-by: Slava Barinov <v.barinov@samsung.com>
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d53bb10..30de1b2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -572,6 +572,8 @@ if(NCNN_TARGET_ARCH STREQUAL "arm" AND CMAKE_SIZEOF_VOID_P EQUAL 8) # disable this feature for fixing linking atomic builtins issue with old ndk target_compile_options(ncnn PRIVATE -mno-outline-atomics) endif() + + target_link_libraries(ncnn PRIVATE mvec) endif() if(NCNN_TARGET_ARCH STREQUAL "mips") |