Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't import v0.5.0 in Google Colaboratory. #183

Closed
knttnk opened this issue Nov 22, 2022 · 6 comments
Closed

Can't import v0.5.0 in Google Colaboratory. #183

knttnk opened this issue Nov 22, 2022 · 6 comments
Labels
build system Issues with compiling, linking and installing Slycot

Comments

@knttnk
Copy link

knttnk commented Nov 22, 2022

In Google Colaboratory, running the following code raises ImportError.

!pip install slycot
import slycot

Error message:

ImportError                               Traceback (most recent call last)
[<ipython-input-1-2d8c382b7964>](https://localhost:8080/#) in <module>
      1 get_ipython().system('pip install slycot')
----> 2 import slycot

1 frames
[/usr/local/lib/python3.7/dist-packages/slycot/analysis.py](https://localhost:8080/#) in <module>
     20 import numpy as np
     21 
---> 22 from . import _wrapper
     23 from .exceptions import raise_if_slycot_error, SlycotParameterError
     24 

ImportError: /usr/local/lib/python3.7/dist-packages/slycot/_wrapper.cpython-37m-x86_64-linux-gnu.so: undefined symbol: _PyDict_GetItemStringWithError
@bnavigator bnavigator added the build system Issues with compiling, linking and installing Slycot label Nov 22, 2022
@bnavigator
Copy link
Collaborator

bnavigator commented Nov 22, 2022

Hi,

with !pip install slycot, you are effectively telling colab to compile slycot from source. But the environment does not have the proper setup. Probably a numpy header to python headers mismatch.

Try !pip install -v slycot and check the compiler output.
See also python-control/python-control#730

Is colab still maintained? Python 3.7 is quite old.

@bnavigator
Copy link
Collaborator

BTW, installing current master by

!pip install -v git+https://github.com/python-control/Slycot.git
import slycot

worked for me. Maybe it is time to release a new version. Thoughts @roryyorke ?

@roryyorke
Copy link
Collaborator

roryyorke commented Nov 23, 2022 via email

@bnavigator
Copy link
Collaborator

We didn't change much since 0.5, but we did change the build system. I'll give it a try.

@bnavigator
Copy link
Collaborator

v0.5.1 is on PyPI and works for me in Google Colab.

Be sure to update pip first, otherwise there is an error with the metadata in Python 3.7 (?)
Also MKL interferes and produces crashes , so make sure to compile against netlib (python-control/python-control#730)

!pip install -U pip numpy
%env SKBUILD_CONFIGURE_OPTIONS="-DBLA_VENDOR=Generic"
!pip install -v slycot==0.5.1
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Requirement already satisfied: pip in /usr/local/lib/python3.7/dist-packages (21.1.3)
Collecting pip
  Downloading pip-22.3.1-py3-none-any.whl (2.1 MB)
     |████████████████████████████████| 2.1 MB 21.0 MB/s 
Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (1.21.6)
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 21.1.3
    Uninstalling pip-21.1.3:
      Successfully uninstalled pip-21.1.3
Successfully installed pip-22.3.1
env: SKBUILD_CONFIGURE_OPTIONS="-DBLA_VENDOR=Generic"
Using pip 22.3.1 from /usr/local/lib/python3.7/dist-packages/pip (python 3.7)
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Collecting slycot==0.5.1
  Downloading slycot-0.5.1.tar.gz (3.0 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 46.8 MB/s eta 0:00:00
  Running command pip subprocess to install build dependencies
  Using pip 22.3.1 from /usr/local/lib/python3.7/dist-packages/pip (python 3.7)
  Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/, https://us-python.pkg.dev/colab-wheels/public/simple/
  Collecting setuptools>=45
    Downloading setuptools-65.6.0-py3-none-any.whl (1.2 MB)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 27.8 MB/s eta 0:00:00
  Collecting setuptools_scm>=6.3
    Downloading setuptools_scm-7.0.5-py3-none-any.whl (42 kB)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.9/42.9 kB 4.4 MB/s eta 0:00:00
  Collecting wheel
    Downloading wheel-0.38.4-py3-none-any.whl (36 kB)
  Collecting scikit-build>=0.15
    Downloading scikit_build-0.16.2-py3-none-any.whl (78 kB)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 9.0 MB/s eta 0:00:00
  Collecting cmake>=3.14
    Downloading cmake-3.25.0-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.7 MB)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.7/23.7 MB 54.7 MB/s eta 0:00:00
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/7a/7f/5384d4c85a2349bd89ff1c0253bff77c7b617e48af201f2d823fc619189a/numpy-1.22.0rc1.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/a1/4a/8fd68d9a0a9fe5419cdbb697ffc96259fb716bd952c5c64225991add7551/numpy-1.22.0rc2.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/17/d4/d3ac79fca81154e8d3e11232967024f480cfdc87dfeef479803716fb20cb/numpy-1.22.0rc3.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/50/e1/9b0c184f04b8cf5f3c941ffa56fbcbe936888bdac9aa7ba6bae405ac752b/numpy-1.22.0.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/0a/c8/a62767a6b374a0dfb02d2a0456e5f56a372cdd1689dbc6ffb6bf1ddedbc0/numpy-1.22.1.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/e9/6c/c0a8130fe198f27bab92f1b28631e0cc2572295f6b7a31e87efe7448aa1c/numpy-1.22.2.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/64/4a/b008d1f8a7b9f5206ecf70a53f84e654707e7616a771d84c05151a4713e9/numpy-1.22.3.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/f6/d8/ab692a75f584d13c6542c3994f75def5bce52ded9399f52e230fe402819d/numpy-1.22.4.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/33/ad/fc5e3fd1077622b2b32fc3fd36176b36475b63da486eb5578d7f8fb2af29/numpy-1.23.0rc1.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/7b/bc/05e61801a3689f81c8569c057c61fd1d302e989be5c96f6ce7acee46250a/numpy-1.23.0rc2.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/a2/bf/1502d20b4a7f5d5f74c5242748834aaf8cd6ff7cb40b7c64ef58ba47a751/numpy-1.23.0rc3.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/03/c6/14a17e10813b8db20d1e800ff9a3a898e65d25f2b0e9d6a94616f1e3362c/numpy-1.23.0.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/13/b1/0c22aa7ca1deda4915cdec9562f839546bb252eecf6ad596eaec0592bd35/numpy-1.23.1.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/f4/66/17b8e95770478436bf968353c89683ce6f9e14d92e0d4fb3111c09ba18d2/numpy-1.23.2.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/0a/88/f4f0c7a982efdf7bf22f283acf6009b29a9cc5835b684a49f8d3a4adb22f/numpy-1.23.3.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/64/8e/9929b64e146d240507edaac2185cd5516f00b133be5b39250d253be25a64/numpy-1.23.4.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
    Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/42/38/775b43da55fa7473015eddc9a819571517d9a271a9f8134f68fb9be2f212/numpy-1.23.5.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Collecting numpy!=1.23.0
    Downloading numpy-1.21.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (15.7 MB)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 15.7/15.7 MB 64.2 MB/s eta 0:00:00
  Collecting packaging>=20.0
    Downloading packaging-21.3-py3-none-any.whl (40 kB)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.8/40.8 kB 3.9 MB/s eta 0:00:00
  Collecting tomli>=1.0.0
    Downloading tomli-2.0.1-py3-none-any.whl (12 kB)
  Collecting typing-extensions
    Downloading typing_extensions-4.4.0-py3-none-any.whl (26 kB)
  Collecting importlib-metadata
    Downloading importlib_metadata-5.0.0-py3-none-any.whl (21 kB)
  Collecting distro
    Downloading distro-1.8.0-py3-none-any.whl (20 kB)
  Collecting pyparsing!=3.0.5,>=2.0.2
    Downloading pyparsing-3.0.9-py3-none-any.whl (98 kB)
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.3/98.3 kB 8.0 MB/s eta 0:00:00
  Collecting zipp>=0.5
    Downloading zipp-3.10.0-py3-none-any.whl (6.2 kB)
  Installing collected packages: cmake, zipp, wheel, typing-extensions, tomli, setuptools, pyparsing, numpy, distro, packaging, importlib-metadata, setuptools_scm, scikit-build
    Creating /tmp/pip-build-env-jtvcr4sk/overlay/bin
    changing mode of /tmp/pip-build-env-jtvcr4sk/overlay/bin/cmake to 755
    changing mode of /tmp/pip-build-env-jtvcr4sk/overlay/bin/cpack to 755
    changing mode of /tmp/pip-build-env-jtvcr4sk/overlay/bin/ctest to 755
    changing mode of /tmp/pip-build-env-jtvcr4sk/overlay/bin/wheel to 755
    changing mode of /tmp/pip-build-env-jtvcr4sk/overlay/bin/f2py to 755
    changing mode of /tmp/pip-build-env-jtvcr4sk/overlay/bin/f2py3 to 755
    changing mode of /tmp/pip-build-env-jtvcr4sk/overlay/bin/f2py3.7 to 755
    changing mode of /tmp/pip-build-env-jtvcr4sk/overlay/bin/distro to 755
  ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
  ipython 7.9.0 requires jedi>=0.10, which is not installed.
  thinc 8.1.5 requires typing-extensions<4.2.0,>=3.7.4.1; python_version < "3.8", but you have typing-extensions 4.4.0 which is incompatible.
  spacy 3.4.3 requires typing-extensions<4.2.0,>=3.7.4; python_version < "3.8", but you have typing-extensions 4.4.0 which is incompatible.
  confection 0.0.3 requires typing-extensions<4.2.0,>=3.7.4.1; python_version < "3.8", but you have typing-extensions 4.4.0 which is incompatible.
  Successfully installed cmake-3.25.0 distro-1.8.0 importlib-metadata-5.0.0 numpy-1.21.6 packaging-21.3 pyparsing-3.0.9 scikit-build-0.16.2 setuptools-65.6.0 setuptools_scm-7.0.5 tomli-2.0.1 typing-extensions-4.4.0 wheel-0.38.4 zipp-3.10.0
  WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
  Installing build dependencies ... done
  Running command Getting requirements to build wheel
  running egg_info
  writing slycot.egg-info/PKG-INFO
  writing dependency_links to slycot.egg-info/dependency_links.txt
  writing requirements to slycot.egg-info/requires.txt
  writing top-level names to slycot.egg-info/top_level.txt
  listing git files failed - pretending there aren't any
  reading manifest file 'slycot.egg-info/SOURCES.txt'
  reading manifest template 'MANIFEST.in'
  adding license file 'AUTHORS'
  writing manifest file 'slycot.egg-info/SOURCES.txt'
  Getting requirements to build wheel ... done
  Running command Preparing metadata (pyproject.toml)
  running dist_info
  creating /tmp/pip-modern-metadata-8zh67e3f/slycot.egg-info
  writing /tmp/pip-modern-metadata-8zh67e3f/slycot.egg-info/PKG-INFO
  writing dependency_links to /tmp/pip-modern-metadata-8zh67e3f/slycot.egg-info/dependency_links.txt
  writing requirements to /tmp/pip-modern-metadata-8zh67e3f/slycot.egg-info/requires.txt
  writing top-level names to /tmp/pip-modern-metadata-8zh67e3f/slycot.egg-info/top_level.txt
  writing manifest file '/tmp/pip-modern-metadata-8zh67e3f/slycot.egg-info/SOURCES.txt'
  listing git files failed - pretending there aren't any
  reading manifest file '/tmp/pip-modern-metadata-8zh67e3f/slycot.egg-info/SOURCES.txt'
  reading manifest template 'MANIFEST.in'
  adding license file 'AUTHORS'
  writing manifest file '/tmp/pip-modern-metadata-8zh67e3f/slycot.egg-info/SOURCES.txt'
  creating '/tmp/pip-modern-metadata-8zh67e3f/slycot-0.5.1.dist-info'
  Preparing metadata (pyproject.toml) ... done
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/7a/7f/5384d4c85a2349bd89ff1c0253bff77c7b617e48af201f2d823fc619189a/numpy-1.22.0rc1.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/a1/4a/8fd68d9a0a9fe5419cdbb697ffc96259fb716bd952c5c64225991add7551/numpy-1.22.0rc2.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/17/d4/d3ac79fca81154e8d3e11232967024f480cfdc87dfeef479803716fb20cb/numpy-1.22.0rc3.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/50/e1/9b0c184f04b8cf5f3c941ffa56fbcbe936888bdac9aa7ba6bae405ac752b/numpy-1.22.0.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/0a/c8/a62767a6b374a0dfb02d2a0456e5f56a372cdd1689dbc6ffb6bf1ddedbc0/numpy-1.22.1.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/e9/6c/c0a8130fe198f27bab92f1b28631e0cc2572295f6b7a31e87efe7448aa1c/numpy-1.22.2.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/64/4a/b008d1f8a7b9f5206ecf70a53f84e654707e7616a771d84c05151a4713e9/numpy-1.22.3.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/f6/d8/ab692a75f584d13c6542c3994f75def5bce52ded9399f52e230fe402819d/numpy-1.22.4.zip (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/33/ad/fc5e3fd1077622b2b32fc3fd36176b36475b63da486eb5578d7f8fb2af29/numpy-1.23.0rc1.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/7b/bc/05e61801a3689f81c8569c057c61fd1d302e989be5c96f6ce7acee46250a/numpy-1.23.0rc2.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/a2/bf/1502d20b4a7f5d5f74c5242748834aaf8cd6ff7cb40b7c64ef58ba47a751/numpy-1.23.0rc3.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/03/c6/14a17e10813b8db20d1e800ff9a3a898e65d25f2b0e9d6a94616f1e3362c/numpy-1.23.0.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/13/b1/0c22aa7ca1deda4915cdec9562f839546bb252eecf6ad596eaec0592bd35/numpy-1.23.1.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/f4/66/17b8e95770478436bf968353c89683ce6f9e14d92e0d4fb3111c09ba18d2/numpy-1.23.2.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/0a/88/f4f0c7a982efdf7bf22f283acf6009b29a9cc5835b684a49f8d3a4adb22f/numpy-1.23.3.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/64/8e/9929b64e146d240507edaac2185cd5516f00b133be5b39250d253be25a64/numpy-1.23.4.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
  Link requires a different Python (3.7.15 not in: '>=3.8'): https://files.pythonhosted.org/packages/42/38/775b43da55fa7473015eddc9a819571517d9a271a9f8134f68fb9be2f212/numpy-1.23.5.tar.gz (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)
Collecting numpy
  Using cached numpy-1.21.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (15.7 MB)
Building wheels for collected packages: slycot
  Running command Building wheel for slycot (pyproject.toml)


  --------------------------------------------------------------------------------
  -- Trying "Ninja" generator
  --------------------------------
  ---------------------------
  ----------------------
  -----------------
  ------------
  -------
  --
  Not searching for unused variables given on the command line.
  CMake Error: CMake was unable to find a build program corresponding to "Ninja".  CMAKE_MAKE_PROGRAM is not set.  You probably need to select a different build tool.
  -- Configuring incomplete, errors occurred!
  See also "/tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_cmake_test_compile/build/CMakeFiles/CMakeOutput.log".
  --
  -------
  ------------
  -----------------
  ----------------------
  ---------------------------
  --------------------------------
  -- Trying "Ninja" generator - failure
  --------------------------------------------------------------------------------



  --------------------------------------------------------------------------------
  -- Trying "Unix Makefiles" generator
  --------------------------------
  ---------------------------
  ----------------------
  -----------------
  ------------
  -------
  --
  Not searching for unused variables given on the command line.
  -- The C compiler identification is GNU 7.5.0
  -- Detecting C compiler ABI info
  -- Detecting C compiler ABI info - done
  -- Check for working C compiler: /usr/bin/cc - skipped
  -- Detecting C compile features
  -- Detecting C compile features - done
  -- The Fortran compiler identification is GNU 7.5.0
  -- Detecting Fortran compiler ABI info
  -- Detecting Fortran compiler ABI info - done
  -- Check for working Fortran compiler: /usr/bin/gfortran - skipped
  -- Configuring done
  -- Generating done
  -- Build files have been written to: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_cmake_test_compile/build
  --
  -------
  ------------
  -----------------
  ----------------------
  ---------------------------
  --------------------------------
  -- Trying "Unix Makefiles" generator - success
  --------------------------------------------------------------------------------

  Configuring Project
    Working directory:
      /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build
    Command:
      cmake /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31 -G 'Unix Makefiles' -DCMAKE_INSTALL_PREFIX:PATH=/tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install -DPYTHON_VERSION_STRING:STRING=3.7.15 -DSKBUILD:INTERNAL=TRUE -DCMAKE_MODULE_PATH:PATH=/tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/skbuild/resources/cmake -DPYTHON_EXECUTABLE:PATH=/usr/bin/python3 -DPYTHON_INCLUDE_DIR:PATH=/usr/include/python3.7m -DPYTHON_LIBRARY:PATH=/usr/lib/x86_64-linux-gnu/libpython3.7m.so -DPython_EXECUTABLE:PATH=/usr/bin/python3 -DPython_ROOT_DIR:PATH=/usr -DPython_INCLUDE_DIR:PATH=/usr/include/python3.7m -DPython_FIND_REGISTRY:STRING=NEVER -DPython_NumPy_INCLUDE_DIRS:PATH=/tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include -DPython3_EXECUTABLE:PATH=/usr/bin/python3 -DPython3_ROOT_DIR:PATH=/usr -DPython3_INCLUDE_DIR:PATH=/usr/include/python3.7m -DPython3_FIND_REGISTRY:STRING=NEVER -DPython3_NumPy_INCLUDE_DIRS:PATH=/tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include -DCMAKE_BUILD_TYPE:STRING=Release -DBLA_VENDOR=Generic

  -- The C compiler identification is GNU 7.5.0
  -- Detecting C compiler ABI info
  -- Detecting C compiler ABI info - done
  -- Check for working C compiler: /usr/bin/cc - skipped
  -- Detecting C compile features
  -- Detecting C compile features - done
  -- The Fortran compiler identification is GNU 7.5.0
  -- Detecting Fortran compiler ABI info
  -- Detecting Fortran compiler ABI info - done
  -- Check for working Fortran compiler: /usr/bin/gfortran - skipped
  -- Found Python: /usr/bin/python3 (found version "3.7.15") found components: Interpreter Development NumPy Development.Module Development.Embed
  -- Found PythonInterp: /usr/bin/python3 (found version "3.7.15")
  -- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython3.7m.so (found version "3.7.15")
  -- Found NumPy: /usr/include (found version "1.21.6")
  -- Found F2PY: /tmp/pip-build-env-jtvcr4sk/overlay/bin/f2py3 (found version "1.21.6")
  -- Looking for Fortran sgemm
  -- Looking for Fortran sgemm - found
  -- Found BLAS: /usr/lib/x86_64-linux-gnu/libblas.so
  -- Looking for Fortran cheev
  -- Looking for Fortran cheev - found
  -- Found LAPACK: /usr/lib/x86_64-linux-gnu/liblapack.so;/usr/lib/x86_64-linux-gnu/libblas.so
  -- Python headers included from: /usr/include/python3.7m
  -- NumPy headers included from: /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include
  -- F2PY headers included from: /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src;/usr/include
  -- LAPACK: /usr/lib/x86_64-linux-gnu/liblapack.so;/usr/lib/x86_64-linux-gnu/libblas.so
  -- BLAS: /usr/lib/x86_64-linux-gnu/libblas.so
  -- Performing Test Weak Link MODULE -> SHARED (gnu_ld_ignore) - Success
  _modinit_prefix:PyInit_
  -- Configuring done
  -- Generating done
  CMake Warning:
    Manually-specified variables were not used by the project:

      Python3_EXECUTABLE
      Python3_FIND_REGISTRY
      Python3_INCLUDE_DIR
      Python3_NumPy_INCLUDE_DIRS
      Python3_ROOT_DIR
      SKBUILD


  -- Build files have been written to: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build
  [  0%] Building C object CMakeFiles/_f2py_runtime_library.dir/tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c.o
  In file included from /usr/include/numpy/ndarraytypes.h:1809:0,
                   from /usr/include/numpy/ndarrayobject.h:18,
                   from /usr/include/numpy/arrayobject.h:4,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.h:13,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c:2:
  /usr/include/numpy/npy_1_7_deprecated_api.h:15:2: warning: #warning "Using deprecated NumPy API, disable it by " "#defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
   #warning "Using deprecated NumPy API, disable it by " \
    ^~~~~~~
  /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c: In function ‘fortran_getattr’:
  /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c:328:23: warning: implicit declaration of function ‘_PyDict_GetItemStringWithError’; did you mean ‘_PyDict_GetItemIdWithError’? [-Wimplicit-function-declaration]
           PyObject *v = _PyDict_GetItemStringWithError(fp->dict, name);
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                         _PyDict_GetItemIdWithError
  /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c:328:23: warning: initialization makes pointer from integer without a cast [-Wint-conversion]
  [  0%] Linking C static library lib_f2py_runtime_library.a
  [  0%] Built target _f2py_runtime_library
  [  0%] Built target wrapper
  [  0%] Generating _wrappermodule.c, _wrapper-f2pywrappers.f
  Reading fortran codes...
        Reading file '/tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/slycot/src/_wrapper.pyf' (format:free)
        Reading file '/tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/slycot/src/analysis.pyf' (format:free)
        Reading file '/tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/slycot/src/math.pyf' (format:free)
        Reading file '/tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/slycot/src/synthesis.pyf' (format:free)
        Reading file '/tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/slycot/src/transform.pyf' (format:free)
        Reading file '/tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/slycot/src/_helper.pyf' (format:free)
  Post-processing...
        Block: SLYCOT
                        Block: _wrapper
                                        Block: ab01nd
                                        Block: ab05md
                                        Block: ab05nd
                                        Block: ab07nd
                                        Block: ab08nd
                                        Block: ab08nz
                                        Block: ab09ad
                                        Block: ab09ax
                                        Block: ab09bd
                                        Block: ab09md
                                        Block: ab09nd
                                        Block: ab13bd
                                        Block: ab13dd
                                        Block: ab13md
                                        Block: ab13ed
                                        Block: ab13fd
                                        Block: ag08bd
                                        Block: mc01td
                                        Block: mb03rd
                                        Block: mb03vd
                                        Block: mb03vy
                                        Block: mb03wd
                                        Block: mb05md
                                        Block: mb05nd
                                        Block: sb01bd
                                        Block: sb02md
                                        Block: sb02od_n
                                        Block: sb02od_c
                                        Block: sb02od_d
                                        Block: sb02od_b
                                        Block: sb02mt_n
                                        Block: sb02mt_c
                                        Block: sb02mt_nl
                                        Block: sb02mt_cl
                                        Block: sb03md
                                        Block: sb03od
                                        Block: sb04md
                                        Block: sb04qd
                                        Block: sb10ad
                                        Block: sb10dd
                                        Block: sb10fd
                                        Block: sb10hd
                                        Block: sb10jd
                                        Block: sg03ad
                                        Block: sg02ad_g
                                        Block: sg02ad_bn
                                        Block: sg02ad_bc
                                        Block: sg02ad_bd
                                        Block: sg02ad_bb
                                        Block: sg03bd
                                        Block: tb01id
                                        Block: tb03ad_l
                                        Block: tb03ad_r
                                        Block: tb04ad_r
                                        Block: tb04ad_c
                                        Block: tb05ad_ag
                                        Block: tb05ad_ng
                                        Block: tb05ad_nh
                                        Block: tc01od_l
                                        Block: tc01od_r
                                        Block: tc04ad_l
                                        Block: tc04ad_r
                                        Block: td04ad_r
                                        Block: td04ad_c
                                        Block: tf01md
                                        Block: tf01rd
                                        Block: tb01pd
                                        Block: tg01ad
                                        Block: tg01fd_nn
                                        Block: tg01fd_ii
                                        Block: tg01fd_uu
                                        Block: ftruefalse
                                        Block: xerbla
  Post-processing (stage 2)...
  Building modules...
        Building module "_wrapper"...
                Constructing wrapper function "ab01nd"...
                  a,b,ncont,indcon,nblk,z,tau,info = ab01nd(jobz,n,m,a,b,[tol,ldwork])
                Constructing wrapper function "ab05md"...
                  n,a,b,c,d,info = ab05md(n1,m1,p1,n2,p2,a1,b1,c1,d1,a2,b2,c2,d2,[uplo,ldwork])
                Constructing wrapper function "ab05nd"...
                  n,a,b,c,d,info = ab05nd(n1,m1,p1,n2,alpha,a1,b1,c1,d1,a2,b2,c2,d2,[ldwork])
                Constructing wrapper function "ab07nd"...
                  a,b,c,d,rcond,info = ab07nd(n,m,a,b,c,d,[ldwork,overwrite_a,overwrite_b,overwrite_c,overwrite_d])
                Constructing wrapper function "ab08nd"...
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
                  nu,rank_bn,dinfz,nkror,nkrol,infz,kronr,kronl,af,bf,info = ab08nd(n,m,p,a,b,c,d,[equil,tol,ldwork])
                Constructing wrapper function "ab08nz"...
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
                  nu,rank_bn,dinfz,nkror,nkrol,infz,kronr,kronl,af,bf,zwork,info = ab08nz(n,m,p,a,b,c,d,[equil,tol,lzwork])
                Constructing wrapper function "ab09ad"...
                  nr,a,b,c,hsv,iwarn,info = ab09ad(dico,job,equil,ordsel,n,m,p,nr,a,b,c,[tol,ldwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "ab09ax"...
                  nr,a,b,c,hsv,t,ti,iwarn,info = ab09ax(dico,job,ordsel,n,m,p,nr,a,b,c,[tol,ldwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "ab09bd"...
                  nr,a,b,c,d,hsv,iwarn,info = ab09bd(dico,job,equil,ordsel,n,m,p,nr,a,b,c,d,[tol1,tol2,ldwork,overwrite_a,overwrite_b,overwrite_c,overwrite_d])
                Constructing wrapper function "ab09md"...
                  nr,a,b,c,ns,hsv,iwarn,info = ab09md(dico,job,equil,ordsel,n,m,p,nr,alpha,a,b,c,[tol,ldwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "ab09nd"...
                  nr,a,b,c,d,ns,hsv,iwarn,info = ab09nd(dico,job,equil,ordsel,n,m,p,nr,alpha,a,b,c,d,[tol1,tol2,ldwork,overwrite_a,overwrite_b,overwrite_c,overwrite_d])
                Creating wrapper for Fortran function "ab13bd"("ab13bd")...
                Constructing wrapper function "ab13bd"...
                  ab13bd,nq,iwarn,info = ab13bd(dico,jobn,n,m,p,a,b,c,d,tol)
                Constructing wrapper function "ab13dd"...
                  fpeak,gpeak,info = ab13dd(dico,jobe,equil,jobd,n,m,p,fpeak,a,e,b,c,d,[tol])
                Constructing wrapper function "ab13md"...
                  x,bound,d,g,info = ab13md(fact,z,nblock,itype,x)
                Constructing wrapper function "ab13ed"...
                  low,high,info = ab13ed(n,a,[tol])
                Constructing wrapper function "ab13fd"...
                  beta,omega,info = ab13fd(n,a,[tol])
                Constructing wrapper function "ag08bd"...
                  a,e,nfz,nrank,niz,dinfz,nkror,ninfe,nkrol,infz,kronr,infe,kronl,info = ag08bd(equil,l,n,m,p,a,e,b,c,d,tol,ldwork,[overwrite_a,overwrite_e,overwrite_b,overwrite_c,overwrite_d])
                Constructing wrapper function "mc01td"...
                  dp,stable,nz,iwarn,info = mc01td(dico,dp,p)
                Constructing wrapper function "mb03rd"...
                  a,x,nblcks,blsize,wr,wi,info = mb03rd(jobx,sort,n,pmax,a,x,tol,[overwrite_a,overwrite_x])
                Constructing wrapper function "mb03vd"...
                  a,tau,info = mb03vd(n,ilo,ihi,a,[overwrite_a])
                Constructing wrapper function "mb03vy"...
                  a,info = mb03vy(n,ilo,ihi,a,tau,[ldwork,overwrite_a])
                Constructing wrapper function "mb03wd"...
                  h,z,wr,wi,info = mb03wd(job,compz,n,ilo,ihi,iloz,ihiz,h,z,[ldwork,overwrite_h,overwrite_z])
                Constructing wrapper function "mb05md"...
  getarrdims:warning: assumed shape array, using 0 instead of '*'
                  a,v,y,valr,vali,info = mb05md(balanc,n,delta,a,[overwrite_a])
                Constructing wrapper function "mb05nd"...
                  ex,exint,info = mb05nd(n,delta,a,tol,[overwrite_ex,overwrite_exint])
                Constructing wrapper function "sb01bd"...
                  a,wr,wi,nfp,nap,nup,f,z,iwarn,info = sb01bd(dico,n,m,np,alpha,a,b,wr,wi,[tol,ldwork,overwrite_a,overwrite_wr,overwrite_wi])
                Constructing wrapper function "sb02md"...
                  a,q,rcond,wr,wi,s,u,info = sb02md(dico,n,a,g,q,[hinv,uplo,scal,sort,ldwork,overwrite_a])
                Constructing wrapper function "sb02od_n"...
                  rcond,x,alfar,alfai,beta,s,t,info = sb02od_n(dico,n,m,a,b,q,r,l,[uplo,jobl,sort,tol,ldwork])
                Constructing wrapper function "sb02od_c"...
                  rcond,x,alfar,alfai,beta,s,t,info = sb02od_c(dico,n,m,p,a,b,q,r,l,[uplo,jobl,sort,tol,ldwork])
                Constructing wrapper function "sb02od_d"...
                  rcond,x,alfar,alfai,beta,s,t,info = sb02od_d(dico,n,m,p,a,b,q,r,l,[uplo,jobl,sort,tol,ldwork])
                Constructing wrapper function "sb02od_b"...
                  rcond,x,alfar,alfai,beta,s,t,info = sb02od_b(dico,n,m,p,a,b,q,r,l,[uplo,jobl,sort,tol,ldwork])
                Constructing wrapper function "sb02mt_n"...
                  a,b,q,r,l,ipiv,oufact,g,info = sb02mt_n(n,m,b,r,[uplo,ldwork,overwrite_b,overwrite_r])
                Constructing wrapper function "sb02mt_c"...
                  a,b,q,r,l,ipiv,oufact,g,info = sb02mt_c(n,m,b,r,[uplo,overwrite_b,overwrite_r])
                Constructing wrapper function "sb02mt_nl"...
                  a,b,q,r,l,ipiv,oufact,g,info = sb02mt_nl(n,m,a,b,q,r,l,[uplo,ldwork,overwrite_a,overwrite_b,overwrite_q,overwrite_r,overwrite_l])
                Constructing wrapper function "sb02mt_cl"...
                  a,b,q,r,l,ipiv,oufact,g,info = sb02mt_cl(n,m,a,b,q,r,l,[uplo,overwrite_a,overwrite_b,overwrite_q,overwrite_r,overwrite_l])
                Constructing wrapper function "sb03md"...
                  a,u,c,scale,sep,ferr,wr,wi,info = sb03md(dico,n,a,u,c,[job,fact,trana,ldwork,overwrite_a,overwrite_u,overwrite_c])
                Constructing wrapper function "sb03od"...
                  b,scale,wr,wi,info = sb03od(dico,n,m,a,q,b,[fact,trans,ldwork,overwrite_b])
                Constructing wrapper function "sb04md"...
                  a,b,c,z,info = sb04md(n,m,a,b,c,[ldwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "sb04qd"...
                  a,b,c,z,info = sb04qd(n,m,a,b,c,[ldwork,overwrite_a,overwrite_b,overwrite_c])
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check n>=0)" is mapped to C "int" (to override define dict(integer = dict(check n>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check m>=0)" is mapped to C "int" (to override define dict(integer = dict(check m>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
  getctype: "integer(kind=check p>=0)" is mapped to C "int" (to override define dict(integer = dict(check p>=0="<C typespec>")) in /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/.f2py_f2cmap file).
                Constructing wrapper function "sb10ad"...
                  gamma,ak,bk,ck,dk,ac,bc,cc,dc,rcond,info = sb10ad(job,n,m,np,ncon,nmeas,gamma,a,b,c,d,[gtol,actol,liwork,ldwork])
                Constructing wrapper function "sb10dd"...
                  gamma,ak,bk,ck,dk,x,z,rcond,info = sb10dd(n,m,np,ncon,nmeas,gamma,a,b,c,d,[tol,ldwork])
                Constructing wrapper function "sb10fd"...
                  ak,bk,ck,dk,rcond,info = sb10fd(n,m,np,ncon,nmeas,gamma,a,b,c,d,tol,ldwork)
                Constructing wrapper function "sb10hd"...
                  ak,bk,ck,dk,rcond,info = sb10hd(n,m,np,ncon,nmeas,a,b,c,d,[tol,ldwork])
                Constructing wrapper function "sb10jd"...
                  a,b,c,d,nsys,info = sb10jd(n,m,np,a,b,c,d,e,ldwork,[overwrite_a,overwrite_b,overwrite_c,overwrite_d,overwrite_e])
                Constructing wrapper function "sg03ad"...
                  a,e,q,z,x,scale,sep,ferr,alphar,alphai,beta,info = sg03ad(dico,job,fact,trans,uplo,n,a,e,q,z,x,[ldwork])
                Constructing wrapper function "sg02ad_g"...
                  rcondu,x,alfar,alfai,beta,s,t,u,iwarn,info = sg02ad_g(dico,uplo,sort,acc,n,a,e,b,q,[ldwork])
                Constructing wrapper function "sg02ad_bn"...
                  rcondu,x,alfar,alfai,beta,s,t,u,iwarn,info = sg02ad_bn(dico,uplo,jobl,scal,sort,acc,n,m,a,e,b,q,r,l,[tol,ldwork])
                Constructing wrapper function "sg02ad_bc"...
                  rcondu,x,alfar,alfai,beta,s,t,u,iwarn,info = sg02ad_bc(dico,jobl,scal,sort,acc,n,m,p,a,e,b,q,r,l,[tol,ldwork])
                Constructing wrapper function "sg02ad_bd"...
                  rcondu,x,alfar,alfai,beta,s,t,u,iwarn,info = sg02ad_bd(dico,jobl,scal,sort,acc,n,m,p,a,e,b,q,r,l,[tol,ldwork])
                Constructing wrapper function "sg02ad_bb"...
                  rcondu,x,alfar,alfai,beta,s,t,u,iwarn,info = sg02ad_bb(dico,jobl,scal,sort,acc,n,m,p,a,e,b,q,r,l,[tol,ldwork])
                Constructing wrapper function "sg03bd"...
                  b,scale,alphar,alphai,beta,info = sg03bd(dico,n,m,a,e,q,z,b,[fact,trans,ldwork,overwrite_b])
                Constructing wrapper function "tb01id"...
                  maxred,a,b,c,scale,info = tb01id(n,m,p,maxred,a,b,c,[job,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "tb03ad_l"...
                  a,b,c,nr,index_bn,pcoeff,qcoeff,vcoeff,info = tb03ad_l(n,m,p,a,b,c,d,[equil,tol,ldwork])
                Constructing wrapper function "tb03ad_r"...
                  a,b,c,nr,index_bn,pcoeff,qcoeff,vcoeff,info = tb03ad_r(n,m,p,a,b,c,d,[equil,tol,ldwork])
                Constructing wrapper function "tb04ad_r"...
                  a,b,c,nr,index_bn,dcoeff,ucoeff,info = tb04ad_r(n,m,p,a,b,c,d,[tol1,tol2,ldwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "tb04ad_c"...
                  a,b,c,nr,index_bn,dcoeff,ucoeff,info = tb04ad_c(n,m,p,a,b,c,d,[tol1,tol2,ldwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "tb05ad_ag"...
                  a,b,c,rcond,g,evre,evim,hinvb,info = tb05ad_ag(n,m,p,freq,a,b,c,[ldwork,lzwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "tb05ad_ng"...
                  a,b,c,g,hinvb,info = tb05ad_ng(n,m,p,freq,a,b,c,[ldwork,lzwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "tb05ad_nh"...
                  g,hinvb,info = tb05ad_nh(n,m,p,freq,a,b,c,[ldwork,lzwork])
                Constructing wrapper function "tc01od_l"...
                  pcoeff,qcoeff,info = tc01od_l(m,p,indlim,pcoeff,qcoeff)
                Constructing wrapper function "tc01od_r"...
                  info = tc01od_r(p,indlim,pcoeff,qcoeff,[m])
                Constructing wrapper function "tc04ad_l"...
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
                  n,rcond,a,b,c,d,info = tc04ad_l(m,p,index_bn,pcoeff,qcoeff,n,[ldwork])
                Constructing wrapper function "tc04ad_r"...
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
                  n,rcond,a,b,c,d,info = tc04ad_r(m,p,index_bn,pcoeff,qcoeff,n,[ldwork])
                Constructing wrapper function "td04ad_r"...
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
                  nr,a,b,c,d,info = td04ad_r(m,p,index_bn,dcoeff,ucoeff,nr,[tol,ldwork,overwrite_dcoeff,overwrite_ucoeff])
                Constructing wrapper function "td04ad_c"...
  getarrdims:warning: assumed shape array, using 0 instead of '*'
  getarrdims:warning: assumed shape array, using 0 instead of '*'
                  nr,a,b,c,d,info = td04ad_c(m,p,index_bn,dcoeff,ucoeff,nr,[tol,ldwork,overwrite_dcoeff,overwrite_ucoeff])
                Constructing wrapper function "tf01md"...
                  x,y,info = tf01md(n,m,p,ny,a,b,c,d,u,x,[overwrite_x])
                Constructing wrapper function "tf01rd"...
                  h,info = tf01rd(na,nb,nc,n,a,b,c,[ldwork])
                Constructing wrapper function "tb01pd"...
                  a,b,c,nr,info = tb01pd(n,m,p,a,b,c,[job,equil,tol,ldwork,overwrite_a,overwrite_b,overwrite_c])
                Constructing wrapper function "tg01ad"...
                  a,e,b,c,lscale,rscale,info = tg01ad(job,l,n,m,p,thresh,a,e,b,c,[overwrite_a,overwrite_e,overwrite_b,overwrite_c])
                Constructing wrapper function "tg01fd_nn"...
                  a,e,b,c,ranke,rnka22,info = tg01fd_nn(joba,l,n,m,p,a,e,b,c,tol,ldwork,[overwrite_a,overwrite_e,overwrite_b,overwrite_c])
                Constructing wrapper function "tg01fd_ii"...
                  a,e,b,c,q,z,ranke,rnka22,info = tg01fd_ii(joba,l,n,m,p,a,e,b,c,tol,ldwork,[overwrite_a,overwrite_e,overwrite_b,overwrite_c])
                Constructing wrapper function "tg01fd_uu"...
                  a,e,b,c,q,z,ranke,rnka22,info = tg01fd_uu(joba,l,n,m,p,a,e,b,c,q,z,tol,ldwork,[overwrite_a,overwrite_e,overwrite_b,overwrite_c,overwrite_q,overwrite_z])
                Constructing wrapper function "ftruefalse"...
                  ftrue,ffalse = ftruefalse()
                Constructing wrapper function "xerbla"...
                  xerbla(srname,info)
        Wrote C/API module "_wrapper" to file "./_wrappermodule.c"
        Fortran 77 wrappers are saved to "./_wrapper-f2pywrappers.f"
        Building module "SLYCOT"...
        Wrote C/API module "SLYCOT" to file "./SLYCOTmodule.c"
  [  0%] Building C object slycot/CMakeFiles/_wrapper.dir/_wrappermodule.c.o
  In file included from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include/numpy/ndarraytypes.h:1969:0,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include/numpy/arrayobject.h:4,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.h:13,
                   from /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-build/slycot/_wrappermodule.c:16:
  /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
   #warning "Using deprecated NumPy API, disable it with " \
    ^~~~~~~
  [  0%] Building C object slycot/CMakeFiles/_wrapper.dir/tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c.o
  In file included from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include/numpy/ndarraytypes.h:1969:0,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include/numpy/arrayobject.h:4,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.h:13,
                   from /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/f2py/src/fortranobject.c:2:
  /tmp/pip-build-env-jtvcr4sk/overlay/lib/python3.7/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
   #warning "Using deprecated NumPy API, disable it with " \
    ^~~~~~~
  [  0%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/_wrapper-f2pywrappers.f.o
  [  1%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01MD.f.o
  [  1%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01ND.f.o
  [  1%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB01OD.f.o
  [  1%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB04MD.f.o
  [  1%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05MD.f.o
  [  1%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05ND.f.o
  [  2%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05OD.f.o
  [  2%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05PD.f.o
  [  2%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05QD.f.o
  [  2%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05RD.f.o
  [  2%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB05SD.f.o
  [  2%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB07MD.f.o
  [  3%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB07ND.f.o
  [  3%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08MD.f.o
  [  3%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08MZ.f.o
  [  3%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08ND.f.o
  [  3%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NW.f.o
  [  3%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NX.f.o
  [  4%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NY.f.o
  [  4%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB08NZ.f.o
  [  4%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09AD.f.o
  [  4%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09AX.f.o
  [  4%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09BD.f.o
  [  4%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09BX.f.o
  [  5%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09CD.f.o
  [  5%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09CX.f.o
  [  5%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09DD.f.o
  [  5%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ED.f.o
  [  5%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09FD.f.o
  [  5%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09GD.f.o
  [  5%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HD.f.o
  [  6%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HX.f.o
  [  6%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09HY.f.o
  [  6%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ID.f.o
  [  6%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09IX.f.o
  [  6%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09IY.f.o
  [  6%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JD.f.o
  [  7%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JV.f.o
  [  7%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JW.f.o
  [  7%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09JX.f.o
  [  7%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09KD.f.o
  [  7%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09KX.f.o
  [  7%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09MD.f.o
  [  8%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB09ND.f.o
  [  8%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13AD.f.o
  [  8%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13AX.f.o
  [  8%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13BD.f.o
  [  8%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13CD.f.o
  [  8%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13DD.f.o
  [  9%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13DX.f.o
  [  9%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13ED.f.o
  [  9%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13FD.f.o
  [  9%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13ID.f.o
  [  9%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB13MD.f.o
  [  9%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AB8NXZ.f.o
  [ 10%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG07BD.f.o
  [ 10%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BD.f.o
  [ 10%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BY.f.o
  [ 10%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG08BZ.f.o
  [ 10%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/AG8BYZ.f.o
  [ 10%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB01AD.f.o
  [ 10%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB02AD.f.o
  [ 11%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB03AD.f.o
  [ 11%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BB04AD.f.o
  [ 11%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BD01AD.f.o
  [ 11%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/BD02AD.f.o
  [ 11%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DE01OD.f.o
  [ 11%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DE01PD.f.o
  [ 12%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DF01MD.f.o
  [ 12%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01MD.f.o
  [ 12%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01ND.f.o
  [ 12%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01NY.f.o
  [ 12%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DG01OD.f.o
  [ 12%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/DK01MD.f.o
  [ 13%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01QD.f.o
  [ 13%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01RD.f.o
  [ 13%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01SD.f.o
  [ 13%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01TD.f.o
  [ 13%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FB01VD.f.o
  [ 13%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/FD01AD.f.o
  [ 14%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01AD.f.o
  [ 14%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01BD.f.o
  [ 14%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01CD.f.o
  [ 14%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01MD.f.o
  [ 14%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01MY.f.o
  [ 14%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01ND.f.o
  [ 15%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01OD.f.o
  [ 15%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01OY.f.o
  [ 15%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PD.f.o
  [ 15%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PX.f.o
  [ 15%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01PY.f.o
  [ 15%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01QD.f.o
  [ 15%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB01RD.f.o
  [ 16%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB03AD.f.o
  [ 16%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/IB03BD.f.o
  [ 16%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01AD.f.o
  [ 16%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01BD.f.o
  [ 16%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01BZ.f.o
  [ 16%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA01CD.f.o
  [ 17%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02AD.f.o
  [ 17%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02AZ.f.o
  [ 17%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02BD.f.o
  [ 17%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02BZ.f.o
  [ 17%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02CD.f.o
  [ 17%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02CZ.f.o
  [ 18%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02DD.f.o
  [ 18%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ED.f.o
  [ 18%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ES.f.o
  [ 18%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02EZ.f.o
  [ 18%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02FD.f.o
  [ 18%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02GD.f.o
  [ 19%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02GZ.f.o
  [ 19%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02HD.f.o
  [ 19%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02HZ.f.o
  [ 19%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02ID.f.o
  [ 19%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02IZ.f.o
  [ 19%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02JD.f.o
  [ 20%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02JZ.f.o
  [ 20%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02MD.f.o
  [ 20%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02MZ.f.o
  [ 20%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02NZ.f.o
  [ 20%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02OD.f.o
  [ 20%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02OZ.f.o
  [ 20%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02PD.f.o
  [ 21%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MA02PZ.f.o
  [ 21%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01KD.f.o
  [ 21%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01LD.f.o
  [ 21%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01MD.f.o
  [ 21%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01ND.f.o
  [ 21%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OC.f.o
  [ 22%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OD.f.o
  [ 22%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OE.f.o
  [ 22%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OH.f.o
  [ 22%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OO.f.o
  [ 22%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OS.f.o
  [ 22%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01OT.f.o
  [ 23%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01PD.f.o
  [ 23%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01QD.f.o
  [ 23%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RB.f.o
  [ 23%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RD.f.o
  [ 23%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RH.f.o
  [ 23%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RT.f.o
  [ 24%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RU.f.o
  [ 24%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RW.f.o
  [ 24%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RX.f.o
  [ 24%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01RY.f.o
  [ 24%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01SD.f.o
  [ 24%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01SS.f.o
  [ 25%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01TD.f.o
  [ 25%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UD.f.o
  [ 25%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UW.f.o
  [ 25%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UX.f.o
  [ 25%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UY.f.o
  [ 25%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01UZ.f.o
  [ 25%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01VD.f.o
  [ 26%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01WD.f.o
  [ 26%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01XD.f.o
  [ 26%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01XY.f.o
  [ 26%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01YD.f.o
  [ 26%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB01ZD.f.o
  [ 26%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CD.f.o
  [ 27%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CU.f.o
  [ 27%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CV.f.o
  [ 27%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CX.f.o
  [ 27%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02CY.f.o
  [ 27%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02DD.f.o
  [ 27%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ED.f.o
  [ 28%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02FD.f.o
  [ 28%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02GD.f.o
  [ 28%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02HD.f.o
  [ 28%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ID.f.o
  [ 28%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02JD.f.o
  [ 28%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02JX.f.o
  [ 29%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02KD.f.o
  [ 29%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02MD.f.o
  [ 29%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02ND.f.o
  [ 29%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02NY.f.o
  [ 29%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02OD.f.o
  [ 29%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02PD.f.o
  [ 30%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02QD.f.o
  [ 30%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02QY.f.o
  [ 30%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02RD.f.o
  [ 30%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02RZ.f.o
  [ 30%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02SD.f.o
  [ 30%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02SZ.f.o
  [ 30%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02TD.f.o
  [ 31%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02TZ.f.o
  [ 31%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UD.f.o
  [ 31%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UU.f.o
  [ 31%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UV.f.o
  [ 31%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02UW.f.o
  [ 31%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02VD.f.o
  [ 32%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02WD.f.o
  [ 32%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02XD.f.o
  [ 32%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB02YD.f.o
  [ 32%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AB.f.o
  [ 32%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AD.f.o
  [ 32%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AE.f.o
  [ 33%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AF.f.o
  [ 33%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AG.f.o
  [ 33%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AH.f.o
  [ 33%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03AI.f.o
  [ 33%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BA.f.o
  [ 33%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BB.f.o
  [ 34%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BC.f.o
  [ 34%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BD.f.o
  [ 34%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BE.f.o
  [ 34%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BF.f.o
  [ 34%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BG.f.o
  [ 34%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03BZ.f.o
  [ 35%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03CD.f.o
  [ 35%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03CZ.f.o
  [ 35%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03DD.f.o
  [ 35%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03DZ.f.o
  [ 35%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ED.f.o
  [ 35%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03FD.f.o
  [ 35%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03FZ.f.o
  [ 36%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03GD.f.o
  [ 36%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03GZ.f.o
  [ 36%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03HD.f.o
  [ 36%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03HZ.f.o
  [ 36%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ID.f.o
  [ 36%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03IZ.f.o
  [ 37%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JD.f.o
  [ 37%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JP.f.o
  [ 37%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03JZ.f.o
  [ 37%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KA.f.o
  [ 37%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KB.f.o
  [ 37%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KC.f.o
  [ 38%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KD.f.o
  [ 38%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03KE.f.o
  [ 38%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LD.f.o
  [ 38%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LF.f.o
  [ 38%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LP.f.o
  [ 38%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03LZ.f.o
  [ 39%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03MD.f.o
  [ 39%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03MY.f.o
  [ 39%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ND.f.o
  [ 39%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03NY.f.o
  [ 39%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03OD.f.o
  [ 39%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03OY.f.o
  [ 40%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03PD.f.o
  [ 40%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03PY.f.o
  [ 40%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QD.f.o
  [ 40%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QG.f.o
  [ 40%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QV.f.o
  [ 40%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QW.f.o
  [ 40%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QX.f.o
  [ 41%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03QY.f.o
  [ 41%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RD.f.o
  [ 41%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RW.f.o
  [ 41%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RX.f.o
  [ 41%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RY.f.o
  [ 41%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03RZ.f.o
  [ 42%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03SD.f.o
  [ 42%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03TD.f.o
  [ 42%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03TS.f.o
  [ 42%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03UD.f.o
  [ 42%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VD.f.o
  [ 42%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VW.f.o
  [ 43%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03VY.f.o
  [ 43%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WA.f.o
  [ 43%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WD.f.o
  [ 43%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03WX.f.o
  [ 43%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XD.f.o
  [ 43%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XP.f.o
  [ 44%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XS.f.o
  [ 44%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XU.f.o
  [ 44%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03XZ.f.o
  [ 44%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YA.f.o
  [ 44%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YD.f.o
  [ 44%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03YT.f.o
  [ 45%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ZA.f.o
  [ 45%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB03ZD.f.o
  [ 45%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04AD.f.o
  [ 45%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04AZ.f.o
  [ 45%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BD.f.o
  [ 45%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BP.f.o
  [ 45%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04BZ.f.o
  [ 46%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04CD.f.o
  [ 46%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DB.f.o
  [ 46%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DD.f.o
  [ 46%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DI.f.o
  [ 46%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DL.f.o
  [ 46%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DP.f.o
  [ 47%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DS.f.o
  [ 47%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DY.f.o
  [ 47%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04DZ.f.o
  [ 47%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ED.f.o
  [ 47%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04FD.f.o
  [ 47%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04FP.f.o
  [ 48%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04GD.f.o
  [ 48%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04HD.f.o
  [ 48%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ID.f.o
  [ 48%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04IY.f.o
  [ 48%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04IZ.f.o
  [ 48%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04JD.f.o
  [ 49%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04KD.f.o
  [ 49%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04LD.f.o
  [ 49%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04MD.f.o
  [ 49%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ND.f.o
  [ 49%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04NY.f.o
  [ 49%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OD.f.o
  [ 50%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OW.f.o
  [ 50%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OX.f.o
  [ 50%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04OY.f.o
  [ 50%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PA.f.o
  [ 50%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PB.f.o
  [ 50%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PU.f.o
  [ 50%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04PY.f.o
  [ 51%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QB.f.o
  [ 51%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QC.f.o
  [ 51%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QF.f.o
  [ 51%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QS.f.o
  [ 51%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04QU.f.o
  [ 51%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RB.f.o
  [ 52%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04RU.f.o
  [ 52%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04SU.f.o
  [ 52%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TB.f.o
  [ 52%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TS.f.o
  [ 52%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TT.f.o
  [ 52%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TU.f.o
  [ 53%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TV.f.o
  [ 53%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TW.f.o
  [ 53%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TX.f.o
  [ 53%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04TY.f.o
  [ 53%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04UD.f.o
  [ 53%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04VD.f.o
  [ 54%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04VX.f.o
  [ 54%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WD.f.o
  [ 54%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WP.f.o
  [ 54%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WR.f.o
  [ 54%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04WU.f.o
  [ 54%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04XD.f.o
  [ 55%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04XY.f.o
  [ 55%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04YD.f.o
  [ 55%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04YW.f.o
  [ 55%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB04ZD.f.o
  [ 55%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05MD.f.o
  [ 55%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05MY.f.o
  [ 55%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05ND.f.o
  [ 56%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05OD.f.o
  [ 56%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB05OY.f.o
  [ 56%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3JZP.f.o
  [ 56%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3LZP.f.o
  [ 56%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3OYZ.f.o
  [ 56%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB3PYZ.f.o
  [ 57%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DBZ.f.o
  [ 57%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DLZ.f.o
  [ 57%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MB4DPZ.f.o
  [ 57%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01MD.f.o
  [ 57%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01ND.f.o
  [ 57%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01OD.f.o
  [ 58%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01PD.f.o
  [ 58%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01PY.f.o
  [ 58%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01QD.f.o
  [ 58%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01RD.f.o
  [ 58%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SD.f.o
  [ 58%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SW.f.o
  [ 59%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SX.f.o
  [ 59%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01SY.f.o
  [ 59%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01TD.f.o
  [ 59%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01VD.f.o
  [ 59%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01WD.f.o
  [ 59%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC01XD.f.o
  [ 60%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03MD.f.o
  [ 60%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03ND.f.o
  [ 60%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03NX.f.o
  [ 60%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MC03NY.f.o
  [ 60%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03AD.f.o
  [ 60%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BA.f.o
  [ 60%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BB.f.o
  [ 61%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BD.f.o
  [ 61%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BF.f.o
  [ 61%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BX.f.o
  [ 61%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/MD03BY.f.o
  [ 61%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01AD.f.o
  [ 61%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01AY.f.o
  [ 62%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BA.f.o
  [ 62%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BB.f.o
  [ 62%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BD.f.o
  [ 62%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BE.f.o
  [ 62%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BF.f.o
  [ 62%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BP.f.o
  [ 63%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BQ.f.o
  [ 63%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BR.f.o
  [ 63%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BS.f.o
  [ 63%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BU.f.o
  [ 63%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BV.f.o
  [ 63%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BW.f.o
  [ 64%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BX.f.o
  [ 64%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/NF01BY.f.o
  [ 64%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BD.f.o
  [ 64%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BX.f.o
  [ 64%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01BY.f.o
  [ 64%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01DD.f.o
  [ 65%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01FY.f.o
  [ 65%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB01MD.f.o
  [ 65%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02CX.f.o
  [ 65%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MD.f.o
  [ 65%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MR.f.o
  [ 65%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MS.f.o
  [ 65%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MT.f.o
  [ 66%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MU.f.o
  [ 66%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MV.f.o
  [ 66%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MW.f.o
  [ 66%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02MX.f.o
  [ 66%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02ND.f.o
  [ 66%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OD.f.o
  [ 67%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OU.f.o
  [ 67%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OV.f.o
  [ 67%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OW.f.o
  [ 67%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OX.f.o
  [ 67%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02OY.f.o
  [ 67%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02PD.f.o
  [ 68%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02QD.f.o
  [ 68%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02RD.f.o
  [ 68%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02RU.f.o
  [ 68%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB02SD.f.o
  [ 68%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MD.f.o
  [ 68%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MU.f.o
  [ 69%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MV.f.o
  [ 69%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MW.f.o
  [ 69%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MX.f.o
  [ 69%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03MY.f.o
  [ 69%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OD.f.o
  [ 69%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OR.f.o
  [ 70%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OS.f.o
  [ 70%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OT.f.o
  [ 70%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OU.f.o
  [ 70%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OV.f.o
  [ 70%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OY.f.o
  [ 70%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03OZ.f.o
  [ 70%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03PD.f.o
  [ 71%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QD.f.o
  [ 71%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QX.f.o
  [ 71%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03QY.f.o
  [ 71%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03RD.f.o
  [ 71%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SD.f.o
  [ 71%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SX.f.o
  [ 72%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03SY.f.o
  [ 72%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03TD.f.o
  [ 72%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB03UD.f.o
  [ 72%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MD.f.o
  [ 72%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MR.f.o
  [ 72%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MU.f.o
  [ 73%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MW.f.o
  [ 73%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04MY.f.o
  [ 73%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04ND.f.o
  [ 73%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NV.f.o
  [ 73%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NW.f.o
  [ 73%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NX.f.o
  [ 74%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04NY.f.o
  [ 74%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04OD.f.o
  [ 74%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04OW.f.o
  [ 74%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PD.f.o
  [ 74%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PX.f.o
  [ 74%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04PY.f.o
  [ 75%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QD.f.o
  [ 75%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QR.f.o
  [ 75%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QU.f.o
  [ 75%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04QY.f.o
  [ 75%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RD.f.o
  [ 75%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RV.f.o
  [ 75%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RW.f.o
  [ 76%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RX.f.o
  [ 76%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB04RY.f.o
  [ 76%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB06ND.f.o
  [ 76%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08CD.f.o
  [ 76%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08DD.f.o
  [ 76%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08ED.f.o
  [ 77%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08FD.f.o
  [ 77%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08GD.f.o
  [ 77%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08HD.f.o
  [ 77%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08MD.f.o
  [ 77%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08MY.f.o
  [ 77%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08ND.f.o
  [ 78%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB08NY.f.o
  [ 78%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB09MD.f.o
  [ 78%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10AD.f.o
  [ 78%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10DD.f.o
  [ 78%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ED.f.o
  [ 78%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10FD.f.o
  [ 79%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10HD.f.o
  [ 79%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ID.f.o
  [ 79%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10JD.f.o
  [ 79%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10KD.f.o
  [ 79%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10LD.f.o
  [ 79%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10MD.f.o
  [ 80%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10PD.f.o
  [ 80%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10QD.f.o
  [ 80%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10RD.f.o
  [ 80%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10SD.f.o
  [ 80%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10TD.f.o
  [ 80%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10UD.f.o
  [ 80%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10VD.f.o
  [ 81%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10WD.f.o
  [ 81%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10YD.f.o
  [ 81%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ZD.f.o
  [ 81%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB10ZP.f.o
  [ 81%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16AD.f.o
  [ 81%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16AY.f.o
  [ 82%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16BD.f.o
  [ 82%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16CD.f.o
  [ 82%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SB16CY.f.o
  [ 82%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02AD.f.o
  [ 82%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CV.f.o
  [ 82%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CW.f.o
  [ 83%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02CX.f.o
  [ 83%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG02ND.f.o
  [ 83%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AD.f.o
  [ 83%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AX.f.o
  [ 83%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03AY.f.o
  [ 83%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BD.f.o
  [ 84%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BR.f.o
  [ 84%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BS.f.o
  [ 84%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BT.f.o
  [ 84%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BU.f.o
  [ 84%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BV.f.o
  [ 84%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BW.f.o
  [ 85%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BX.f.o
  [ 85%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BY.f.o
  [ 85%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SG03BZ.f.o
  [ 85%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ID.f.o
  [ 85%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01IZ.f.o
  [ 85%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01KD.f.o
  [ 85%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01KX.f.o
  [ 86%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01LD.f.o
  [ 86%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01MD.f.o
  [ 86%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ND.f.o
  [ 86%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01PD.f.o
  [ 86%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01PX.f.o
  [ 86%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01TD.f.o
  [ 87%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01TY.f.o
  [ 87%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UD.f.o
  [ 87%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UX.f.o
  [ 87%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01UY.f.o
  [ 87%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01VD.f.o
  [ 87%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01VY.f.o
  [ 88%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01WD.f.o
  [ 88%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01WX.f.o
  [ 88%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01XD.f.o
  [ 88%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01XZ.f.o
  [ 88%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01YD.f.o
  [ 88%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB01ZD.f.o
  [ 89%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB03AD.f.o
  [ 89%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB03AY.f.o
  [ 89%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04AD.f.o
  [ 89%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04AY.f.o
  [ 89%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BD.f.o
  [ 89%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BV.f.o
  [ 90%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BW.f.o
  [ 90%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04BX.f.o
  [ 90%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB04CD.f.o
  [ 90%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TB05AD.f.o
  [ 90%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC01OD.f.o
  [ 90%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC04AD.f.o
  [ 90%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TC05AD.f.o
  [ 91%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD03AD.f.o
  [ 91%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD03AY.f.o
  [ 91%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD04AD.f.o
  [ 91%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TD05AD.f.o
  [ 91%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MD.f.o
  [ 91%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MX.f.o
  [ 92%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01MY.f.o
  [ 92%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01ND.f.o
  [ 92%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01OD.f.o
  [ 92%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01PD.f.o
  [ 92%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01QD.f.o
  [ 92%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TF01RD.f.o
  [ 93%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01AD.f.o
  [ 93%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01AZ.f.o
  [ 93%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01BD.f.o
  [ 93%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01CD.f.o
  [ 93%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01DD.f.o
  [ 93%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ED.f.o
  [ 94%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01FD.f.o
  [ 94%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01FZ.f.o
  [ 94%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01GD.f.o
  [ 94%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HD.f.o
  [ 94%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HU.f.o
  [ 94%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HX.f.o
  [ 95%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01HY.f.o
  [ 95%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ID.f.o
  [ 95%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01JD.f.o
  [ 95%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01JY.f.o
  [ 95%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01KD.f.o
  [ 95%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01KZ.f.o
  [ 95%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01LD.f.o
  [ 96%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01LY.f.o
  [ 96%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01MD.f.o
  [ 96%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01ND.f.o
  [ 96%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01NX.f.o
  [ 96%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OA.f.o
  [ 96%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OB.f.o
  [ 97%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OD.f.o
  [ 97%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01OZ.f.o
  [ 97%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01PD.f.o
  [ 97%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01QD.f.o
  [ 97%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/TG01WD.f.o
  [ 97%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01BD.f.o
  [ 98%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01CD.f.o
  [ 98%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01DD.f.o
  [ 98%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01MD.f.o
  [ 98%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01MZ.f.o
  [ 98%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UD01ND.f.o
  [ 98%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/UE01MD.f.o
  [ 99%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/delctg.f.o
  [ 99%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/select.f.o
  [ 99%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SLCT_DLATZM.f.o
  [ 99%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/SLICOT-Reference/src/SLCT_ZLATZM.f.o
  [ 99%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/ftruefalse.f.o
  [ 99%] Building Fortran object slycot/CMakeFiles/_wrapper.dir/src/XERBLA.f.o
  [100%] Linking Fortran shared module _wrapper.cpython-37m-x86_64-linux-gnu.so
  [100%] Built target _wrapper
  Install the project...
  -- Install configuration: "Release"
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/_wrapper.cpython-37m-x86_64-linux-gnu.so
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/__init__.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/examples.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/exceptions.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/analysis.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/math.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/synthesis.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/transform.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/__init__.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_ab01.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_ab08n.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_ag08bd.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_examples.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_exceptions.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_mb.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_mc.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_sb.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_analysis.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_transform.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_sg02ad.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_sg03ad.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_tb05ad.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_td04ad.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_tg01ad.py
  -- Installing: /tmp/pip-install-2yw03t8z/slycot_5927341ec238491a8e236a6b77445c31/_skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_tg01fd.py

  copying slycot/version.py -> _skbuild/linux-x86_64-3.7/cmake-install/slycot/version.py
  copying slycot/tests/test_ab13md.py -> _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_ab13md.py

  running bdist_wheel
  running build
  running build_py
  creating _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37
  creating _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/synthesis.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/version.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/transform.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/math.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/examples.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/__init__.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/exceptions.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/analysis.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  creating _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_ab01.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_sg02ad.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_td04ad.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_tg01ad.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_ag08bd.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_transform.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_ab08n.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_mb.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_ab13md.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_exceptions.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_sg03ad.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_tb05ad.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_analysis.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/__init__.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_tg01fd.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_mc.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_sb.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/tests/test_examples.py -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests
  running egg_info
  writing slycot.egg-info/PKG-INFO
  writing dependency_links to slycot.egg-info/dependency_links.txt
  writing requirements to slycot.egg-info/requires.txt
  writing top-level names to slycot.egg-info/top_level.txt
  listing git files failed - pretending there aren't any
  reading manifest file 'slycot.egg-info/SOURCES.txt'
  reading manifest template 'MANIFEST.in'
  adding license file 'AUTHORS'
  writing manifest file 'slycot.egg-info/SOURCES.txt'
  copying _skbuild/linux-x86_64-3.7/cmake-install/slycot/_wrapper.cpython-37m-x86_64-linux-gnu.so -> _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot
  copied 26 files
  running build_ext
  installing to _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel
  running install
  running install_lib
  creating _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64
  creating _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel
  creating _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/synthesis.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/version.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/_wrapper.cpython-37m-x86_64-linux-gnu.so -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/transform.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  creating _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_ab01.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_sg02ad.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_td04ad.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_tg01ad.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_ag08bd.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_transform.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_ab08n.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_mb.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_ab13md.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_exceptions.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_sg03ad.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_tb05ad.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_analysis.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/__init__.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_tg01fd.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_mc.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_sb.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/tests/test_examples.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot/tests
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/math.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/examples.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/__init__.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/exceptions.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copying _skbuild/linux-x86_64-3.7/setuptools/lib.linux-x86_64-cpython-37/slycot/analysis.py -> _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot
  copied 27 files
  running install_egg_info
  Copying slycot.egg-info to _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot-0.5.1-py3.7.egg-info
  running install_scripts
  copied 0 files
  creating _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel/slycot-0.5.1.dist-info/WHEEL
  creating '/tmp/pip-wheel-upqdmsvw/tmpxrn6cs2u/slycot-0.5.1-cp37-cp37m-linux_x86_64.whl' and adding '_skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel' to it
  adding 'slycot/__init__.py'
  adding 'slycot/_wrapper.cpython-37m-x86_64-linux-gnu.so'
  adding 'slycot/analysis.py'
  adding 'slycot/examples.py'
  adding 'slycot/exceptions.py'
  adding 'slycot/math.py'
  adding 'slycot/synthesis.py'
  adding 'slycot/transform.py'
  adding 'slycot/version.py'
  adding 'slycot/tests/__init__.py'
  adding 'slycot/tests/test_ab01.py'
  adding 'slycot/tests/test_ab08n.py'
  adding 'slycot/tests/test_ab13md.py'
  adding 'slycot/tests/test_ag08bd.py'
  adding 'slycot/tests/test_analysis.py'
  adding 'slycot/tests/test_examples.py'
  adding 'slycot/tests/test_exceptions.py'
  adding 'slycot/tests/test_mb.py'
  adding 'slycot/tests/test_mc.py'
  adding 'slycot/tests/test_sb.py'
  adding 'slycot/tests/test_sg02ad.py'
  adding 'slycot/tests/test_sg03ad.py'
  adding 'slycot/tests/test_tb05ad.py'
  adding 'slycot/tests/test_td04ad.py'
  adding 'slycot/tests/test_tg01ad.py'
  adding 'slycot/tests/test_tg01fd.py'
  adding 'slycot/tests/test_transform.py'
  adding 'slycot-0.5.1.dist-info/AUTHORS'
  adding 'slycot-0.5.1.dist-info/METADATA'
  adding 'slycot-0.5.1.dist-info/WHEEL'
  adding 'slycot-0.5.1.dist-info/top_level.txt'
  adding 'slycot-0.5.1.dist-info/RECORD'
  removing _skbuild/linux-x86_64-3.7/setuptools/bdist.linux-x86_64/wheel
  Building wheel for slycot (pyproject.toml) ... done
  Created wheel for slycot: filename=slycot-0.5.1-cp37-cp37m-linux_x86_64.whl size=2022422 sha256=d945d3bc318151659cb01f3ed477a71c8df4c6052ca65ba31999482fe8ecb66f
  Stored in directory: /root/.cache/pip/wheels/a3/49/68/e0697a1044e6c05b424878ed9dd6f713522a7af4967d8f4ef4
Successfully built slycot
Installing collected packages: numpy, slycot
  Attempting uninstall: numpy
    Found existing installation: numpy 1.21.6
    Uninstalling numpy-1.21.6:
      Removing file or directory /usr/bin/f2py
      Removing file or directory /usr/local/bin/f2py
      Removing file or directory /usr/local/bin/f2py3
      Removing file or directory /usr/local/bin/f2py3.7
      Removing file or directory /usr/local/lib/python3.7/dist-packages/numpy-1.21.6.dist-info/
      Removing file or directory /usr/local/lib/python3.7/dist-packages/numpy.libs/
      Removing file or directory /usr/local/lib/python3.7/dist-packages/numpy/
      Successfully uninstalled numpy-1.21.6
  changing mode of /usr/local/bin/f2py to 755
  changing mode of /usr/local/bin/f2py3 to 755
  changing mode of /usr/local/bin/f2py3.7 to 755
Successfully installed numpy-1.21.6 slycot-0.5.1
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: The following packages were previously imported in this runtime:
  [numpy]
You must restart the runtime in order to use newly installed versions.
!pip install pytest scipy
import slycot
print(slycot.version.version_tuple)
slycot.test()
(0, 5, 1)
============================= test session starts ==============================
platform linux -- Python 3.7.15, pytest-3.6.4, py-1.11.0, pluggy-0.7.1
rootdir: /content, inifile:
plugins: typeguard-2.7.1
collected 116 items

slycot/tests/test_ab01.py .                                              [  0%]
slycot/tests/test_ab08n.py ..                                            [  2%]
slycot/tests/test_ab13md.py .......                                      [  8%]
slycot/tests/test_ag08bd.py ....                                         [ 12%]
slycot/tests/test_analysis.py ...................                        [ 28%]
slycot/tests/test_examples.py .............                              [ 39%]
slycot/tests/test_exceptions.py ...                                      [ 42%]
slycot/tests/test_mb.py ...........                                      [ 51%]
slycot/tests/test_mc.py ...                                              [ 54%]
slycot/tests/test_sb.py .............................                    [ 79%]
slycot/tests/test_sg02ad.py .                                            [ 80%]
slycot/tests/test_sg03ad.py ...                                          [ 82%]
slycot/tests/test_tb05ad.py ......                                       [ 87%]
slycot/tests/test_td04ad.py .......                                      [ 93%]
slycot/tests/test_tg01ad.py .                                            [ 94%]
slycot/tests/test_tg01fd.py ..                                           [ 96%]
slycot/tests/test_transform.py ....                                      [100%]

========================== 116 passed in 4.56 seconds ==========================

@knttnk
Copy link
Author

knttnk commented Nov 29, 2022

Thank you! It works for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build system Issues with compiling, linking and installing Slycot
Projects
None yet
Development

No branches or pull requests

3 participants