diff --git a/builder.py b/builder.py index 80972ff6..3b57d04b 100644 --- a/builder.py +++ b/builder.py @@ -87,6 +87,7 @@ class ExtensionBuilder(build_ext): cmake_args += [f"-DSYS_CONF_DIR={install_dir}"] cmake_args += [f"-DCORIOLIS_TOP={install_dir}"] cmake_args += [f"-DCORIOLIS_USER_TOP={install_dir}"] + cmake_args += [f"-DUSE_MANYLINUX=TRUE"] cmake_args += [f"-DPython_EXECUTABLE={sys.executable}"] diff --git a/cumulus/CMakeLists.txt b/cumulus/CMakeLists.txt index 016becef..3bc764bd 100644 --- a/cumulus/CMakeLists.txt +++ b/cumulus/CMakeLists.txt @@ -15,7 +15,7 @@ set_cmake_policies() setup_sysconfdir("${CMAKE_INSTALL_PREFIX}") - find_package(Python 3 REQUIRED COMPONENTS Interpreter Development) + find_package(Python 3 REQUIRED COMPONENTS Interpreter Development.Module) find_package(PythonSitePackages REQUIRED) find_package(HURRICANE REQUIRED) find_package(CORIOLIS REQUIRED) diff --git a/deprecated/katabatic/CMakeLists.txt b/deprecated/katabatic/CMakeLists.txt index 2fbd6b9e..689aff94 100644 --- a/deprecated/katabatic/CMakeLists.txt +++ b/deprecated/katabatic/CMakeLists.txt @@ -19,7 +19,7 @@ setup_boost(program_options) setup_qt() - find_package(Python 3 REQUIRED COMPONENTS Interpreter Development) + find_package(Python 3 REQUIRED COMPONENTS Interpreter Development.Module) find_package(PythonSitePackages REQUIRED) find_package(FLUTE REQUIRED) find_package(HURRICANE REQUIRED) diff --git a/deprecated/kite/CMakeLists.txt b/deprecated/kite/CMakeLists.txt index 94fb97b2..4a86c1f1 100644 --- a/deprecated/kite/CMakeLists.txt +++ b/deprecated/kite/CMakeLists.txt @@ -19,7 +19,7 @@ setup_boost(program_options) setup_qt() - find_package(Python 3 REQUIRED COMPONENTS Interpreter Development) + find_package(Python 3 REQUIRED COMPONENTS Interpreter Development.Module) find_package(PythonSitePackages REQUIRED) find_package(FLUTE REQUIRED) find_package(LEFDEF REQUIRED) diff --git a/deprecated/mauka/CMakeLists.txt b/deprecated/mauka/CMakeLists.txt index c7678924..7ef9ba0d 100644 --- a/deprecated/mauka/CMakeLists.txt +++ b/deprecated/mauka/CMakeLists.txt @@ -15,7 +15,7 @@ setup_boost(program_options) setup_qt() - find_package(Python 3 REQUIRED COMPONENTS Interpreter Development) + find_package(Python 3 REQUIRED COMPONENTS Interpreter Development.Module) find_package(PythonSitePackages REQUIRED) find_package(HURRICANE REQUIRED) find_package(CORIOLIS REQUIRED) diff --git a/deprecated/metis/CMakeLists.txt b/deprecated/metis/CMakeLists.txt index af0f847f..0f579019 100644 --- a/deprecated/metis/CMakeLists.txt +++ b/deprecated/metis/CMakeLists.txt @@ -14,7 +14,7 @@ set_cmake_policies() setup_boost() - find_package(Python 3 REQUIRED COMPONENTS Interpreter Development) + find_package(Python 3 REQUIRED COMPONENTS Interpreter Development.Module) find_package(PythonSitePackages REQUIRED) find_package(HURRICANE REQUIRED) find_package(CORIOLIS REQUIRED) diff --git a/deprecated/nimbus/CMakeLists.txt b/deprecated/nimbus/CMakeLists.txt index 32619a78..9c8d8c8d 100644 --- a/deprecated/nimbus/CMakeLists.txt +++ b/deprecated/nimbus/CMakeLists.txt @@ -14,7 +14,7 @@ setup_boost(program_options) setup_qt() - find_package(Python 3 REQUIRED COMPONENTS Interpreter Development) + find_package(Python 3 REQUIRED COMPONENTS Interpreter Development.Module) find_package(PythonSitePackages REQUIRED) find_package(HURRICANE REQUIRED) find_package(CORIOLIS REQUIRED) diff --git a/deprecated/vlsisapd/CMakeLists.txt b/deprecated/vlsisapd/CMakeLists.txt index b7cfae82..0b0f18db 100644 --- a/deprecated/vlsisapd/CMakeLists.txt +++ b/deprecated/vlsisapd/CMakeLists.txt @@ -18,7 +18,7 @@ setup_boost(program_options python) find_package(LibXml2 REQUIRED) - find_package(Python 3 REQUIRED COMPONENTS Interpreter Development) + find_package(Python 3 REQUIRED COMPONENTS Interpreter Development.Module) find_package(PythonSitePackages REQUIRED) find_package(BISON REQUIRED) find_package(FLEX REQUIRED)