Skip to content

Commit 0fc104b

Browse files
committed
enable Proxy with static HWLOC
1 parent 48ab0a1 commit 0fc104b

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/reusable_basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ jobs:
210210
--build-type ${{matrix.build_type}}
211211
--disjoint-pool
212212
--jemalloc-pool
213-
${{ matrix.install_tbb == 'ON' && matrix.disable_hwloc != 'ON' && matrix.link_hwloc_statically != 'ON' && '--proxy' || '' }}
213+
${{ matrix.install_tbb == 'ON' && matrix.disable_hwloc != 'ON' && '--proxy' || '' }}
214214
--umf-version ${{env.UMF_VERSION}}
215215
${{ matrix.shared_library == 'ON' && '--shared-library' || '' }}
216216

CMakeLists.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -375,12 +375,7 @@ if(WINDOWS)
375375
endif()
376376

377377
# set UMF_PROXY_LIB_ENABLED
378-
if(UMF_LINK_HWLOC_STATICALLY)
379-
message(
380-
STATUS
381-
"Disabling the proxy library, because HWLOC is set to link statically which is not supported"
382-
)
383-
elseif(UMF_DISABLE_HWLOC)
378+
if(UMF_DISABLE_HWLOC)
384379
message(STATUS "Disabling the proxy library, because HWLOC is disabled")
385380
elseif(UMF_PROXY_LIB_BASED_ON_POOL STREQUAL SCALABLE)
386381
if(UMF_POOL_SCALABLE_ENABLED)

0 commit comments

Comments
 (0)