8000 [CMake] Warn about UMF_DISABLE_HWLOC being deprecated by lukaszstolarczuk · Pull Request #1308 · oneapi-src/unified-memory-framework · GitHub
[go: up one dir, main page]

Skip to content

[CMake] Warn about UMF_DISABLE_HWLOC being deprecated #1308

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,13 @@ set_property(CACHE UMF_PROXY_LIB_BASED_ON_POOL
PROPERTY STRINGS ${KNOWN_PROXY_LIB_POOLS})
list(APPEND UMF_OPTIONS_LIST UMF_PROXY_LIB_BASED_ON_POOL)

if(UMF_DISABLE_HWLOC)
message(
WARNING
"UMF_DISABLE_HWLOC option is now deprecated and will be removed in v0.12.0 UMF release!"
)
endif()

# --------------------------------------------------------------------------- #
# Setup required variables, definitions; fetch dependencies; include
# sub_directories based on build options; set flags; etc.
Expand Down
Loading
0