build: fix build error in Windows env with OneAPI setup (#10107)

This commit is contained in:
Zhenwei Jin 2024-11-01 11:09:59 +08:00 committed by GitHub
parent 85679d37f3
commit e597e50794
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1402,7 +1402,7 @@ list(APPEND GGML_EXTRA_LIBS_PRIVATE Threads::Threads)
find_library(MATH_LIBRARY m)
if (MATH_LIBRARY)
if (NOT WIN32 OR NOT GGML_SYCL)
if (NOT WIN32 OR NOT DEFINED ENV{ONEAPI_ROOT})
list(APPEND GGML_EXTRA_LIBS_PRIVATE m)
endif()
endif()