From 5cb80d8b893548a5e9aa96c2afd7e8543beeccff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Mon, 19 Aug 2024 17:03:58 +0200 Subject: [PATCH] [CMake] Fix hwloc configure params Around changes in #667, perhaps in merge conflict resolution extra hwloc configure params were accidentally removed (ref. 660). --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9854dfa1f..dfe433c7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -173,8 +173,8 @@ else() COMMAND ./configure --prefix=${hwloc_targ_BINARY_DIR} --enable-static=yes --enable-shared=no --disable-libxml2 - --disable-pciaccess --disable-levelzero CFLAGS=-fPIC - CXXFLAGS=-fPIC + --disable-pciaccess --disable-levelzero --disable-opencl + --disable-cuda --disable-nvml CFLAGS=-fPIC CXXFLAGS=-fPIC WORKING_DIRECTORY ${hwloc_targ_SOURCE_DIR} OUTPUT ${hwloc_targ_SOURCE_DIR}/Makefile DEPENDS ${hwloc_targ_SOURCE_DIR}/configure)