Skip to content

Commit

Permalink
Generalized to Python_EXECUTABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
Crivella committed Sep 30, 2024
1 parent 7212d55 commit aca3df7
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions easybuild/easyblocks/generic/cmakemake.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,18 @@ def configure_step(self, srcdir=None, builddir=None):
# disable CMake user package repository
options['CMAKE_FIND_USE_PACKAGE_REGISTRY'] = 'OFF'

# ensure CMake uses PATH to determine python without prioritizing a virtualenv
# necessary to pick up on the correct python version when `eb` is run from a virtualenv
options['Python3_FIND_VIRTUALENV'] = 'STANDARD'
# ensure CMake uses EB python, not system or virtualenv python
python_root = get_software_root('Python')
if python_root:
python_version = LooseVersion(get_software_version('Python'))
python_exe = os.path.join(python_root, 'bin', 'python')
options['Python_EXECUTABLE'] = python_exe
# This is needed if someone is still using `find_package(PythonInterp ...)` in their CMakeLists.txt
options['PYTHON_EXECUTABLE'] = python_exe
if python_version >= "3":
options['Python3_EXECUTABLE'] = python_exe
else:
options['Python2_EXECUTABLE'] = python_exe

if not self.cfg.get('allow_system_boost', False):
boost_root = get_software_root('Boost')
Expand Down

0 comments on commit aca3df7

Please sign in to comment.