mirror of https://github.com/milvus-io/milvus.git
Merge branch 'branch-0.3.0' into 'branch-0.3.0'
MS-90 Fix arch match incorrect on ARM See merge request megasearch/vecwise_engine!98 Former-commit-id: 1a736a212f4a041974029102cb1458aac50eff06pull/191/head
commit
031ae03841
|
@ -7,6 +7,7 @@ Please mark all change in change log and use the ticket from JIRA.
|
||||||
## Bug
|
## Bug
|
||||||
- MS-80 - Fix server hang issue
|
- MS-80 - Fix server hang issue
|
||||||
- MS-89 - Fix compile failed, libgpufaiss.a link missing
|
- MS-89 - Fix compile failed, libgpufaiss.a link missing
|
||||||
|
- MS-90 - Fix arch match incorrect on ARM
|
||||||
|
|
||||||
## Improvement
|
## Improvement
|
||||||
- MS-82 - Update server startup welcome message
|
- MS-82 - Update server startup welcome message
|
||||||
|
|
|
@ -102,7 +102,8 @@ else()
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm")
|
|
||||||
|
if (NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64")
|
||||||
set(engine_libs
|
set(engine_libs
|
||||||
${engine_libs}
|
${engine_libs}
|
||||||
libquadmath.a
|
libquadmath.a
|
||||||
|
|
Loading…
Reference in New Issue