Skip to content

Commit 62d7b06

Browse files
committed
enable Proxy with static HWLOC
1 parent 57b96f9 commit 62d7b06

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
@@ -434,12 +434,7 @@ if(WINDOWS)
434434
endif()
435435

436436
# set UMF_PROXY_LIB_ENABLED
437-
if(UMF_LINK_HWLOC_STATICALLY)
438-
message(
439-
STATUS
440-
"Disabling the proxy library, because HWLOC is set to link statically which is not supported"
441-
)
442-
elseif(UMF_DISABLE_HWLOC)
437+
if(UMF_DISABLE_HWLOC)
443438
message(STATUS "Disabling the proxy library, because HWLOC is disabled")
444439
elseif(UMF_PROXY_LIB_BASED_ON_POOL STREQUAL SCALABLE)
445440
if(UMF_POOL_SCALABLE_ENABLED)

0 commit comments

Comments
 (0)