PX4 / PX4-Autopilot

PX4 Autopilot Software
https://px4.io
BSD 3-Clause "New" or "Revised" License
8.28k stars 13.43k forks source link

ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message) #18413

Open sanket1211996 opened 2 years ago

sanket1211996 commented 2 years ago

I run the command make "px4_sitl jmavsim", it failing and giving below error I tried all solution on the internet nothing worked.

Screen Shot 2021-10-11 at 9 15 28 PM
dagar commented 2 years ago

The kconfiglib dependency came in last week. You'll need to update the dependencies (look under Tools/setup) or jump back to slightly older PX4.

sanket1211996 commented 2 years ago

@dagar could you suggest any older version which is working. Because I installed kconfiglib with "pip3 install kconfiglib", but it still gives same error.

dagar commented 2 years ago

You need to make sure it's the same python environment that's being used within cmake.

The kconfig change merged about 5 days ago. Here's the last commit before. https://github.com/PX4/PX4-Autopilot/commit/0cae3c129dd751e92ef5785ad7ba2b86ce14e4f3

ganesh-androidev commented 2 years ago

I get a Following error on latest checkout, Any help @dagar $ make px4_sitl jmavsim

-- PX4 version: v1.13.0-alpha1-3631-gc2cbab1e98 -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.7.5", minimum required is "3") -- PX4 config file: /Users/gramamoorthy/developer/Firmware/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH

please install using "pip3 install kconfiglib"

Call Stack (most recent call first): CMakeLists.txt:168 (include)

-- Configuring incomplete, errors occurred! Error: /Users/gramamoorthy/developer/Firmware/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1

dagar commented 2 years ago

Did you try installing kconfiglib (error output)?

please install using "pip3 install kconfiglib"

Another way to do it is through the build make px4_sitl_default install_python_requirements and then it uses the correct python.

ganesh-androidev commented 2 years ago

Yeah , I did. Please , refer my cmd's and output ( err msg).

$ pip3 install kconfiglib Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: kconfiglib in /Users//Library/Python/3.8/lib/python/site-packages (14.1.0)

$ make px4_sitl_default install_python_requirements -- PX4 version: v1.13.0-alpha1-3631-gc2cbab1e98 -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.7.5", minimum required is "3") -- PX4 config file: /Users//developer/Firmware/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH

please install using "pip3 install kconfiglib"

Call Stack (most recent call first): CMakeLists.txt:168 (include)

-- Configuring incomplete, errors occurred! Error: /Users//developer/Firmware/build/px4_sitl_default is not a directory make: *** [px4_sitl_default] Error 1

dagar commented 2 years ago

Try with /usr/local/bin/python3 -m pip install kconfiglib?

It looks like there's confusion between a system default 3.8 and python 3.7.5 found by cmake.

ganesh-androidev commented 2 years ago

Thanks Dagar that helped. i used --user to install.

$ /usr/local/bin/python3 -m pip install kconfiglib --user

Any idea on below error :

Firmware % make px4_sitl jmavsim

[70/521] Generating Mavlink development: src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Traceback (most recent call last): File "/Users/gramamoorthy/developer/Firmware/src/modules/mavlink/mavlink/pymavlink/tools/mavgen.py", line 16, in from pymavlink.generator import mavgen File "/Users/gramamoorthy/developer/Firmware/src/modules/mavlink/mavlink/pymavlink/generator/mavgen.py", line 26, in from future import standard_library ModuleNotFoundError: No module named 'future' [71/521] Building CXX object src/modules/mc_att_control/CMakeFiles/modulesmc_att_control.dir/mc_att_control_main.cpp.o FAILED: mavlink/development/development.h /Users/gramamoorthy/developer/Firmware/build/px4_sitl_default/mavlink/development/development.h cd /Users/gramamoorthy/developer/Firmware/build/px4_sitl_default/src/modules/mavlink && /usr/local/bin/python3 /Users/gramamoorthy/developer/Firmware/src/modules/mavlink/mavlink/pymavlink/tools/mavgen.py --lang C --wire-protocol 2.0 --output /Users/gramamoorthy/developer/Firmware/build/px4_sitl_default/mavlink /Users/gramamoorthy/developer/Firmware/src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml [89/521] Building CXX object src/modules/mc_att_control/CMakeFiles/modulesmc_att_control.dir/mc_att_control_main.cpp.o ninja: build stopped: subcommand failed. make: *** [px4_sitl] Error 1

ganesh-androidev commented 2 years ago

This worked

/usr/local/bin/python3 -m pip install future --user

and i re-run this : /usr/local/bin/python3 -m pip install numpy --user

mengchaoheng commented 2 years ago

the same problem,I don't know how to fix it. @dagar

dagar commented 2 years ago

the same problem,I don't know how to fix it. @dagar

@mengchaoheng can you paste the full output of what you're trying? A lot of the confusion comes from having multiple versions of python on your system. You need to make sure the one that PX4 cmake finds has all the dependencies installed.

From PX4-Autopilot try...

$ python3 -m pip install -r Tools/setup/requirements.txt

If that doesn't work take note of the specific python found by PX4 cmake configure and use the full path explicitly. Screenshot from 2022-02-27 11-20-59

In my case that would be /usr/bin/python3.

$ /usr/bin/python3 -m pip install -r Tools/setup/requirements.txt
mengchaoheng commented 2 years ago

@dagar output as follow:

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % pip3 install kconfiglib Defaulting to user installation because normal site-packages is not writeable Collecting kconfiglib Using cached kconfiglib-14.1.0-py2.py3-none-any.whl (145 kB) Installing collected packages: kconfiglib WARNING: The scripts alldefconfig, allmodconfig, allnoconfig, allyesconfig, defconfig, genconfig, guiconfig, listnewconfig, menuconfig, oldconfig, olddefconfig, savedefconfig and setconfig are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed kconfiglib-14.1.0 WARNING: You are using pip version 20.2.3; however, version 22.0.3 is available. You should consider upgrading via the '/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip' command. mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % git status On branch master Your branch is up to date with 'origin/master'. nothing to commit, working tree clean mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % git submodule update --init --recursive mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 ```

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % python3 -m pip install --user kconfiglib Requirement already satisfied: kconfiglib in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (14.1.0) WARNING: You are using pip version 20.2.3; however, version 22.0.3 is available. You should consider upgrading via the '/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip' command. mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % /Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip Defaulting to user installation because normal site-packages is not writeable Collecting pip Downloading pip-22.0.3-py3-none-any.whl (2.1 MB) |████████████████████████████████| 2.1 MB 124 kB/s Installing collected packages: pip WARNING: The scripts pip, pip3 and pip3.8 are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed pip-22.0.3 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % python3 -m pip install --user kconfiglib Requirement already satisfied: kconfiglib in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (14.1.0) mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % pip3 install kconfiglib Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: kconfiglib in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (14.1.0) mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % /usr/local/bin/python3 -m pip install future --user Collecting future Using cached future-0.18.2.tar.gz (829 kB) Preparing metadata (setup.py) ... done Building wheels for collected packages: future Building wheel for future (setup.py) ... done Created wheel for future: filename=future-0.18.2-py3-none-any.whl size=491070 sha256=5ec78cf79be252032031e5315aec8b8bcf4c9b462f9afe8f1dd43d5b76021180 Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/2f/a0/d3/4030d9f80e6b3be787f19fc911b8e7aa462986a40ab1e4bb94 Successfully built future Installing collected packages: future WARNING: The scripts futurize and pasteurize are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed future-0.18.2 WARNING: You are using pip version 21.3.1; however, version 22.0.3 is available. You should consider upgrading via the '/usr/local/opt/python@3.9/bin/python3.9 -m pip install --upgrade pip' command. mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % /usr/local/bin/python3 -m pip install numpy --user Collecting numpy Downloading numpy-1.22.2-cp39-cp39-macosx_10_14_x86_64.whl (17.6 MB) |████████████████████████████████| 17.6 MB 100 kB/s Installing collected packages: numpy WARNING: The scripts f2py, f2py3 and f2py3.9 are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed numpy-1.22.2 WARNING: You are using pip version 21.3.1; however, version 22.0.3 is available. You should consider upgrading via the '/usr/local/opt/python@3.9/bin/python3.9 -m pip install --upgrade pip' command. mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make clean Entering 'Tools/flightgear_bridge' Entering 'Tools/jMAVSim' Entering 'Tools/jsbsim_bridge' Entering 'Tools/simulation-ignition' Entering 'Tools/sitl_gazebo' Entering 'platforms/nuttx/NuttX/apps' Entering 'platforms/nuttx/NuttX/nuttx' Entering 'src/drivers/gps/devices' Entering 'src/drivers/uavcan/libuavcan' Entering 'src/drivers/uavcan_v1/legacy_data_types' Entering 'src/drivers/uavcan_v1/libcanard' Entering 'src/drivers/uavcan_v1/public_regulated_data_types' Entering 'src/lib/crypto/libtomcrypt' Entering 'src/lib/crypto/libtommath' Entering 'src/lib/crypto/monocypher' Entering 'src/lib/events/libevents' Entering 'src/modules/mavlink/mavlink' Entering 'src/modules/micrortps_bridge/micro-CDR' mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % git status On branch master Your branch is up to date with 'origin/master'. nothing to commit, working tree clean mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % git --version git version 2.32.0 (Apple Git-132) mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % brew --version Homebrew 3.3.16 ```

mengchaoheng commented 2 years ago
CLICK ME: python3 -m pip install -r Tools/setup/requirements.txt

``` Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % python3 -m pip install -r Tools/setup/requirements.txt Defaulting to user installation because normal site-packages is not writeable Collecting argcomplete Downloading argcomplete-2.0.0-py2.py3-none-any.whl (37 kB) Collecting argparse>=1.2 Downloading argparse-1.4.0-py2.py3-none-any.whl (23 kB) Collecting cerberus Downloading Cerberus-1.3.4.tar.gz (63 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.8/63.8 KB 1.7 MB/s eta 0:00:00 Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Collecting coverage Downloading coverage-6.3.2-cp38-cp38-macosx_10_9_x86_64.whl (183 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 183.1/183.1 KB 1.2 MB/s eta 0:00:00 Collecting empy>=3.3 Using cached empy-3.3.4-py3-none-any.whl Collecting jinja2>=2.8 Using cached Jinja2-3.0.3-py3-none-any.whl (133 kB) Collecting matplotlib>=3.0.* Downloading matplotlib-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl (7.3 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.3/7.3 MB 3.0 MB/s eta 0:00:00 Collecting numpy>=1.13 Downloading numpy-1.22.2-cp38-cp38-macosx_10_14_x86_64.whl (17.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.6/17.6 MB 4.2 MB/s eta 0:00:00 Collecting nunavut>=1.1.0 Downloading nunavut-1.7.3-1904746659-py3-none-any.whl (311 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 311.1/311.1 KB 646.2 kB/s eta 0:00:00 Collecting packaging Using cached packaging-21.3-py3-none-any.whl (40 kB) Collecting pandas>=0.21 Downloading pandas-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl (11.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.4/11.4 MB 3.5 MB/s eta 0:00:00 Collecting pkgconfig Downloading pkgconfig-1.5.5-py3-none-any.whl (6.7 kB) Collecting psutil Downloading psutil-5.9.0-cp38-cp38-macosx_10_9_x86_64.whl (238 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 238.6/238.6 KB 746.0 kB/s eta 0:00:00 Collecting pygments Downloading Pygments-2.11.2-py3-none-any.whl (1.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 1.5 MB/s eta 0:00:00 Requirement already satisfied: wheel>=0.31.1 in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages (from -r Tools/setup/requirements.txt (line 15)) (0.33.1) Collecting pymavlink Downloading pymavlink-2.4.26.tar.gz (5.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.2/5.2 MB 3.0 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting pyros-genmsg Using cached pyros_genmsg-0.5.8-py2.py3-none-any.whl (25 kB) Collecting pyserial Using cached pyserial-3.5-py2.py3-none-any.whl (90 kB) Collecting pyulog>=0.5.0 Downloading pyulog-0.9.0-py3-none-any.whl (23 kB) Collecting pyyaml Downloading PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl (192 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 192.2/192.2 KB 286.4 kB/s eta 0:00:00 Collecting requests Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.1/63.1 KB 181.1 kB/s eta 0:00:00 Requirement already satisfied: setuptools>=39.2.0 in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages (from -r Tools/setup/requirements.txt (line 22)) (49.2.1) Requirement already satisfied: six>=1.12.0 in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages (from -r Tools/setup/requirements.txt (line 23)) (1.15.0) Collecting toml>=0.9 Using cached toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting MarkupSafe>=2.0 Downloading MarkupSafe-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl (13 kB) Collecting pillow>=6.2.0 Downloading Pillow-9.0.1-cp38-cp38-macosx_10_10_x86_64.whl (3.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 2.4 MB/s eta 0:00:00 Collecting fonttools>=4.22.0 Downloading fonttools-4.29.1-py3-none-any.whl (895 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 895.5/895.5 KB 3.3 MB/s eta 0:00:00 Collecting kiwisolver>=1.0.1 Downloading kiwisolver-1.3.2-cp38-cp38-macosx_10_9_x86_64.whl (61 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.6/61.6 KB 1.9 MB/s eta 0:00:00 Collecting pyparsing>=2.2.1 Using cached pyparsing-3.0.7-py3-none-any.whl (98 kB) Collecting python-dateutil>=2.7 Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) Collecting cycler>=0.10 Downloading cycler-0.11.0-py3-none-any.whl (6.4 kB) Collecting pydsdl~=1.12 Downloading pydsdl-1.13.0-py3-none-any.whl (110 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 110.3/110.3 KB 2.4 MB/s eta 0:00:00 Collecting importlib-resources Using cached importlib_resources-5.4.0-py3-none-any.whl (28 kB) Collecting pytz>=2020.1 Using cached pytz-2021.3-py2.py3-none-any.whl (503 kB) Collecting future Using cached future-0.18.2-py3-none-any.whl Collecting lxml Downloading lxml-4.8.0-cp38-cp38-macosx_10_14_x86_64.whl (4.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 1.7 MB/s eta 0:00:00 Collecting urllib3<1.27,>=1.21.1 Downloading urllib3-1.26.8-py2.py3-none-any.whl (138 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 138.7/138.7 KB 293.6 kB/s eta 0:00:00 Collecting idna<4,>=2.5 Downloading idna-3.3-py3-none-any.whl (61 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 KB 1.4 MB/s eta 0:00:00 Collecting charset-normalizer~=2.0.0 Downloading charset_normalizer-2.0.12-py3-none-any.whl (39 kB) Collecting certifi>=2017.4.17 Downloading certifi-2021.10.8-py2.py3-none-any.whl (149 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 149.2/149.2 KB 513.3 kB/s eta 0:00:00 Collecting zipp>=3.1.0 Using cached zipp-3.7.0-py3-none-any.whl (5.3 kB) Building wheels for collected packages: cerberus, pymavlink Building wheel for cerberus (pyproject.toml) ... done Created wheel for cerberus: filename=Cerberus-1.3.4-py3-none-any.whl size=58175 sha256=cabe6cb4ab3121d3cb68d025cdc384d9226b690051141e62ddc083a1b17fa7ed Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/92/1e/40/307520b5eb38ceae17d32d7d7920e3e5eee6f4cd78cfd75ac7 Building wheel for pymavlink (setup.py) ... done Created wheel for pymavlink: filename=pymavlink-2.4.26-cp38-cp38-macosx_10_14_x86_64.whl size=5374769 sha256=61ff5f45c203d60b1a0c4327c4a14a2bc2a8ad0c7297ad675567ba7b66d167d0 Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/8e/27/b8/9128b37fe52b856457b3414d125c11e8232860225b68252f36 Successfully built cerberus pymavlink Installing collected packages: pytz, pyserial, pyros-genmsg, pydsdl, empy, certifi, argparse, zipp, urllib3, toml, pyyaml, python-dateutil, pyparsing, pygments, psutil, pkgconfig, pillow, numpy, MarkupSafe, lxml, kiwisolver, idna, future, fonttools, cycler, coverage, charset-normalizer, cerberus, argcomplete, requests, pyulog, pymavlink, pandas, packaging, jinja2, importlib-resources, nunavut, matplotlib WARNING: The scripts pyserial-miniterm and pyserial-ports are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The script pygmentize is installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts f2py, f2py3 and f2py3.8 are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts futurize and pasteurize are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts fonttools, pyftmerge, pyftsubset and ttx are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts coverage, coverage-3.8 and coverage3 are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The script normalizer is installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts ulog2csv, ulog2kml, ulog_extract_gps_dump, ulog_info, ulog_messages and ulog_params are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The script nnvg is installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed MarkupSafe-2.1.0 argcomplete-2.0.0 argparse-1.4.0 cerberus-1.3.4 certifi-2021.10.8 charset-normalizer-2.0.12 coverage-6.3.2 cycler-0.11.0 empy-3.3.4 fonttools-4.29.1 future-0.18.2 idna-3.3 importlib-resources-5.4.0 jinja2-3.0.3 kiwisolver-1.3.2 lxml-4.8.0 matplotlib-3.5.1 numpy-1.22.2 nunavut-1.7.3 packaging-21.3 pandas-1.4.1 pillow-9.0.1 pkgconfig-1.5.5 psutil-5.9.0 pydsdl-1.13.0 pygments-2.11.2 pymavlink-2.4.26 pyparsing-3.0.7 pyros-genmsg-0.5.8 pyserial-3.5 python-dateutil-2.8.2 pytz-2021.3 pyulog-0.9.0 pyyaml-6.0 requests-2.27.1 toml-0.10.2 urllib3-1.26.8 zipp-3.7.0 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % ```

dagar commented 2 years ago

@mengchaoheng try /usr/local/bin/python3 -m pip install -r Tools/setup/requirements.txt

Then delete the build directory (rm -rf build/) before trying make px4_sitl_default again.

mengchaoheng commented 2 years ago
CLICK ME: try /usr/local/bin/python3 -m pip install -r Tools/setup/requirements.txt Then delete the build directory (rm -rf build/) before trying make px4_sitl_default again.

``` Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % /usr/local/bin/python3 -m pip install -r Tools/setup/requirements.txt zsh: command not found: mengchaoheng@mengchaohengdeMacBook-Pro zsh: command not found: Defaulting zsh: command not found: Collecting zsh: unknown file attribute: 3 zsh: 1.2 not found zsh: unknown file attribute: 2 zsh: command not found: Collecting zsh: unknown file attribute: 6 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: command not found: Installing zsh: command not found: Getting zsh: unknown file attribute: y zsh: command not found: Collecting zsh: unknown file attribute: 1 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: 3.3 not found zsh: command not found: Using zsh: 2.8 not found zsh: unknown file attribute: 1 zsh: 3.0.* not found zsh: unknown file attribute: 7 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: 1.13 not found zsh: unknown file attribute: 1 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: 1.1.0 not found zsh: unknown file attribute: 3 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: command not found: Collecting zsh: unknown file attribute: 4 zsh: 0.21 not found zsh: unknown file attribute: 1 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: command not found: Collecting zsh: unknown file attribute: 6 zsh: command not found: Collecting zsh: unknown file attribute: 2 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: command not found: Collecting zsh: unknown file attribute: 1 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: bad pattern: (from -r Tools/setup/requirements.txt (line 15)) zsh: command not found: Collecting zsh: unknown file attribute: 5 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: missing end of string zsh: command not found: Collecting zsh: unknown file attribute: 2 zsh: command not found: Collecting zsh: unknown file attribute: 9 zsh: 0.5.0 not found zsh: unknown file attribute: 2 zsh: command not found: Collecting zsh: unknown file attribute: 1 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: command not found: Collecting zsh: unknown file attribute: 6 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: bad pattern: (from -r Tools/setup/requirements.txt (line 22)) zsh: bad pattern: (from -r Tools/setup/requirements.txt (line 23)) zsh: 0.9 not found zsh: unknown file attribute: 1 zsh: 2.0 not found zsh: unknown file attribute: 1 zsh: 6.2.0 not found zsh: unknown file attribute: 3 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: 4.22.0 not found zsh: unknown file attribute: 8 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: 1.0.1 not found zsh: unknown file attribute: 6 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: 2.2.1 not found zsh: unknown file attribute: 9 zsh: 2.7 not found zsh: unknown file attribute: 2 zsh: 0.10 not found zsh: unknown file attribute: 6 zsh: command not found: Collecting zsh: unknown file attribute: 1 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: command not found: Collecting zsh: unknown file attribute: 2 zsh: 2020.1 not found zsh: unknown file attribute: 5 zsh: command not found: Collecting zsh: command not found: Using zsh: command not found: Collecting zsh: unknown file attribute: 4 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: no such file or directory: 1.27, zsh: unknown file attribute: 1 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: no such file or directory: 4, zsh: unknown file attribute: 6 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: command not found: Collecting zsh: unknown file attribute: 3 zsh: 2017.4.17 not found zsh: unknown file attribute: 1 zsh: command not found: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ zsh: 3.1.0 not found zsh: unknown file attribute: 5 zsh: command not found: Building zsh: unknown file attribute: y zsh: command not found: Created zsh: command not found: Stored zsh: missing end of string zsh: command not found: Created zsh: command not found: Stored zsh: command not found: Successfully zsh: command not found: Installing zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: WARNING: zsh: command not found: Consider zsh: command not found: Successfully zsh: command not found: mengchaoheng@mengchaohengdeMacBook-Pro mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % rm -rf build/ mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl_default -- PX4 version: v1.12.3 -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.cmake -- PX4 config: px4_sitl_default -- PX4 platform: posix -- PX4 lockstep: enabled -- cmake build type: RelWithDebInfo -- The CXX compiler identification is AppleClang 13.0.0.13000029 -- The C compiler identification is AppleClang 13.0.0.13000029 -- The ASM compiler identification is Clang with GNU-like command-line -- Found assembler: /Library/Developer/CommandLineTools/usr/bin/cc -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Building for code coverage -- ccache enabled (export CCACHE_DISABLE=1 to disable) -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- build type is RelWithDebInfo -- PX4 ECL: Very lightweight Estimation & Control Library v1.9.0-rc1-591-gb3fed06 -- ROMFS: ROMFS/px4fmu_common -- Configuring done -- Generating done -- Build files have been written to: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default [0/807] git submodule src/drivers/gps/devices [6/807] Generating mixer_multirotor.generated.h FAILED: src/lib/mixer/MultirotorMixer/mixer_multirotor.generated.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer/mixer_multirotor.generated.h cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer && /usr/local/bin/python3 /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tools/px_generate_mixers.py -f /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_bottom_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_top_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_t.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_deadcat.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_h.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_s250aq.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_vtail.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_cw.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_pusher.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tri_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/twin_engine.toml -o mixer_multirotor.generated.h Failed to import toml: No module named 'toml' You may need to install it using: pip3 install --user toml [7/807] Generating mixer_multirotor_6dof.generated.h FAILED: src/lib/mixer/MultirotorMixer/mixer_multirotor_6dof.generated.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer/mixer_multirotor_6dof.generated.h cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer && /usr/local/bin/python3 /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tools/px_generate_mixers.py --sixdof -f /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_bottom_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_top_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_t.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_deadcat.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_h.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_s250aq.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_vtail.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_cw.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_pusher.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tri_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/twin_engine.toml -o mixer_multirotor_6dof.generated.h Failed to import toml: No module named 'toml' You may need to install it using: pip3 install --user toml [8/807] Generating mixer_multirotor_normalized.generated.h FAILED: src/lib/mixer/MultirotorMixer/mixer_multirotor_normalized.generated.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer/mixer_multirotor_normalized.generated.h cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer && /usr/local/bin/python3 /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tools/px_generate_mixers.py --normalize -f /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_bottom_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_top_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_t.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_deadcat.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_h.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_s250aq.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_vtail.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_cw.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_pusher.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tri_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/twin_engine.toml -o mixer_multirotor_normalized.generated.h Failed to import toml: No module named 'toml' You may need to install it using: pip3 install --user toml [9/807] Generating uORB topic headers FAILED: uORB/topics/uORBTopics.hpp uORB/topics/actuator_armed.h uORB/topics/actuator_controls.h uORB/topics/actuator_outputs.h uORB/topics/adc_report.h uORB/topics/airspeed.h uORB/topics/airspeed_validated.h uORB/topics/airspeed_wind.h uORB/topics/battery_status.h uORB/topics/camera_capture.h uORB/topics/camera_trigger.h uORB/topics/cellular_status.h uORB/topics/collision_constraints.h uORB/topics/collision_report.h uORB/topics/commander_state.h uORB/topics/control_allocator_status.h uORB/topics/cpuload.h uORB/topics/debug_array.h uORB/topics/debug_key_value.h uORB/topics/debug_value.h uORB/topics/debug_vect.h uORB/topics/differential_pressure.h uORB/topics/distance_sensor.h uORB/topics/ekf2_timestamps.h uORB/topics/ekf_gps_drift.h uORB/topics/esc_report.h uORB/topics/esc_status.h uORB/topics/estimator_event_flags.h uORB/topics/estimator_innovations.h uORB/topics/estimator_optical_flow_vel.h uORB/topics/estimator_selector_status.h uORB/topics/estimator_sensor_bias.h uORB/topics/estimator_states.h uORB/topics/estimator_status.h uORB/topics/estimator_status_flags.h uORB/topics/follow_target.h uORB/topics/generator_status.h uORB/topics/geofence_result.h uORB/topics/gimbal_device_attitude_status.h uORB/topics/gimbal_device_information.h uORB/topics/gimbal_device_set_attitude.h uORB/topics/gimbal_manager_information.h uORB/topics/gimbal_manager_set_attitude.h uORB/topics/gimbal_manager_set_manual_control.h uORB/topics/gimbal_manager_status.h uORB/topics/gps_dump.h uORB/topics/gps_inject_data.h uORB/topics/heater_status.h uORB/topics/home_position.h uORB/topics/hover_thrust_estimate.h uORB/topics/input_rc.h uORB/topics/iridiumsbd_status.h uORB/topics/irlock_report.h uORB/topics/landing_gear.h uORB/topics/landing_target_innovations.h uORB/topics/landing_target_pose.h uORB/topics/led_control.h uORB/topics/log_message.h uORB/topics/logger_status.h uORB/topics/mag_worker_data.h uORB/topics/manual_control_setpoint.h uORB/topics/manual_control_switches.h uORB/topics/mavlink_log.h uORB/topics/mission.h uORB/topics/mission_result.h uORB/topics/mount_orientation.h uORB/topics/multirotor_motor_limits.h uORB/topics/navigator_mission_item.h uORB/topics/obstacle_distance.h uORB/topics/offboard_control_mode.h uORB/topics/onboard_computer_status.h uORB/topics/optical_flow.h uORB/topics/orb_test.h uORB/topics/orb_test_large.h uORB/topics/orb_test_medium.h uORB/topics/orbit_status.h uORB/topics/parameter_update.h uORB/topics/ping.h uORB/topics/position_controller_landing_status.h uORB/topics/position_controller_status.h uORB/topics/position_setpoint.h uORB/topics/position_setpoint_triplet.h uORB/topics/power_button_state.h uORB/topics/power_monitor.h uORB/topics/pwm_input.h uORB/topics/px4io_status.h uORB/topics/qshell_req.h uORB/topics/qshell_retval.h uORB/topics/radio_status.h uORB/topics/rate_ctrl_status.h uORB/topics/rc_channels.h uORB/topics/rc_parameter_map.h uORB/topics/rpm.h uORB/topics/rtl_flight_time.h uORB/topics/safety.h uORB/topics/satellite_info.h uORB/topics/sensor_accel.h uORB/topics/sensor_accel_fifo.h uORB/topics/sensor_baro.h uORB/topics/sensor_combined.h uORB/topics/sensor_correction.h uORB/topics/sensor_gps.h uORB/topics/sensor_gyro.h uORB/topics/sensor_gyro_fft.h uORB/topics/sensor_gyro_fifo.h uORB/topics/sensor_mag.h uORB/topics/sensor_preflight_mag.h uORB/topics/sensor_selection.h uORB/topics/sensors_status_imu.h uORB/topics/system_power.h uORB/topics/takeoff_status.h uORB/topics/task_stack_info.h uORB/topics/tecs_status.h uORB/topics/telemetry_status.h uORB/topics/test_motor.h uORB/topics/timesync.h uORB/topics/timesync_status.h uORB/topics/trajectory_bezier.h uORB/topics/trajectory_waypoint.h uORB/topics/transponder_report.h uORB/topics/tune_control.h uORB/topics/uavcan_parameter_request.h uORB/topics/uavcan_parameter_value.h uORB/topics/ulog_stream.h uORB/topics/ulog_stream_ack.h uORB/topics/vehicle_acceleration.h uORB/topics/vehicle_actuator_setpoint.h uORB/topics/vehicle_air_data.h uORB/topics/vehicle_angular_acceleration.h uORB/topics/vehicle_angular_acceleration_setpoint.h uORB/topics/vehicle_angular_velocity.h uORB/topics/vehicle_attitude.h uORB/topics/vehicle_attitude_setpoint.h uORB/topics/vehicle_command.h uORB/topics/vehicle_command_ack.h uORB/topics/vehicle_constraints.h uORB/topics/vehicle_control_mode.h uORB/topics/vehicle_global_position.h uORB/topics/vehicle_gps_position.h uORB/topics/vehicle_imu.h uORB/topics/vehicle_imu_status.h uORB/topics/vehicle_land_detected.h uORB/topics/vehicle_local_position.h uORB/topics/vehicle_local_position_setpoint.h uORB/topics/vehicle_magnetometer.h uORB/topics/vehicle_odometry.h uORB/topics/vehicle_rates_setpoint.h uORB/topics/vehicle_roi.h uORB/topics/vehicle_status.h uORB/topics/vehicle_status_flags.h uORB/topics/vehicle_thrust_setpoint.h uORB/topics/vehicle_torque_setpoint.h uORB/topics/vehicle_trajectory_bezier.h uORB/topics/vehicle_trajectory_waypoint.h uORB/topics/vtol_vehicle_status.h uORB/topics/wheel_encoders.h uORB/topics/wind.h uORB/topics/yaw_estimator_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/uORBTopics.hpp /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/actuator_armed.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/actuator_controls.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/actuator_outputs.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/adc_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/airspeed.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/airspeed_validated.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/airspeed_wind.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/battery_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/camera_capture.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/camera_trigger.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/cellular_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/collision_constraints.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/collision_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/commander_state.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/control_allocator_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/cpuload.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/debug_array.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/debug_key_value.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/debug_value.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/debug_vect.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/differential_pressure.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/distance_sensor.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ekf2_timestamps.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ekf_gps_drift.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/esc_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/esc_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_event_flags.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_innovations.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_optical_flow_vel.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_selector_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_sensor_bias.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_states.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_status_flags.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/follow_target.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/generator_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/geofence_result.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_device_attitude_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_device_information.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_device_set_attitude.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_manager_information.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_manager_set_attitude.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_manager_set_manual_control.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_manager_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gps_dump.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gps_inject_data.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/heater_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/home_position.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/hover_thrust_estimate.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/input_rc.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/iridiumsbd_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/irlock_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/landing_gear.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/landing_target_innovations.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/landing_target_pose.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/led_control.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/log_message.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/logger_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mag_worker_data.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/manual_control_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/manual_control_switches.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mavlink_log.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mission.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mission_result.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mount_orientation.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/multirotor_motor_limits.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/navigator_mission_item.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/obstacle_distance.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/offboard_control_mode.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/onboard_computer_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/optical_flow.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/orb_test.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/orb_test_large.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/orb_test_medium.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/orbit_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/parameter_update.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ping.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/position_controller_landing_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/position_controller_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/position_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/position_setpoint_triplet.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/power_button_state.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/power_monitor.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/pwm_input.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/px4io_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/qshell_req.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/qshell_retval.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/radio_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rate_ctrl_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rc_channels.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rc_parameter_map.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rpm.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rtl_flight_time.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/safety.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/satellite_info.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_accel.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_accel_fifo.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_baro.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_combined.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_correction.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_gps.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_gyro.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_gyro_fft.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_gyro_fifo.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_mag.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_preflight_mag.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_selection.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensors_status_imu.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/system_power.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/takeoff_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/task_stack_info.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/tecs_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/telemetry_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/test_motor.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/timesync.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/timesync_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/trajectory_bezier.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/trajectory_waypoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/transponder_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/tune_control.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/uavcan_parameter_request.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/uavcan_parameter_value.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ulog_stream.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ulog_stream_ack.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_acceleration.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_actuator_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_air_data.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_angular_acceleration.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_angular_acceleration_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_angular_velocity.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_attitude.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_attitude_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_command.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_command_ack.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_constraints.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_control_mode.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_global_position.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_gps_position.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_imu.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_imu_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_land_detected.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_local_position.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_local_position_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_magnetometer.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_odometry.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_rates_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_roi.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_status_flags.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_thrust_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_torque_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_trajectory_bezier.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_trajectory_waypoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vtol_vehicle_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/wheel_encoders.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/wind.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/yaw_estimator_status.h cd /Users/mengchaoheng/Downloads/PX4-Autopilot/msg && /usr/local/bin/python3 tools/px_generate_uorb_topic_files.py --headers -f actuator_armed.msg actuator_controls.msg actuator_outputs.msg adc_report.msg airspeed.msg airspeed_validated.msg airspeed_wind.msg battery_status.msg camera_capture.msg camera_trigger.msg cellular_status.msg collision_constraints.msg collision_report.msg commander_state.msg control_allocator_status.msg cpuload.msg debug_array.msg debug_key_value.msg debug_value.msg debug_vect.msg differential_pressure.msg distance_sensor.msg ekf2_timestamps.msg ekf_gps_drift.msg esc_report.msg esc_status.msg estimator_event_flags.msg estimator_innovations.msg estimator_optical_flow_vel.msg estimator_selector_status.msg estimator_sensor_bias.msg estimator_states.msg estimator_status.msg estimator_status_flags.msg follow_target.msg generator_status.msg geofence_result.msg gimbal_device_attitude_status.msg gimbal_device_information.msg gimbal_device_set_attitude.msg gimbal_manager_information.msg gimbal_manager_set_attitude.msg gimbal_manager_set_manual_control.msg gimbal_manager_status.msg gps_dump.msg gps_inject_data.msg heater_status.msg home_position.msg hover_thrust_estimate.msg input_rc.msg iridiumsbd_status.msg irlock_report.msg landing_gear.msg landing_target_innovations.msg landing_target_pose.msg led_control.msg log_message.msg logger_status.msg mag_worker_data.msg manual_control_setpoint.msg manual_control_switches.msg mavlink_log.msg mission.msg mission_result.msg mount_orientation.msg multirotor_motor_limits.msg navigator_mission_item.msg obstacle_distance.msg offboard_control_mode.msg onboard_computer_status.msg optical_flow.msg orb_test.msg orb_test_large.msg orb_test_medium.msg orbit_status.msg parameter_update.msg ping.msg position_controller_landing_status.msg position_controller_status.msg position_setpoint.msg position_setpoint_triplet.msg power_button_state.msg power_monitor.msg pwm_input.msg px4io_status.msg qshell_req.msg qshell_retval.msg radio_status.msg rate_ctrl_status.msg rc_channels.msg rc_parameter_map.msg rpm.msg rtl_flight_time.msg safety.msg satellite_info.msg sensor_accel.msg sensor_accel_fifo.msg sensor_baro.msg sensor_combined.msg sensor_correction.msg sensor_gps.msg sensor_gyro.msg sensor_gyro_fft.msg sensor_gyro_fifo.msg sensor_mag.msg sensor_preflight_mag.msg sensor_selection.msg sensors_status_imu.msg system_power.msg takeoff_status.msg task_stack_info.msg tecs_status.msg telemetry_status.msg test_motor.msg timesync.msg timesync_status.msg trajectory_bezier.msg trajectory_waypoint.msg transponder_report.msg tune_control.msg uavcan_parameter_request.msg uavcan_parameter_value.msg ulog_stream.msg ulog_stream_ack.msg vehicle_acceleration.msg vehicle_actuator_setpoint.msg vehicle_air_data.msg vehicle_angular_acceleration.msg vehicle_angular_acceleration_setpoint.msg vehicle_angular_velocity.msg vehicle_attitude.msg vehicle_attitude_setpoint.msg vehicle_command.msg vehicle_command_ack.msg vehicle_constraints.msg vehicle_control_mode.msg vehicle_global_position.msg vehicle_gps_position.msg vehicle_imu.msg vehicle_imu_status.msg vehicle_land_detected.msg vehicle_local_position.msg vehicle_local_position_setpoint.msg vehicle_magnetometer.msg vehicle_odometry.msg vehicle_rates_setpoint.msg vehicle_roi.msg vehicle_status.msg vehicle_status_flags.msg vehicle_thrust_setpoint.msg vehicle_torque_setpoint.msg vehicle_trajectory_bezier.msg vehicle_trajectory_waypoint.msg vtol_vehicle_status.msg wheel_encoders.msg wind.msg yaw_estimator_status.msg -i /Users/mengchaoheng/Downloads/PX4-Autopilot/msg -o /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics -e templates/uorb -t /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/msg/tmp/headers -q Failed to import em: No module named 'em' You may need to install it using: pip3 install --user empy [10/807] Generating serial_params.c FAILED: generated_params/serial_params.c /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/generated_params/serial_params.c cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/parameters && /usr/local/Cellar/cmake/3.22.2/bin/cmake -E make_directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/generated_params && /usr/local/bin/python3 /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/serial/generate_config.py --params-file /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/generated_params/serial_params.c --serial-ports --ethernet --config-files /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/battery/module.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/pwm/pwm_main_params.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/pwm/pwm_aux_params.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/pwm/pwm_extra_params.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/gps/module.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/module.yaml Failed to import jinja2: No module named 'jinja2' You may need to install it using: pip3 install --user jinja2 [13/807] Generating git version header ninja: build stopped: subcommand failed. make: *** [px4_sitl_default] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % ```

mengchaoheng commented 2 years ago
CLICK ME: try again

``` Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % /usr/bin/python3 -m pip install -r Tools/setup/requirements.txt Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: argcomplete in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 1)) (2.0.0) Collecting argparse>=1.2 Using cached argparse-1.4.0-py2.py3-none-any.whl (23 kB) Requirement already satisfied: cerberus in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 3)) (1.3.4) Requirement already satisfied: coverage in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 4)) (6.3.2) Requirement already satisfied: empy>=3.3 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 5)) (3.3.4) Requirement already satisfied: jinja2>=2.8 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 6)) (3.0.3) Requirement already satisfied: matplotlib>=3.0.* in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 7)) (3.5.1) Requirement already satisfied: numpy>=1.13 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 8)) (1.22.2) Requirement already satisfied: nunavut>=1.1.0 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 9)) (1.7.3) Requirement already satisfied: packaging in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 10)) (21.3) Requirement already satisfied: pandas>=0.21 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 11)) (1.4.1) Requirement already satisfied: pkgconfig in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 12)) (1.5.5) Requirement already satisfied: psutil in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 13)) (5.9.0) Requirement already satisfied: pygments in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 14)) (2.11.2) Requirement already satisfied: wheel>=0.31.1 in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages (from -r Tools/setup/requirements.txt (line 15)) (0.33.1) Requirement already satisfied: pymavlink in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 16)) (2.4.26) Requirement already satisfied: pyros-genmsg in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 17)) (0.5.8) Requirement already satisfied: pyserial in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 18)) (3.5) Requirement already satisfied: pyulog>=0.5.0 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 19)) (0.9.0) Requirement already satisfied: pyyaml in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 20)) (6.0) Requirement already satisfied: requests in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 21)) (2.27.1) Requirement already satisfied: setuptools>=39.2.0 in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages (from -r Tools/setup/requirements.txt (line 22)) (49.2.1) Requirement already satisfied: six>=1.12.0 in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages (from -r Tools/setup/requirements.txt (line 23)) (1.15.0) Requirement already satisfied: toml>=0.9 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from -r Tools/setup/requirements.txt (line 24)) (0.10.2) Requirement already satisfied: MarkupSafe>=2.0 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from jinja2>=2.8->-r Tools/setup/requirements.txt (line 6)) (2.1.0) Requirement already satisfied: fonttools>=4.22.0 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from matplotlib>=3.0.*->-r Tools/setup/requirements.txt (line 7)) (4.29.1) Requirement already satisfied: python-dateutil>=2.7 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from matplotlib>=3.0.*->-r Tools/setup/requirements.txt (line 7)) (2.8.2) Requirement already satisfied: kiwisolver>=1.0.1 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from matplotlib>=3.0.*->-r Tools/setup/requirements.txt (line 7)) (1.3.2) Requirement already satisfied: cycler>=0.10 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from matplotlib>=3.0.*->-r Tools/setup/requirements.txt (line 7)) (0.11.0) Requirement already satisfied: pillow>=6.2.0 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from matplotlib>=3.0.*->-r Tools/setup/requirements.txt (line 7)) (9.0.1) Requirement already satisfied: pyparsing>=2.2.1 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from matplotlib>=3.0.*->-r Tools/setup/requirements.txt (line 7)) (3.0.7) Requirement already satisfied: pydsdl~=1.12 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from nunavut>=1.1.0->-r Tools/setup/requirements.txt (line 9)) (1.13.0) Requirement already satisfied: importlib-resources in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from nunavut>=1.1.0->-r Tools/setup/requirements.txt (line 9)) (5.4.0) Requirement already satisfied: pytz>=2020.1 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from pandas>=0.21->-r Tools/setup/requirements.txt (line 11)) (2021.3) Requirement already satisfied: lxml in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from pymavlink->-r Tools/setup/requirements.txt (line 16)) (4.8.0) Requirement already satisfied: future in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from pymavlink->-r Tools/setup/requirements.txt (line 16)) (0.18.2) Requirement already satisfied: certifi>=2017.4.17 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from requests->-r Tools/setup/requirements.txt (line 21)) (2021.10.8) Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from requests->-r Tools/setup/requirements.txt (line 21)) (1.26.8) Requirement already satisfied: charset-normalizer~=2.0.0 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from requests->-r Tools/setup/requirements.txt (line 21)) (2.0.12) Requirement already satisfied: idna<4,>=2.5 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from requests->-r Tools/setup/requirements.txt (line 21)) (3.3) Requirement already satisfied: zipp>=3.1.0 in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (from importlib-resources->nunavut>=1.1.0->-r Tools/setup/requirements.txt (line 9)) (3.7.0) Installing collected packages: argparse Successfully installed argparse-1.4.0 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim [0/799] git submodule mavlink/include/mavlink/v2.0 [2/799] Generating mixer_multirotor.generated.h FAILED: src/lib/mixer/MultirotorMixer/mixer_multirotor.generated.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer/mixer_multirotor.generated.h cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer && /usr/local/bin/python3 /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tools/px_generate_mixers.py -f /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_bottom_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_top_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_t.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_deadcat.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_h.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_s250aq.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_vtail.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_cw.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_pusher.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tri_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/twin_engine.toml -o mixer_multirotor.generated.h Failed to import toml: No module named 'toml' You may need to install it using: pip3 install --user toml [3/799] Generating mixer_multirotor_normalized.generated.h FAILED: src/lib/mixer/MultirotorMixer/mixer_multirotor_normalized.generated.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer/mixer_multirotor_normalized.generated.h cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer && /usr/local/bin/python3 /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tools/px_generate_mixers.py --normalize -f /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_bottom_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_top_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_t.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_deadcat.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_h.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_s250aq.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_vtail.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_cw.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_pusher.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tri_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/twin_engine.toml -o mixer_multirotor_normalized.generated.h Failed to import toml: No module named 'toml' You may need to install it using: pip3 install --user toml [4/799] Generating mixer_multirotor_6dof.generated.h FAILED: src/lib/mixer/MultirotorMixer/mixer_multirotor_6dof.generated.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer/mixer_multirotor_6dof.generated.h cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/mixer/MultirotorMixer && /usr/local/bin/python3 /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tools/px_generate_mixers.py --sixdof -f /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_bottom_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/dodeca_top_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_t.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/hex_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_cox_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/octa_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_deadcat.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_h.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_plus.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_s250aq.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_vtail.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_wide.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_cw.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_x_pusher.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/quad_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/tri_y.toml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/mixer/MultirotorMixer/geometries/twin_engine.toml -o mixer_multirotor_6dof.generated.h Failed to import toml: No module named 'toml' You may need to install it using: pip3 install --user toml [5/799] Generating uORB topic headers FAILED: uORB/topics/uORBTopics.hpp uORB/topics/actuator_armed.h uORB/topics/actuator_controls.h uORB/topics/actuator_outputs.h uORB/topics/adc_report.h uORB/topics/airspeed.h uORB/topics/airspeed_validated.h uORB/topics/airspeed_wind.h uORB/topics/battery_status.h uORB/topics/camera_capture.h uORB/topics/camera_trigger.h uORB/topics/cellular_status.h uORB/topics/collision_constraints.h uORB/topics/collision_report.h uORB/topics/commander_state.h uORB/topics/control_allocator_status.h uORB/topics/cpuload.h uORB/topics/debug_array.h uORB/topics/debug_key_value.h uORB/topics/debug_value.h uORB/topics/debug_vect.h uORB/topics/differential_pressure.h uORB/topics/distance_sensor.h uORB/topics/ekf2_timestamps.h uORB/topics/ekf_gps_drift.h uORB/topics/esc_report.h uORB/topics/esc_status.h uORB/topics/estimator_event_flags.h uORB/topics/estimator_innovations.h uORB/topics/estimator_optical_flow_vel.h uORB/topics/estimator_selector_status.h uORB/topics/estimator_sensor_bias.h uORB/topics/estimator_states.h uORB/topics/estimator_status.h uORB/topics/estimator_status_flags.h uORB/topics/follow_target.h uORB/topics/generator_status.h uORB/topics/geofence_result.h uORB/topics/gimbal_device_attitude_status.h uORB/topics/gimbal_device_information.h uORB/topics/gimbal_device_set_attitude.h uORB/topics/gimbal_manager_information.h uORB/topics/gimbal_manager_set_attitude.h uORB/topics/gimbal_manager_set_manual_control.h uORB/topics/gimbal_manager_status.h uORB/topics/gps_dump.h uORB/topics/gps_inject_data.h uORB/topics/heater_status.h uORB/topics/home_position.h uORB/topics/hover_thrust_estimate.h uORB/topics/input_rc.h uORB/topics/iridiumsbd_status.h uORB/topics/irlock_report.h uORB/topics/landing_gear.h uORB/topics/landing_target_innovations.h uORB/topics/landing_target_pose.h uORB/topics/led_control.h uORB/topics/log_message.h uORB/topics/logger_status.h uORB/topics/mag_worker_data.h uORB/topics/manual_control_setpoint.h uORB/topics/manual_control_switches.h uORB/topics/mavlink_log.h uORB/topics/mission.h uORB/topics/mission_result.h uORB/topics/mount_orientation.h uORB/topics/multirotor_motor_limits.h uORB/topics/navigator_mission_item.h uORB/topics/obstacle_distance.h uORB/topics/offboard_control_mode.h uORB/topics/onboard_computer_status.h uORB/topics/optical_flow.h uORB/topics/orb_test.h uORB/topics/orb_test_large.h uORB/topics/orb_test_medium.h uORB/topics/orbit_status.h uORB/topics/parameter_update.h uORB/topics/ping.h uORB/topics/position_controller_landing_status.h uORB/topics/position_controller_status.h uORB/topics/position_setpoint.h uORB/topics/position_setpoint_triplet.h uORB/topics/power_button_state.h uORB/topics/power_monitor.h uORB/topics/pwm_input.h uORB/topics/px4io_status.h uORB/topics/qshell_req.h uORB/topics/qshell_retval.h uORB/topics/radio_status.h uORB/topics/rate_ctrl_status.h uORB/topics/rc_channels.h uORB/topics/rc_parameter_map.h uORB/topics/rpm.h uORB/topics/rtl_flight_time.h uORB/topics/safety.h uORB/topics/satellite_info.h uORB/topics/sensor_accel.h uORB/topics/sensor_accel_fifo.h uORB/topics/sensor_baro.h uORB/topics/sensor_combined.h uORB/topics/sensor_correction.h uORB/topics/sensor_gps.h uORB/topics/sensor_gyro.h uORB/topics/sensor_gyro_fft.h uORB/topics/sensor_gyro_fifo.h uORB/topics/sensor_mag.h uORB/topics/sensor_preflight_mag.h uORB/topics/sensor_selection.h uORB/topics/sensors_status_imu.h uORB/topics/system_power.h uORB/topics/takeoff_status.h uORB/topics/task_stack_info.h uORB/topics/tecs_status.h uORB/topics/telemetry_status.h uORB/topics/test_motor.h uORB/topics/timesync.h uORB/topics/timesync_status.h uORB/topics/trajectory_bezier.h uORB/topics/trajectory_waypoint.h uORB/topics/transponder_report.h uORB/topics/tune_control.h uORB/topics/uavcan_parameter_request.h uORB/topics/uavcan_parameter_value.h uORB/topics/ulog_stream.h uORB/topics/ulog_stream_ack.h uORB/topics/vehicle_acceleration.h uORB/topics/vehicle_actuator_setpoint.h uORB/topics/vehicle_air_data.h uORB/topics/vehicle_angular_acceleration.h uORB/topics/vehicle_angular_acceleration_setpoint.h uORB/topics/vehicle_angular_velocity.h uORB/topics/vehicle_attitude.h uORB/topics/vehicle_attitude_setpoint.h uORB/topics/vehicle_command.h uORB/topics/vehicle_command_ack.h uORB/topics/vehicle_constraints.h uORB/topics/vehicle_control_mode.h uORB/topics/vehicle_global_position.h uORB/topics/vehicle_gps_position.h uORB/topics/vehicle_imu.h uORB/topics/vehicle_imu_status.h uORB/topics/vehicle_land_detected.h uORB/topics/vehicle_local_position.h uORB/topics/vehicle_local_position_setpoint.h uORB/topics/vehicle_magnetometer.h uORB/topics/vehicle_odometry.h uORB/topics/vehicle_rates_setpoint.h uORB/topics/vehicle_roi.h uORB/topics/vehicle_status.h uORB/topics/vehicle_status_flags.h uORB/topics/vehicle_thrust_setpoint.h uORB/topics/vehicle_torque_setpoint.h uORB/topics/vehicle_trajectory_bezier.h uORB/topics/vehicle_trajectory_waypoint.h uORB/topics/vtol_vehicle_status.h uORB/topics/wheel_encoders.h uORB/topics/wind.h uORB/topics/yaw_estimator_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/uORBTopics.hpp /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/actuator_armed.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/actuator_controls.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/actuator_outputs.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/adc_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/airspeed.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/airspeed_validated.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/airspeed_wind.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/battery_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/camera_capture.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/camera_trigger.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/cellular_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/collision_constraints.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/collision_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/commander_state.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/control_allocator_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/cpuload.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/debug_array.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/debug_key_value.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/debug_value.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/debug_vect.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/differential_pressure.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/distance_sensor.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ekf2_timestamps.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ekf_gps_drift.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/esc_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/esc_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_event_flags.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_innovations.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_optical_flow_vel.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_selector_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_sensor_bias.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_states.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/estimator_status_flags.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/follow_target.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/generator_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/geofence_result.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_device_attitude_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_device_information.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_device_set_attitude.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_manager_information.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_manager_set_attitude.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_manager_set_manual_control.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gimbal_manager_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gps_dump.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/gps_inject_data.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/heater_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/home_position.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/hover_thrust_estimate.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/input_rc.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/iridiumsbd_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/irlock_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/landing_gear.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/landing_target_innovations.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/landing_target_pose.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/led_control.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/log_message.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/logger_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mag_worker_data.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/manual_control_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/manual_control_switches.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mavlink_log.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mission.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mission_result.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/mount_orientation.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/multirotor_motor_limits.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/navigator_mission_item.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/obstacle_distance.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/offboard_control_mode.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/onboard_computer_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/optical_flow.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/orb_test.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/orb_test_large.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/orb_test_medium.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/orbit_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/parameter_update.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ping.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/position_controller_landing_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/position_controller_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/position_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/position_setpoint_triplet.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/power_button_state.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/power_monitor.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/pwm_input.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/px4io_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/qshell_req.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/qshell_retval.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/radio_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rate_ctrl_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rc_channels.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rc_parameter_map.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rpm.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/rtl_flight_time.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/safety.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/satellite_info.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_accel.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_accel_fifo.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_baro.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_combined.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_correction.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_gps.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_gyro.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_gyro_fft.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_gyro_fifo.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_mag.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_preflight_mag.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensor_selection.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/sensors_status_imu.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/system_power.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/takeoff_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/task_stack_info.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/tecs_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/telemetry_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/test_motor.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/timesync.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/timesync_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/trajectory_bezier.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/trajectory_waypoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/transponder_report.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/tune_control.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/uavcan_parameter_request.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/uavcan_parameter_value.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ulog_stream.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/ulog_stream_ack.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_acceleration.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_actuator_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_air_data.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_angular_acceleration.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_angular_acceleration_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_angular_velocity.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_attitude.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_attitude_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_command.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_command_ack.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_constraints.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_control_mode.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_global_position.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_gps_position.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_imu.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_imu_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_land_detected.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_local_position.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_local_position_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_magnetometer.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_odometry.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_rates_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_roi.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_status_flags.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_thrust_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_torque_setpoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_trajectory_bezier.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vehicle_trajectory_waypoint.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/vtol_vehicle_status.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/wheel_encoders.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/wind.h /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics/yaw_estimator_status.h cd /Users/mengchaoheng/Downloads/PX4-Autopilot/msg && /usr/local/bin/python3 tools/px_generate_uorb_topic_files.py --headers -f actuator_armed.msg actuator_controls.msg actuator_outputs.msg adc_report.msg airspeed.msg airspeed_validated.msg airspeed_wind.msg battery_status.msg camera_capture.msg camera_trigger.msg cellular_status.msg collision_constraints.msg collision_report.msg commander_state.msg control_allocator_status.msg cpuload.msg debug_array.msg debug_key_value.msg debug_value.msg debug_vect.msg differential_pressure.msg distance_sensor.msg ekf2_timestamps.msg ekf_gps_drift.msg esc_report.msg esc_status.msg estimator_event_flags.msg estimator_innovations.msg estimator_optical_flow_vel.msg estimator_selector_status.msg estimator_sensor_bias.msg estimator_states.msg estimator_status.msg estimator_status_flags.msg follow_target.msg generator_status.msg geofence_result.msg gimbal_device_attitude_status.msg gimbal_device_information.msg gimbal_device_set_attitude.msg gimbal_manager_information.msg gimbal_manager_set_attitude.msg gimbal_manager_set_manual_control.msg gimbal_manager_status.msg gps_dump.msg gps_inject_data.msg heater_status.msg home_position.msg hover_thrust_estimate.msg input_rc.msg iridiumsbd_status.msg irlock_report.msg landing_gear.msg landing_target_innovations.msg landing_target_pose.msg led_control.msg log_message.msg logger_status.msg mag_worker_data.msg manual_control_setpoint.msg manual_control_switches.msg mavlink_log.msg mission.msg mission_result.msg mount_orientation.msg multirotor_motor_limits.msg navigator_mission_item.msg obstacle_distance.msg offboard_control_mode.msg onboard_computer_status.msg optical_flow.msg orb_test.msg orb_test_large.msg orb_test_medium.msg orbit_status.msg parameter_update.msg ping.msg position_controller_landing_status.msg position_controller_status.msg position_setpoint.msg position_setpoint_triplet.msg power_button_state.msg power_monitor.msg pwm_input.msg px4io_status.msg qshell_req.msg qshell_retval.msg radio_status.msg rate_ctrl_status.msg rc_channels.msg rc_parameter_map.msg rpm.msg rtl_flight_time.msg safety.msg satellite_info.msg sensor_accel.msg sensor_accel_fifo.msg sensor_baro.msg sensor_combined.msg sensor_correction.msg sensor_gps.msg sensor_gyro.msg sensor_gyro_fft.msg sensor_gyro_fifo.msg sensor_mag.msg sensor_preflight_mag.msg sensor_selection.msg sensors_status_imu.msg system_power.msg takeoff_status.msg task_stack_info.msg tecs_status.msg telemetry_status.msg test_motor.msg timesync.msg timesync_status.msg trajectory_bezier.msg trajectory_waypoint.msg transponder_report.msg tune_control.msg uavcan_parameter_request.msg uavcan_parameter_value.msg ulog_stream.msg ulog_stream_ack.msg vehicle_acceleration.msg vehicle_actuator_setpoint.msg vehicle_air_data.msg vehicle_angular_acceleration.msg vehicle_angular_acceleration_setpoint.msg vehicle_angular_velocity.msg vehicle_attitude.msg vehicle_attitude_setpoint.msg vehicle_command.msg vehicle_command_ack.msg vehicle_constraints.msg vehicle_control_mode.msg vehicle_global_position.msg vehicle_gps_position.msg vehicle_imu.msg vehicle_imu_status.msg vehicle_land_detected.msg vehicle_local_position.msg vehicle_local_position_setpoint.msg vehicle_magnetometer.msg vehicle_odometry.msg vehicle_rates_setpoint.msg vehicle_roi.msg vehicle_status.msg vehicle_status_flags.msg vehicle_thrust_setpoint.msg vehicle_torque_setpoint.msg vehicle_trajectory_bezier.msg vehicle_trajectory_waypoint.msg vtol_vehicle_status.msg wheel_encoders.msg wind.msg yaw_estimator_status.msg -i /Users/mengchaoheng/Downloads/PX4-Autopilot/msg -o /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/uORB/topics -e templates/uorb -t /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/msg/tmp/headers -q Failed to import em: No module named 'em' You may need to install it using: pip3 install --user empy [6/799] Generating serial_params.c FAILED: generated_params/serial_params.c /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/generated_params/serial_params.c cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/src/lib/parameters && /usr/local/Cellar/cmake/3.22.2/bin/cmake -E make_directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/generated_params && /usr/local/bin/python3 /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/serial/generate_config.py --params-file /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/generated_params/serial_params.c --serial-ports --ethernet --config-files /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/battery/module.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/pwm/pwm_main_params.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/pwm/pwm_aux_params.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/pwm/pwm_extra_params.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/gps/module.yaml /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/module.yaml Failed to import jinja2: No module named 'jinja2' You may need to install it using: pip3 install --user jinja2 ninja: build stopped: subcommand failed. make: *** [px4_sitl] Error 1 ```

mengchaoheng commented 2 years ago

built in the macbook pro 2021 which has a m1 pro CPU

dagar commented 2 years ago

built in the macbook pro 2021 which has a m1 pro CPU

@mengchaoheng I would try PX4 master instead of v1.12.3. Then try re-installing the full dependencies (./Tools/setup/macos.sh), restart, and try again from a clean state.

If it's still failing please message me (@dagar) on PX4 slack and we can try to debug interactively.

mengchaoheng commented 2 years ago

built in the macbook pro 2021 which has a m1 pro CPU

@mengchaoheng I would try PX4 master instead of v1.12.3. Then try re-installing the full dependencies (./Tools/setup/macos.sh), restart, and try again from a clean state.

If it's still failing please message me (@dagar) on PX4 slack and we can try to debug interactively.

I have checkout to v1.12.3, as above

mengchaoheng commented 2 years ago

I just bought a new computer today (MacBook pro 2021) and followed the tutorial to the instructions below. I'm sorry it might be a bit long:

after run the terminal as x86, Homebrew Installation

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro Downloads % /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" ==> Checking for `sudo` access (which may request your password)... Password: ==> This script will install: /usr/local/bin/brew /usr/local/share/doc/homebrew /usr/local/share/man/man1/brew.1 /usr/local/share/zsh/site-functions/_brew /usr/local/etc/bash_completion.d/brew /usr/local/Homebrew ==> The following existing directories will be made group writable: /usr/local/bin /usr/local/share /usr/local/share/doc /usr/local/share/man /usr/local/share/man/man1 ==> The following existing directories will have their owner set to mengchaoheng: /usr/local/bin /usr/local/share /usr/local/share/doc /usr/local/share/man /usr/local/share/man/man1 ==> The following existing directories will have their group set to admin: /usr/local/bin /usr/local/share /usr/local/share/doc /usr/local/share/man /usr/local/share/man/man1 ==> The following new directories will be created: /usr/local/etc /usr/local/include /usr/local/lib /usr/local/sbin /usr/local/var /usr/local/opt /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew /usr/local/var/homebrew/linked /usr/local/Cellar /usr/local/Caskroom /usr/local/Frameworks ==> The Xcode Command Line Tools will be installed. Press RETURN to continue or any other key to abort: ==> /usr/bin/sudo /bin/chmod u+rwx /usr/local/bin /usr/local/share /usr/local/share/doc /usr/local/share/man /usr/local/share/man/man1 ==> /usr/bin/sudo /bin/chmod g+rwx /usr/local/bin /usr/local/share /usr/local/share/doc /usr/local/share/man /usr/local/share/man/man1 ==> /usr/bin/sudo /usr/sbin/chown mengchaoheng /usr/local/bin /usr/local/share /usr/local/share/doc /usr/local/share/man /usr/local/share/man/man1 ==> /usr/bin/sudo /usr/bin/chgrp admin /usr/local/bin /usr/local/share /usr/local/share/doc /usr/local/share/man /usr/local/share/man/man1 ==> /usr/bin/sudo /bin/mkdir -p /usr/local/etc /usr/local/include /usr/local/lib /usr/local/sbin /usr/local/var /usr/local/opt /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew /usr/local/var/homebrew/linked /usr/local/Cellar /usr/local/Caskroom /usr/local/Frameworks ==> /usr/bin/sudo /bin/chmod ug=rwx /usr/local/etc /usr/local/include /usr/local/lib /usr/local/sbin /usr/local/var /usr/local/opt /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew /usr/local/var/homebrew/linked /usr/local/Cellar /usr/local/Caskroom /usr/local/Frameworks ==> /usr/bin/sudo /bin/chmod go-w /usr/local/share/zsh /usr/local/share/zsh/site-functions ==> /usr/bin/sudo /usr/sbin/chown mengchaoheng /usr/local/etc /usr/local/include /usr/local/lib /usr/local/sbin /usr/local/var /usr/local/opt /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew /usr/local/var/homebrew/linked /usr/local/Cellar /usr/local/Caskroom /usr/local/Frameworks ==> /usr/bin/sudo /usr/bin/chgrp admin /usr/local/etc /usr/local/include /usr/local/lib /usr/local/sbin /usr/local/var /usr/local/opt /usr/local/share/zsh /usr/local/share/zsh/site-functions /usr/local/var/homebrew /usr/local/var/homebrew/linked /usr/local/Cellar /usr/local/Caskroom /usr/local/Frameworks ==> /usr/bin/sudo /bin/mkdir -p /usr/local/Homebrew ==> /usr/bin/sudo /usr/sbin/chown -R mengchaoheng:admin /usr/local/Homebrew ==> /usr/bin/sudo /bin/mkdir -p /Users/mengchaoheng/Library/Caches/Homebrew ==> /usr/bin/sudo /bin/chmod g+rwx /Users/mengchaoheng/Library/Caches/Homebrew ==> /usr/bin/sudo /usr/sbin/chown -R mengchaoheng /Users/mengchaoheng/Library/Caches/Homebrew ==> Searching online for the Command Line Tools ==> /usr/bin/sudo /usr/bin/touch /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress ==> Installing Command Line Tools for Xcode-13.2 ==> /usr/bin/sudo /usr/sbin/softwareupdate -i Command\ Line\ Tools\ for\ Xcode-13.2 Software Update Tool Finding available software Downloading Command Line Tools for Xcode Downloaded Command Line Tools for Xcode Installing Command Line Tools for Xcode Done with Command Line Tools for Xcode Done. ==> /usr/bin/sudo /usr/bin/xcode-select --switch /Library/Developer/CommandLineTools ==> /usr/bin/sudo /bin/rm -f /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress ==> Downloading and installing Homebrew... remote: Enumerating objects: 203623, done. remote: Counting objects: 100% (44/44), done. remote: Compressing objects: 100% (44/44), done. remote: Total 203623 (delta 0), reused 44 (delta 0), pack-reused 203579 Receiving objects: 100% (203623/203623), 56.22 MiB | 7.38 MiB/s, done. Resolving deltas: 100% (150029/150029), done. From https://github.com/Homebrew/brew ... * [new tag] 3.3.1 -> 3.3.1 * [new tag] 3.3.10 -> 3.3.10 * [new tag] 3.3.11 -> 3.3.11 * [new tag] 3.3.12 -> 3.3.12 * [new tag] 3.3.13 -> 3.3.13 * [new tag] 3.3.14 -> 3.3.14 * [new tag] 3.3.15 -> 3.3.15 * [new tag] 3.3.16 -> 3.3.16 ... HEAD is now at 103cd0c94 Merge pull request #12931 from Homebrew/dependabot/bundler/docs/nokogiri-1.13.3 ==> Tapping homebrew/core remote: Enumerating objects: 1148841, done. remote: Counting objects: 100% (52/52), done. remote: Compressing objects: 100% (34/34), done. remote: Total 1148841 (delta 30), reused 36 (delta 18), pack-reused 1148789 Receiving objects: 100% (1148841/1148841), 454.69 MiB | 6.68 MiB/s, done. Resolving deltas: 100% (794700/794700), done. From https://github.com/Homebrew/homebrew-core * [new branch] master -> origin/master HEAD is now at bcfdc1945f3 luaver: fix test on Linux ==> Installation successful! ==> Homebrew has enabled anonymous aggregate formulae and cask analytics. Read the analytics documentation (and how to opt-out) here: https://docs.brew.sh/Analytics No analytics data has been sent yet (nor will any be during this install run). ==> Homebrew is run entirely by unpaid volunteers. Please consider donating: https://github.com/Homebrew/brew#donations ==> Next steps: - Run brew help to get started - Further documentation: https://docs.brew.sh ````

then install the common tools:

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro Downloads % brew tap PX4/px4 ==> Tapping px4/px4 Cloning into '/usr/local/Homebrew/Library/Taps/px4/homebrew-px4'... remote: Enumerating objects: 568, done. remote: Counting objects: 100% (154/154), done. remote: Compressing objects: 100% (122/122), done. remote: Total 568 (delta 65), reused 65 (delta 28), pack-reused 414 Receiving objects: 100% (568/568), 367.26 KiB | 165.00 KiB/s, done. Resolving deltas: 100% (284/284), done. Tapped 19 formulae (32 files, 408KB). mengchaoheng@mengchaohengdeMacBook-Pro Downloads % brew install px4-dev ==> Tapping discoteq/discoteq Cloning into '/usr/local/Homebrew/Library/Taps/discoteq/homebrew-discoteq'... remote: Enumerating objects: 14, done. remote: Total 14 (delta 0), reused 0 (delta 0), pack-reused 14 Receiving objects: 100% (14/14), done. Resolving deltas: 100% (2/2), done. Tapped 1 formula (13 files, 8.8KB). ==> Downloading https://ghcr.io/v2/homebrew/core/openjdk/manifests/17.0.2 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/openjdk/blobs/sha256:29512989f1 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ant/manifests/1.10.12 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ant/blobs/sha256:65361546d11f6c ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/astyle/manifests/3.1-1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/astyle/blobs/sha256:770266207c3 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/bash-completion/manifests/1.3_3 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/bash-completion/blobs/sha256:1a ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/hiredis/manifests/1.0.2 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/hiredis/blobs/sha256:61d0cc6626 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/manifests/1.5.2 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/blobs/sha256:92089ac665de7 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ccache/manifests/4.5.1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:1cb93db06ab ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/cmake/manifests/3.22.2 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:45b1e48b94fd ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://github.com/discoteq/flock/releases/download/v0.4.0/flock ==> Downloading from https://objects.githubusercontent.com/github-production-rel ######################################################################## 100.0% ==> Downloading https://github.com/eProsima/Fast-CDR/archive/v1.0.8.tar.gz ==> Downloading from https://codeload.github.com/eProsima/Fast-CDR/tar.gz/refs/t -=O=- # # # # ==> Downloading http://px4-tools.s3.amazonaws.com/fastrtps-1.6.0.high_sierra.bot ######################################################################## 100.0% ==> Downloading https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2020q ==> Downloading from https://armkeil.blob.core.windows.net/developer/Files/downl ######################################################################## 100.0% ==> Downloading http://px4-travis.s3.amazonaws.com/toolchain/genromfs-0.5.2.tar. ######################################################################## 100.0% ==> Downloading http://px4-travis.s3.amazonaws.com/toolchain/bottles/kconfig-fro ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ninja/manifests/1.10.2_1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ninja/blobs/sha256:7a28d090cbec ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/gdbm/manifests/1.23 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/gdbm/blobs/sha256:0d0aeea95f9e7 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/mpdecimal/manifests/2.5.1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/mpdecimal/blobs/sha256:73e9acc9 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2022- ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/blobs/sha256:40 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/1.1/manifests/1.1.1m ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/1.1/blobs/sha256:bac056 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/readline/manifests/8.1.2 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/readline/blobs/sha256:976185ec2 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/manifests/3.38.0 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:9e77132d9e6 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/xz/manifests/5.2.5 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:099055bb0afb3df ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/python/3.9/manifests/3.9.10 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/python/3.9/blobs/sha256:be3b63b ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sh ######################################################################## 100.0% ==> Downloading https://raw.githubusercontent.com/PX4/PX4-Autopilot/master/Tools ######################################################################## 100.0% ==> Installing px4-dev from px4/px4 ==> Installing dependencies for px4/px4/px4-dev: openjdk, ant, astyle, bash-completion, hiredis, zstd, ccache, cmake, discoteq/discoteq/flock, fastcdr, fastrtps, gcc-arm-none-eabi, genromfs, kconfig-frontends, ninja, gdbm, mpdecimal, ca-certificates, openssl@1.1, readline, sqlite, xz and python ==> Installing px4/px4/px4-dev dependency: openjdk ==> Pouring openjdk--17.0.2.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/openjdk/17.0.2: 639 files, 305.4MB ==> Installing px4/px4/px4-dev dependency: ant ==> Pouring ant--1.10.12.all.bottle.tar.gz 🍺 /usr/local/Cellar/ant/1.10.12: 1,671 files, 42.2MB ==> Installing px4/px4/px4-dev dependency: astyle ==> Pouring astyle--3.1.monterey.bottle.1.tar.gz 🍺 /usr/local/Cellar/astyle/3.1: 5 files, 522.4KB ==> Installing px4/px4/px4-dev dependency: bash-completion ==> Pouring bash-completion--1.3_3.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/bash-completion/1.3_3: 189 files, 608.4KB ==> Installing px4/px4/px4-dev dependency: hiredis ==> Pouring hiredis--1.0.2.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/hiredis/1.0.2: 36 files, 317.2KB ==> Installing px4/px4/px4-dev dependency: zstd ==> Pouring zstd--1.5.2.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/zstd/1.5.2: 31 files, 2.7MB ==> Installing px4/px4/px4-dev dependency: ccache ==> Pouring ccache--4.5.1.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/ccache/4.5.1: 68 files, 1.3MB ==> Installing px4/px4/px4-dev dependency: cmake ==> Pouring cmake--3.22.2.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/cmake/3.22.2: 2,986 files, 44.3MB ==> Installing px4/px4/px4-dev dependency: discoteq/discoteq/flock ==> ./configure --prefix=/usr/local/Cellar/flock/0.4.0 ==> make install 🍺 /usr/local/Cellar/flock/0.4.0: 6 files, 60.5KB, built in 14 seconds ==> Installing px4/px4/px4-dev dependency: fastcdr /usr/local/Homebrew/Library/Taps/px4/homebrew-px4/Formula/fastcdr.rb:18: warning: conflicting chdir during another chdir block ==> cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/local/Cellar/fastcdr/1.6.0 .. ==> make ==> make install 🍺 /usr/local/Cellar/fastcdr/1.6.0: 21 files, 420.9KB, built in 6 seconds ==> Installing px4/px4/px4-dev dependency: fastrtps ==> Pouring fastrtps-1.6.0.high_sierra.bottle.tar.gz 🍺 /usr/local/Cellar/fastrtps/1.6.0: 396 files, 5.8MB ==> Installing px4/px4/px4-dev dependency: gcc-arm-none-eabi ==> Copying binaries... 🍺 /usr/local/Cellar/gcc-arm-none-eabi/20200630: 6,624 files, 658.8MB, built in 22 seconds ==> Installing px4/px4/px4-dev dependency: genromfs ==> Patching ==> make ==> make PREFIX=/usr/local/Cellar/genromfs/0.5.2 install-bin 🍺 /usr/local/Cellar/genromfs/0.5.2: 6 files, 75KB, built in 3 seconds ==> Installing px4/px4/px4-dev dependency: kconfig-frontends ==> Pouring kconfig-frontends-3.7.0.0.yosemite.bottle.tar.gz 🍺 /usr/local/Cellar/kconfig-frontends/3.7.0.0: 18 files, 289.5KB ==> Installing px4/px4/px4-dev dependency: ninja ==> Pouring ninja--1.10.2_1.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/ninja/1.10.2_1: 10 files, 402.3KB ==> Installing px4/px4/px4-dev dependency: gdbm ==> Pouring gdbm--1.23.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/gdbm/1.23: 24 files, 956.7KB ==> Installing px4/px4/px4-dev dependency: mpdecimal ==> Pouring mpdecimal--2.5.1.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/mpdecimal/2.5.1: 71 files, 2.1MB ==> Installing px4/px4/px4-dev dependency: ca-certificates ==> Pouring ca-certificates--2022-02-01.all.bottle.tar.gz ==> Regenerating CA certificate bundle from keychain, this may take a while... 🍺 /usr/local/Cellar/ca-certificates/2022-02-01: 3 files, 213.4KB ==> Installing px4/px4/px4-dev dependency: openssl@1.1 ==> Pouring openssl@1.1--1.1.1m.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/openssl@1.1/1.1.1m: 8,081 files, 18.5MB ==> Installing px4/px4/px4-dev dependency: readline ==> Pouring readline--8.1.2.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/readline/8.1.2: 48 files, 1.6MB ==> Installing px4/px4/px4-dev dependency: sqlite ==> Pouring sqlite--3.38.0.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/sqlite/3.38.0: 11 files, 4.4MB ==> Installing px4/px4/px4-dev dependency: xz ==> Pouring xz--5.2.5.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/xz/5.2.5: 95 files, 1.3MB ==> Installing px4/px4/px4-dev dependency: python ==> Pouring python@3.9--3.9.10.monterey.bottle.tar.gz ==> /usr/local/Cellar/python@3.9/3.9.10/bin/python3 -m ensurepip ==> /usr/local/Cellar/python@3.9/3.9.10/bin/python3 -m pip install -v --no-deps 🍺 /usr/local/Cellar/python@3.9/3.9.10: 3,080 files, 54.9MB ==> Installing px4/px4/px4-dev ==> PX4 Toolchain Installed 🍺 /usr/local/Cellar/px4-dev/1.11.0: 3 files, 7.7KB, built in 2 seconds ==> Running `brew cleanup px4-dev`... Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP. ```

then Install the required Python packages

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro Downloads % python3 -m pip install --user pyserial empy toml numpy pandas jinja2 pyyaml pyros-genmsg packaging kconfiglib future jsonschema Collecting pyserial Downloading pyserial-3.5-py2.py3-none-any.whl (90 kB) |████████████████████████████████| 90 kB 231 kB/s Collecting empy Downloading empy-3.3.4.tar.gz (62 kB) |████████████████████████████████| 62 kB 725 kB/s Collecting toml Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting numpy Downloading numpy-1.22.2.zip (11.4 MB) |████████████████████████████████| 11.4 MB 416 kB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Collecting pandas Downloading pandas-1.4.1.tar.gz (4.9 MB) |████████████████████████████████| 4.9 MB 12.1 MB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Collecting jinja2 Downloading Jinja2-3.0.3-py3-none-any.whl (133 kB) |████████████████████████████████| 133 kB 51.4 MB/s Collecting pyyaml Downloading PyYAML-6.0.tar.gz (124 kB) |████████████████████████████████| 124 kB 398 kB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Collecting pyros-genmsg Downloading pyros_genmsg-0.5.8-py2.py3-none-any.whl (25 kB) Collecting packaging Downloading packaging-21.3-py3-none-any.whl (40 kB) |████████████████████████████████| 40 kB 7.2 MB/s Collecting kconfiglib Downloading kconfiglib-14.1.0-py2.py3-none-any.whl (145 kB) |████████████████████████████████| 145 kB 15.0 MB/s Collecting future Downloading future-0.18.2.tar.gz (829 kB) |████████████████████████████████| 829 kB 9.5 MB/s Collecting jsonschema Downloading jsonschema-4.4.0-py3-none-any.whl (72 kB) |████████████████████████████████| 72 kB 1.9 MB/s Collecting pytz>=2020.1 Downloading pytz-2021.3-py2.py3-none-any.whl (503 kB) |████████████████████████████████| 503 kB 356 kB/s Collecting python-dateutil>=2.8.1 Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) |████████████████████████████████| 247 kB 319 kB/s Collecting MarkupSafe>=2.0 Downloading MarkupSafe-2.1.0.tar.gz (18 kB) Collecting pyparsing!=3.0.5,>=2.0.2 Downloading pyparsing-3.0.7-py3-none-any.whl (98 kB) |████████████████████████████████| 98 kB 295 kB/s Collecting pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 Downloading pyrsistent-0.18.1.tar.gz (100 kB) |████████████████████████████████| 100 kB 1.8 MB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Collecting importlib-resources>=1.4.0; python_version < "3.9" Downloading importlib_resources-5.4.0-py3-none-any.whl (28 kB) Collecting attrs>=17.4.0 Downloading attrs-21.4.0-py2.py3-none-any.whl (60 kB) |████████████████████████████████| 60 kB 193 kB/s Requirement already satisfied: six>=1.5 in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages (from python-dateutil>=2.8.1->pandas) (1.15.0) Collecting zipp>=3.1.0; python_version < "3.10" Downloading zipp-3.7.0-py3-none-any.whl (5.3 kB) Building wheels for collected packages: empy, numpy, pandas, pyyaml, future, MarkupSafe, pyrsistent Building wheel for empy (setup.py) ... done Created wheel for empy: filename=empy-3.3.4-py3-none-any.whl size=29328 sha256=2c4a13f34ddb9c4a1b050df57cb1f15aa87bd57b54dc0b6f20672ba79614e4c6 Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/b0/d7/80/0e8ad4f073e05b2435c3b4c12c230cb219135bae4f59978612 Building wheel for numpy (PEP 517) ... error ERROR: Command errored out with exit status 1: command: /Library/Developer/CommandLineTools/usr/bin/python3 /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py build_wheel /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpht0nk0u0 cwd: /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy Complete output (1555 lines): Processing numpy/random/_bounded_integers.pxd.in Processing numpy/random/_philox.pyx Processing numpy/random/_bounded_integers.pyx.in Processing numpy/random/_sfc64.pyx Processing numpy/random/_mt19937.pyx Processing numpy/random/bit_generator.pyx Processing numpy/random/mtrand.pyx Processing numpy/random/_generator.pyx Processing numpy/random/_pcg64.pyx Processing numpy/random/_common.pyx Cythonizing sources INFO: blas_opt_info: INFO: blas_armpl_info: INFO: customize UnixCCompiler INFO: libraries armpl_lp64_mp not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: blas_mkl_info: INFO: libraries mkl_rt not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: blis_info: INFO: libraries blis not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: openblas_info: INFO: libraries openblas not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: accelerate_info: INFO: libraries accelerate not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: Library accelerate was not found. Ignoring INFO: libraries veclib not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: Library veclib was not found. Ignoring INFO: FOUND: INFO: extra_compile_args = ['-msse3', '-I/System/Library/Frameworks/vecLib.framework/Headers'] INFO: extra_link_args = ['-Wl,-framework', '-Wl,Accelerate'] INFO: define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)] INFO: INFO: FOUND: INFO: extra_compile_args = ['-msse3', '-I/System/Library/Frameworks/vecLib.framework/Headers'] INFO: extra_link_args = ['-Wl,-framework', '-Wl,Accelerate'] INFO: define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)] INFO: non-existing path in 'numpy/distutils': 'site.cfg' INFO: lapack_opt_info: INFO: lapack_armpl_info: INFO: libraries armpl_lp64_mp not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: lapack_mkl_info: INFO: libraries mkl_rt not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: openblas_lapack_info: INFO: libraries openblas not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: openblas_clapack_info: INFO: libraries openblas,lapack not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: flame_info: INFO: libraries flame not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: FOUND: INFO: extra_compile_args = ['-msse3', '-I/System/Library/Frameworks/vecLib.framework/Headers'] INFO: extra_link_args = ['-Wl,-framework', '-Wl,Accelerate'] INFO: define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)] INFO: running bdist_wheel running build running config_cc INFO: unifing config_cc, config, build_clib, build_ext, build commands --compiler options running config_fc INFO: unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options running build_src INFO: build_src INFO: building py_modules sources creating build creating build/src.macosx-10.14-x86_64-3.8 creating build/src.macosx-10.14-x86_64-3.8/numpy creating build/src.macosx-10.14-x86_64-3.8/numpy/distutils INFO: building library "npymath" sources WARN: Could not locate executable gfortran WARN: Could not locate executable f95 WARN: Could not locate executable nagfor WARN: Could not locate executable f90 WARN: Could not locate executable f77 WARN: Could not locate executable xlf90 WARN: Could not locate executable xlf WARN: Could not locate executable ifort WARN: Could not locate executable ifc WARN: Could not locate executable g77 WARN: Could not locate executable g95 WARN: Could not locate executable pgfortran WARN: don't know how to compile Fortran code on platform 'posix' creating build/src.macosx-10.14-x86_64-3.8/numpy/core creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/npy_math_internal.h INFO: adding 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath' to include_dirs. INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/ieee754.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/npy_math_complex.c INFO: None - nothing done with h_files = ['build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/npy_math_internal.h'] INFO: building library "npyrandom" sources INFO: building extension "numpy.core._multiarray_tests" sources creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/_multiarray_tests.c INFO: building extension "numpy.core._multiarray_umath" sources non-existing path in 'numpy/core': 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common' INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/arraytypes.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/einsum.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/einsum_sumprod.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/lowlevel_strided_loops.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/nditer_templ.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/scalartypes.c creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_sort.h INFO: adding 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common' to include_dirs. creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/quicksort.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/mergesort.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/timsort.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/heapsort.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_partition.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/selection.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_binsearch.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/binsearch.c creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/funcs.inc INFO: adding 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath' to include_dirs. INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/simd.inc INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_utils.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/matmul.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/matmul.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/scalarmath.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/templ_common.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_cpu_features.c INFO: numpy.core - nothing done with h_files = ['build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_sort.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_partition.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_binsearch.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/funcs.inc', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/simd.inc', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_utils.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/matmul.h', 'numpy/core/src/umath/clip.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/templ_common.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/config.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/_numpyconfig.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/__multiarray_api.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/__ufunc_api.h'] INFO: building extension "numpy.core._umath_tests" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/_umath_tests.c INFO: building extension "numpy.core._rational_tests" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/_rational_tests.c INFO: building extension "numpy.core._struct_ufunc_tests" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/_struct_ufunc_tests.c INFO: building extension "numpy.core._operand_flag_tests" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/_operand_flag_tests.c INFO: building extension "numpy.core._simd" sources creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd_inc.h INFO: adding 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd' to include_dirs. INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd_data.inc INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd.dispatch.c INFO: numpy.core - nothing done with h_files = ['build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd_inc.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd_data.inc'] INFO: building extension "numpy.fft._pocketfft_internal" sources INFO: building extension "numpy.linalg.lapack_lite" sources creating build/src.macosx-10.14-x86_64-3.8/numpy/linalg INFO: building extension "numpy.linalg._umath_linalg" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/linalg/umath_linalg.c INFO: building extension "numpy.random._mt19937" sources INFO: building extension "numpy.random._philox" sources INFO: building extension "numpy.random._pcg64" sources INFO: building extension "numpy.random._sfc64" sources INFO: building extension "numpy.random._common" sources INFO: building extension "numpy.random.bit_generator" sources INFO: building extension "numpy.random._generator" sources INFO: building extension "numpy.random._bounded_integers" sources INFO: building extension "numpy.random.mtrand" sources INFO: building data_files sources INFO: build_src: building npy-pkg config files running build_py creating build/lib.macosx-10.14-x86_64-3.8 creating build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/conftest.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/_version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/_globals.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/dual.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/_distributor_init.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/ctypeslib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/matlib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/_pytesttester.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying build/src.macosx-10.14-x86_64-3.8/numpy/__config__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy creating build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_constants.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_elementwise_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_sorting_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_manipulation_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_searching_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_typing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_utility_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_array_object.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_data_type_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_dtypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/linalg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_statistical_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_set_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_creation_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api creating build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_set_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_array_object.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_elementwise_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_sorting_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_creation_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/compat copying numpy/compat/py3k.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat copying numpy/compat/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat copying numpy/compat/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat copying numpy/compat/_inspect.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat creating build/lib.macosx-10.14-x86_64-3.8/numpy/compat/tests copying numpy/compat/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat/tests copying numpy/compat/tests/test_compat.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/umath.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/fromnumeric.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_dtype.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_add_newdocs.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_methods.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_internal.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_string_helpers.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/multiarray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_asarray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/records.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_add_newdocs_scalars.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_machar.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/setup_common.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/memmap.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/overrides.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/getlimits.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_dtype_ctypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/defchararray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/shape_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/numeric.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/function_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/einsumfunc.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/umath_tests.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_ufunc_config.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_exceptions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/numerictypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_type_aliases.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/cversions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/arrayprint.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/code_generators/generate_numpy_api.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core creating build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_numerictypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalar_methods.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalarmath.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_item_selection.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_array_coercion.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_limited_api.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_machar.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_unicode.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_cpu_dispatcher.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_arrayprint.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalarbuffer.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_indexerrors.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_print.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_half.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_arraymethod.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_mem_overlap.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_shape_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_hashtable.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_deprecations.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_errstate.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_records.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_mem_policy.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_simd.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalarinherit.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_indexing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_umath.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_numeric.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_function_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_datetime.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test__exceptions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_extint128.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_cython.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_umath_complex.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/_locales.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_custom_dtypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_defchararray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_conversion_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalarprint.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_casting_unittests.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_abc.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_ufunc.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_dtype.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_umath_accuracy.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_simd_module.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_getlimits.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_dlpack.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_einsum.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_api.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_longdouble.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_overrides.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalar_ctors.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_multiarray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_memmap.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_nditer.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_cpu_features.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_protocols.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_argparse.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/unixccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/numpy_distribution.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/conv_template.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/cpuinfo.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/ccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/msvc9compiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/npy_pkg_config.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/misc_util.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/log.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/line_endings.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/lib2def.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/pathccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/system_info.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/core.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/exec_command.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/from_template.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/mingw32ccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/extension.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/msvccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/armccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/intelccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/_shell_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/ccompiler_opt.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying build/src.macosx-10.14-x86_64-3.8/numpy/distutils/__config__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils creating build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/config_compiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_ext.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/config.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/install_headers.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_py.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_src.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/sdist.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_scripts.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/bdist_rpm.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/install_clib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_clib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/autodist.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/egg_info.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/install.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/develop.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/install_data.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command creating build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/gnu.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/compaq.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/intel.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/none.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/nag.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/pg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/ibm.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/sun.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/nv.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/lahey.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/g95.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/arm.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/mips.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/hpux.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/environment.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/pathf95.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/fujitsu.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/absoft.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/vast.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler creating build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_system_info.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_ccompiler_opt_conf.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_mingw32ccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_from_template.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_log.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_fcompiler_intel.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_misc_util.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_fcompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_build_ext.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_shell_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_exec_command.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_npy_pkg_config.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_fcompiler_nagfor.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_ccompiler_opt.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_fcompiler_gnu.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/doc copying numpy/doc/constants.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/doc copying numpy/doc/ufuncs.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/doc copying numpy/doc/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/doc creating build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/cfuncs.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/common_rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/crackfortran.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/cb_rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/f2py2e.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/func2subr.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/__version__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/symbolic.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/diagnose.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/capi_maps.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/f90mod_rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/f2py_testing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/use_rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/auxfuncs.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/__main__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py creating build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_mixed.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_logical.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_assumed_shape.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_common.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_kind.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_array_from_pyobj.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_real.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_symbolic.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/util.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_size.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_callback.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_string.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_module_doc.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_quoted_character.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_parameter.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_abstract_interface.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_semicolon_split.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_compile_function.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_block_docstring.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_integer.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_character.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_complex.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_crackfortran.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/fft copying numpy/fft/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft copying numpy/fft/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft copying numpy/fft/helper.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft copying numpy/fft/_pocketfft.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft creating build/lib.macosx-10.14-x86_64-3.8/numpy/fft/tests copying numpy/fft/tests/test_pocketfft.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft/tests copying numpy/fft/tests/test_helper.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft/tests copying numpy/fft/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/_iotools.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/mixins.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/nanfunctions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/recfunctions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/histograms.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/scimath.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/_version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/user_array.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/format.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/twodim_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/index_tricks.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/npyio.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/shape_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/stride_tricks.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/arrayterator.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/function_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/arraysetops.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/arraypad.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/type_check.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/polynomial.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/_datasource.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/ufunclike.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib creating build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_type_check.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_financial_expired.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_twodim_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_polynomial.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test__iotools.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_shape_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_ufunclike.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_index_tricks.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_arrayterator.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test__version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_io.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_arraysetops.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_function_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_arraypad.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_mixins.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_packbits.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test__datasource.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_stride_tricks.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_recfunctions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_nanfunctions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_format.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_histograms.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/linalg copying numpy/linalg/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg copying numpy/linalg/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg copying numpy/linalg/linalg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg creating build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests copying numpy/linalg/tests/test_linalg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests copying numpy/linalg/tests/test_deprecations.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests copying numpy/linalg/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests copying numpy/linalg/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/extras.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/testutils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/core.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/bench.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/timer_comparison.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/mrecords.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma creating build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_old_ma.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_core.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_deprecations.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_subclassing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_extras.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_mrecords.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib copying numpy/matrixlib/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib copying numpy/matrixlib/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib copying numpy/matrixlib/defmatrix.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib creating build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_matrix_linalg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_defmatrix.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_interaction.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_numeric.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_masked_matrix.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_multiarray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/laguerre.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/_polybase.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/polyutils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/hermite_e.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/chebyshev.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/polynomial.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/legendre.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/hermite.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial creating build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_chebyshev.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_hermite_e.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_polynomial.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_laguerre.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_legendre.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_printing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_hermite.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_classes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_polyutils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/random copying numpy/random/_pickle.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random copying numpy/random/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random copying numpy/random/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random creating build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_generator_mt19937.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_randomstate.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_direct.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_extending.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_smoke.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_randomstate_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_seed_sequence.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_generator_mt19937_regressions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_random.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/testing copying numpy/testing/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing copying numpy/testing/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing copying numpy/testing/utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing copying numpy/testing/print_coercion_tables.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing creating build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/nosetester.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/extbuild.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/noseclasses.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/parameterized.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/decorators.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private creating build/lib.macosx-10.14-x86_64-3.8/numpy/testing/tests copying numpy/testing/tests/test_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/tests copying numpy/testing/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/tests copying numpy/testing/tests/test_doctesting.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_char_codes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_extended_precision.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_generic_alias.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_nbit.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_dtype_like.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/mypy_plugin.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_array_like.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_scalars.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_shape.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_add_docstring.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_nested_sequence.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing creating build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/test_isfile.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/test_typing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/test_runtime.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/test_generic_alias.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_warnings.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_matlib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_ctypeslib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test__all__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_numpy_version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_reloading.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_public_api.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_scripts.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests UPDATING build/lib.macosx-10.14-x86_64-3.8/numpy/_version.py set build/lib.macosx-10.14-x86_64-3.8/numpy/_version.py to '1.22.2' running build_clib INFO: customize UnixCCompiler INFO: customize UnixCCompiler using new_build_clib INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-march=native) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1 creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3 creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-march=native' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/test_flags.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/test_flags.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/test_flags.o.d -march=native) failed with exit status 1 output -> clang: error: the clang compiler does not support '-march=native' WARN: CCompilerOpt.cc_test_flags[1025] : testing failed INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-O3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-O3' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-Werror=switch) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-Werror=switch' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-Werror) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-Werror' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/test_flags.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/test_flags.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/test_flags.o.d -Werror) failed with exit status 1 output -> error: overriding currently unsupported use of floating point exceptions on this target [-Werror,-Wunsupported-floating-point-opt] 1 error generated. WARN: CCompilerOpt.cc_test_flags[1025] : testing failed INFO: CCompilerOpt.__init__[1709] : check requested baseline INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse2' INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE2' with flags (-msse -msse2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse2.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse2.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse2.o.d -msse -msse2 -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse2.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/emmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/xmmintrin.h:13: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:525:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE' with flags (-msse -msse2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse.o.d -msse -msse2 -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/xmmintrin.h:13: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:525:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.__init__[1718] : check requested dispatch-able features INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse3' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mssse3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mssse3' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse4.1) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse4.1' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mpopcnt) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mpopcnt' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse4.2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse4.2' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mavx' INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_avx.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_avx.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_avx.o.d -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_avx.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/immintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/x86gprintrin.h:15: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/hresetintrin.h:42:27: error: invalid input constraint 'a' in asm __asm__ ("hreset $0" :: "a"(__eax)); ^ In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_avx.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/immintrin.h:17: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE3' with flags (-msse -msse2 -msse3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -msse3 -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse3.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse3.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpcet4fqx7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse3.o.d -msse -msse2 -msse3 -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/numpy/distutils/checks/cpu_sse3.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/pmmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/emmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/xmmintrin.h:13: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:525:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.__init__[1734] : initialize targets groups INFO: CCompilerOpt.__init__[1736] : parse target group simd_test INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (ASIMD (FMA3 AVX2) AVX512F FMA4 VSX2 XOP AVX512_SKX VSX3 SSE2 NEON VSX SSE42) not part of baseline or dispatch-able features INFO: CCompilerOpt.generate_dispatch_header[2280] : generate CPU dispatch header: (build/src.macosx-10.14-x86_64-3.8/numpy/distutils/include/npy_cpu_dispatch_config.h) WARN: CCompilerOpt.generate_dispatch_header[2289] : dispatch header dir build/src.macosx-10.14-x86_64-3.8/numpy/distutils/include does not exist, creating it INFO: building 'npymath' library INFO: compiling C sources INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8 creating build/temp.macosx-10.14-x86_64-3.8/numpy creating build/temp.macosx-10.14-x86_64-3.8/numpy/core creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/npymath creating build/temp.macosx-10.14-x86_64-3.8/build creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8 creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath INFO: compile options: '-Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' INFO: clang: numpy/core/src/npymath/npy_math.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/npy_math_complex.c INFO: clang: numpy/core/src/npymath/halffloat.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/ieee754.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: ar: adding 4 object files to build/temp.macosx-10.14-x86_64-3.8/libnpymath.a warning: /Library/Developer/CommandLineTools/usr/bin/ranlib: archive library: build/temp.macosx-10.14-x86_64-3.8/libnpymath.a will be fat and ar(1) will not be able to operate on it INFO: ranlib:@ build/temp.macosx-10.14-x86_64-3.8/libnpymath.a INFO: building 'npyrandom' library INFO: compiling C sources INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8/numpy/random creating build/temp.macosx-10.14-x86_64-3.8/numpy/random/src creating build/temp.macosx-10.14-x86_64-3.8/numpy/random/src/distributions INFO: compile options: '-Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' INFO: clang: numpy/random/src/distributions/logfactorial.c INFO: clang: numpy/random/src/distributions/distributions.c INFO: clang: numpy/random/src/distributions/random_mvhg_count.c INFO: clang: numpy/random/src/distributions/random_hypergeometric.c INFO: clang: numpy/random/src/distributions/random_mvhg_marginals.c warningwarning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: : overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: ar: adding 5 object files to build/temp.macosx-10.14-x86_64-3.8/libnpyrandom.a warning: /Library/Developer/CommandLineTools/usr/bin/ranlib: archive library: build/temp.macosx-10.14-x86_64-3.8/libnpyrandom.a will be fat and ar(1) will not be able to operate on it INFO: ranlib:@ build/temp.macosx-10.14-x86_64-3.8/libnpyrandom.a running build_ext INFO: customize UnixCCompiler INFO: customize UnixCCompiler using new_build_ext INFO: CCompilerOpt.__init__[794] : hit the memory cache INFO: CCompilerOpt.generate_dispatch_header[2280] : generate CPU dispatch header: (build/src.macosx-10.14-x86_64-3.8/numpy/distutils/include/npy_cpu_dispatch_config.h) INFO: customize UnixCCompiler WARN: #### ['clang', '-Wno-unused-result', '-Wsign-compare', '-Wunreachable-code', '-fno-common', '-dynamic', '-DNDEBUG', '-g', '-fwrapv', '-O3', '-Wall', '-iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders', '-iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers', '-arch', 'arm64', '-arch', 'x86_64', '-Werror=implicit-function-declaration'] ####### INFO: customize UnixCCompiler using new_build_ext INFO: building 'numpy.core._multiarray_tests' extension INFO: compiling C sources INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/common INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/_multiarray_tests.c INFO: clang: numpy/core/src/common/mem_overlap.c INFO: clang: numpy/core/src/common/npy_argparse.c INFO: clang: numpy/core/src/common/npy_hashtable.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: warningoverriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] : overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang -bundle -undefined dynamic_lookup -arch arm64 -arch x86_64 -Wl,-headerpad,0x1000 build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/_multiarray_tests.o build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/common/mem_overlap.o build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_argparse.o build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_hashtable.o -Lbuild/temp.macosx-10.14-x86_64-3.8 -lnpymath -o build/lib.macosx-10.14-x86_64-3.8/numpy/core/_multiarray_tests.cpython-38-darwin.so INFO: building 'numpy.core._multiarray_umath' extension INFO: compiling C dispatch-able sources INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (ASIMD VSX2 SSE41 SSE2 NEON) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX512F SSE2 AVX2) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX512F VSX2 AVX512_SKX SSE41 SSE2 NEON AVX2) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX512F VSX2 NEON_VFPV4 (FMA3 AVX2)) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX512_SKX) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX512F AVX512_SKX (FMA3 AVX2)) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.h INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNO_ATLAS_INFO=3 -DHAVE_CBLAS -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse3 -I/System/Library/Frameworks/vecLib.framework/Headers' INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_add_LONGDOUBLE' [-Wunused-function] run_binary_simd_add_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_subtract_LONGDOUBLE' [-Wunused-function] run_binary_simd_subtract_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_multiply_LONGDOUBLE' [-Wunused-function] run_binary_simd_multiply_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_divide_LONGDOUBLE' [-Wunused-function] run_binary_simd_divide_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 5 warnings generated. numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_add_LONGDOUBLE' [-Wunused-function] run_binary_simd_add_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_subtract_LONGDOUBLE' [-Wunused-function] run_binary_simd_subtract_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_multiply_LONGDOUBLE' [-Wunused-function] run_binary_simd_multiply_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_divide_LONGDOUBLE' [-Wunused-function] run_binary_simd_divide_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ 4 warnings generated. INFO: compiling C sources INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/umath creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNO_ATLAS_INFO=3 -DHAVE_CBLAS -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse3 -I/System/Library/Frameworks/vecLib.framework/Headers' INFO: clang: numpy/core/src/multiarray/abstractdtypes.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/arraytypes.c INFO: clang: numpy/core/src/multiarray/array_assign_scalar.c INFO: clang: numpy/core/src/multiarray/buffer.c INFO: clang: numpy/core/src/multiarray/common.c INFO: clang: numpy/core/src/multiarray/datetime.c INFO: clang: numpy/core/src/multiarray/convert_datatype.c INFO: clang: numpy/core/src/multiarray/datetime_busdaycal.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. numpy/core/src/multiarray/convert_datatype.c:252:9: warning: comparison of nonnull parameter 'dtype' equal to a null pointer is 'false' on first encounter [-Wtautological-pointer-compare] if (dtype == NULL) { ^~~~~ ~~~~ build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/__multiarray_api.h:112:40: note: declared 'nonnull' here NPY_NO_EXPORT NPY_STEALS_REF_TO_ARG(2) NPY_GCC_NONNULL(2) PyObject * PyArray_CastToType \ ^ numpy/core/include/numpy/npy_common.h:81:43: note: expanded from macro 'NPY_GCC_NONNULL' #define NPY_GCC_NONNULL(n) __attribute__((nonnull(n))) ^ 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/alloc.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/common_dtype.c INFO: clang: numpy/core/src/multiarray/array_assign_array.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/descriptor.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 2 warnings generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/calculation.c INFO: clang: numpy/core/src/multiarray/arrayobject.c numpy/core/src/multiarray/convert_datatype.c:252:9: warning: comparison of nonnull parameter 'dtype' equal to a null pointer is 'false' on first encounter [-Wtautological-pointer-compare] if (dtype == NULL) { ^~~~~ ~~~~ build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/__multiarray_api.h:112:40: note: declared 'nonnull' here NPY_NO_EXPORT NPY_STEALS_REF_TO_ARG(2) NPY_GCC_NONNULL(2) PyObject * PyArray_CastToType \ ^ numpy/core/include/numpy/npy_common.h:81:43: note: expanded from macro 'NPY_GCC_NONNULL' #define NPY_GCC_NONNULL(n) __attribute__((nonnull(n))) ^ warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/convert.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/arrayfunction_override.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/conversion_utils.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/dtypemeta.c 1 warning generated. INFO: clang: numpy/core/src/multiarray/datetime_strings.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/compiled_base.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/einsum.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. numpy/core/src/multiarray/einsum.c.src:408:32: warning: unknown warning group '-Wmaybe-uninitialized', ignored [-Wunknown-warning-option] #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" ^ 1 warning generated. INFO: clang: numpy/core/src/multiarray/dragon4.c INFO: clang: numpy/core/src/multiarray/dlpack.c INFO: clang: numpy/core/src/multiarray/ctors.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 2 warnings generated. INFO: clang: numpy/core/src/multiarray/flagsobject.c numpy/core/src/multiarray/dragon4.c:3141:1: error: implicit declaration of function 'Dragon4_PrintFloat_Intel_extended128' is invalid in C99 [-Werror,-Wimplicit-function-declaration] make_dragon4_typefuncs(LongDouble, npy_longdouble, NPY_LONGDOUBLE_BINFMT_NAME) ^ numpy/core/src/multiarray/dragon4.c:3136:9: note: expanded from macro 'make_dragon4_typefuncs' make_dragon4_typefuncs_inner(Type, npy_type, format) ^ numpy/core/src/multiarray/dragon4.c:3068:9: note: expanded from macro 'make_dragon4_typefuncs_inner' if (Dragon4_PrintFloat_##format(scratch, val, opt) < 0) {\ ^ :115:1: note: expanded from here Dragon4_PrintFloat_Intel_extended128 ^ numpy/core/src/multiarray/dragon4.c:3141:1: note: did you mean 'Dragon4_PrintFloat_Intel_extended'? numpy/core/src/multiarray/dragon4.c:3136:9: note: expanded from macro 'make_dragon4_typefuncs' make_dragon4_typefuncs_inner(Type, npy_type, format) ^ numpy/core/src/multiarray/dragon4.c:3068:9: note: expanded from macro 'make_dragon4_typefuncs_inner' if (Dragon4_PrintFloat_##format(scratch, val, opt) < 0) {\ ^ :115:1: note: expanded from here Dragon4_PrintFloat_Intel_extended128 ^ numpy/core/src/multiarray/dragon4.c:2500:1: note: 'Dragon4_PrintFloat_Intel_extended' declared here Dragon4_PrintFloat_Intel_extended( ^ numpy/core/src/multiarray/dragon4.c:3141:1: error: implicit declaration of function 'Dragon4_PrintFloat_Intel_extended128' is invalid in C99 [-Werror,-Wimplicit-function-declaration] make_dragon4_typefuncs(LongDouble, npy_longdouble, NPY_LONGDOUBLE_BINFMT_NAME) ^ numpy/core/src/multiarray/dragon4.c:3136:9: note: expanded from macro 'make_dragon4_typefuncs' make_dragon4_typefuncs_inner(Type, npy_type, format) ^ numpy/core/src/multiarray/dragon4.c:3106:9: note: expanded from macro 'make_dragon4_typefuncs_inner' if (Dragon4_PrintFloat_##format(scratch, val, opt) < 0) {\ ^ :121:1: note: expanded from here Dragon4_PrintFloat_Intel_extended128 ^ 1 warning and 2 errors generated. INFO: clang: numpy/core/src/multiarray/item_selection.c numpy/core/src/multiarray/einsum.c.src:408:32: warning: unknown warning group '-Wmaybe-uninitialized', ignored [-Wunknown-warning-option] #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" ^ warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/datetime_busday.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/lowlevel_strided_loops.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/einsum_sumprod.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/getset.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/multiarraymodule.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/nditer_constr.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/hashdescr.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/refcount.c INFO: clang: numpy/core/src/multiarray/scalarapi.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/iterators.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/sequence.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/scalartypes.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/shape.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/nditer_pywrap.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/temp_elide.c INFO: clang: numpy/core/src/multiarray/legacy_dtype_implementation.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/typeinfo.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/vdot.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/usertypes.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/quicksort.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/number.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/timsort.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/nditer_templ.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/strfuncs.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/binsearch.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/experimental_public_dtype_api.c INFO: clang: numpy/core/src/umath/umathmodule.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/nditer_api.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/mergesort.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/umath/reduction.c INFO: clang: numpy/core/src/umath/legacy_array_method.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/umath/ufunc_object.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/scalarmath.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/array_coercion.c INFO: clang: numpy/core/src/umath/_scaled_float_dtype.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/common/npy_argparse.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/common/array_assign.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/array_method.c 1 warning generated. INFO: clang: numpy/core/src/common/npy_hashtable.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/common/mem_overlap.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/common/npy_longdouble.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/common/ucsnarrow.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_cpu_features.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. numpy/core/src/common/npy_cpu_features.c.src:125:1: warning: unused function 'npy__cpu_baseline_fid' [-Wunused-function] npy__cpu_baseline_fid(const char *feature) ^ numpy/core/src/common/npy_cpu_features.c.src:138:1: warning: unused function 'npy__cpu_dispatch_fid' [-Wunused-function] npy__cpu_dispatch_fid(const char *feature) ^ 3 warnings generated. INFO: clang: numpy/core/src/common/ufunc_override.c numpy/core/src/common/npy_cpu_features.c.src:125:1: warning: unused function 'npy__cpu_baseline_fid' [-Wunused-function] npy__cpu_baseline_fid(const char *feature) ^ numpy/core/src/common/npy_cpu_features.c.src:138:1: warning: unused function 'npy__cpu_dispatch_fid' [-Wunused-function] npy__cpu_dispatch_fid(const char *feature) ^ warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 2 warnings generated. INFO: clang: numpy/core/src/common/cblasfuncs.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/common/numpyos.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/extobj.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/common/python_xerbla.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/ufunc_type_resolution.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/override.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/heapsort.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/mapping.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/selection.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/methods.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/matmul.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/dispatching.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. Running from numpy source directory. Warning: attempted relative import with no known parent package /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown distribution option: 'define_macros' warnings.warn(msg) INFO: ########### EXT COMPILER OPTIMIZATION ########### INFO: Platform : Architecture: x64 Compiler : clang CPU baseline : Requested : 'min' Enabled : none Flags : none Extra checks: none CPU dispatch : Requested : 'max -xop -fma4' Enabled : none Generated : none INFO: CCompilerOpt.cache_flush[817] : write cache to path -> /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/build/temp.macosx-10.14-x86_64-3.8/ccompiler_opt_cache_ext.py INFO: ########### CLIB COMPILER OPTIMIZATION ########### INFO: Platform : Architecture: x64 Compiler : clang CPU baseline : Requested : 'min' Enabled : none Flags : none Extra checks: none CPU dispatch : Requested : 'max -xop -fma4' Enabled : none Generated : none INFO: CCompilerOpt.cache_flush[817] : write cache to path -> /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-fvcy72g3/numpy/build/temp.macosx-10.14-x86_64-3.8/ccompiler_opt_cache_clib.py error: Command "clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNO_ATLAS_INFO=3 -DHAVE_CBLAS -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c numpy/core/src/multiarray/dragon4.c -o build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/dragon4.o -MMD -MF build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/dragon4.o.d -msse3 -I/System/Library/Frameworks/vecLib.framework/Headers" failed with exit status 1 ````

mengchaoheng commented 2 years ago


ERROR: Failed building wheel for numpy
  Building wheel for pandas (PEP 517) ... /
done
  Created wheel for pandas: filename=pandas-1.4.1-cp38-cp38-macosx_10_14_x86_64.whl size=17108068 sha256=b89f5bd88dd027f0cca7cfd34cc3797bce8c9aeb477d91d77df44ca4404d9b75
  Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/9c/ff/1d/841b2f0737df7a2cb83d13200a407b107998a09ba64201bcbd
  Building wheel for pyyaml (PEP 517) ... done
  Created wheel for pyyaml: filename=PyYAML-6.0-cp38-cp38-macosx_10_14_x86_64.whl size=45317 sha256=9de76e0ef863dac4c81dc5d2a123fbb23e4553917ca80f39ef3bb1f4502fdf50
  Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/52/84/66/50912fd7bf1639a31758e40bd4312602e104a8eca1e0da9645
  Building wheel for future (setup.py) ... done
  Created wheel for future: filename=future-0.18.2-py3-none-any.whl size=491056 sha256=4e04c3be10fcd73a3312352b715648a43c1f4f5426c17a0cabdda249bb9e4275
  Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/8e/70/28/3d6ccd6e315f65f245da085482a2e1c7d14b90b30f239e2cf4
  Building wheel for MarkupSafe (setup.py) ... done
  Created wheel for MarkupSafe: filename=MarkupSafe-2.1.0-cp38-cp38-macosx_10_14_x86_64.whl size=17687 sha256=4964bf3e2e3365330b31b2e15136f48e13893e8c2ba8bc96058ad1bf4e539db6
  Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/3c/db/10/7a50ee1e5c7555d6633e660b63ad8ab97a7bc291c74a4b2d59
  Building wheel for pyrsistent (PEP 517) ... done
  Created wheel for pyrsistent: filename=pyrsistent-0.18.1-cp38-cp38-macosx_10_14_x86_64.whl size=81429 sha256=22573b103b3576a095280885aec9c36fac2cbee4255d5d0ff45230895b1d6b9f
  Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/30/87/4f/6ac908945dc671cfe494bbb1b0374a5f81238e2d67936a397b
Successfully built empy pandas pyyaml future MarkupSafe pyrsistent
Failed to build numpy
ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly
WARNING: You are using pip version 20.2.3; however, version 22.0.3 is available.
You should consider upgrading via the '/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip' command.

try again:

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro Downloads % python3 -m pip install --user pyserial empy toml numpy pandas jinja2 pyyaml pyros-genmsg packaging kconfiglib future jsonschema Collecting pyserial Using cached pyserial-3.5-py2.py3-none-any.whl (90 kB) Processing /Users/mengchaoheng/Library/Caches/pip/wheels/b0/d7/80/0e8ad4f073e05b2435c3b4c12c230cb219135bae4f59978612/empy-3.3.4-py3-none-any.whl Collecting toml Using cached toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting numpy Using cached numpy-1.22.2.zip (11.4 MB) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Collecting pandas Using cached pandas-1.4.1.tar.gz (4.9 MB) Installing build dependencies ... \^[^done Getting requirements to build wheel ... done Preparing wheel metadata ... done Collecting jinja2 Using cached Jinja2-3.0.3-py3-none-any.whl (133 kB) Collecting pyyaml Using cached PyYAML-6.0.tar.gz (124 kB) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Collecting pyros-genmsg Using cached pyros_genmsg-0.5.8-py2.py3-none-any.whl (25 kB) Collecting packaging Using cached packaging-21.3-py3-none-any.whl (40 kB) Collecting kconfiglib Using cached kconfiglib-14.1.0-py2.py3-none-any.whl (145 kB) Processing /Users/mengchaoheng/Library/Caches/pip/wheels/8e/70/28/3d6ccd6e315f65f245da085482a2e1c7d14b90b30f239e2cf4/future-0.18.2-py3-none-any.whl Collecting jsonschema Using cached jsonschema-4.4.0-py3-none-any.whl (72 kB) Collecting python-dateutil>=2.8.1 Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) Collecting pytz>=2020.1 Using cached pytz-2021.3-py2.py3-none-any.whl (503 kB) Collecting MarkupSafe>=2.0 Using cached MarkupSafe-2.1.0.tar.gz (18 kB) Collecting pyparsing!=3.0.5,>=2.0.2 Using cached pyparsing-3.0.7-py3-none-any.whl (98 kB) Collecting importlib-resources>=1.4.0; python_version < "3.9" Using cached importlib_resources-5.4.0-py3-none-any.whl (28 kB) Collecting attrs>=17.4.0 Using cached attrs-21.4.0-py2.py3-none-any.whl (60 kB) Collecting pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 Using cached pyrsistent-0.18.1.tar.gz (100 kB) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Requirement already satisfied: six>=1.5 in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages (from python-dateutil>=2.8.1->pandas) (1.15.0) Collecting zipp>=3.1.0; python_version < "3.10" Using cached zipp-3.7.0-py3-none-any.whl (5.3 kB) Building wheels for collected packages: numpy, pandas, pyyaml, MarkupSafe, pyrsistent Building wheel for numpy (PEP 517) ... error ERROR: Command errored out with exit status 1: command: /Library/Developer/CommandLineTools/usr/bin/python3 /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py build_wheel /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmplubk49rf cwd: /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy Complete output (1827 lines): Processing numpy/random/_bounded_integers.pxd.in Processing numpy/random/_philox.pyx Processing numpy/random/_bounded_integers.pyx.in Processing numpy/random/_sfc64.pyx Processing numpy/random/_mt19937.pyx Processing numpy/random/bit_generator.pyx Processing numpy/random/mtrand.pyx Processing numpy/random/_generator.pyx Processing numpy/random/_pcg64.pyx Processing numpy/random/_common.pyx Cythonizing sources INFO: blas_opt_info: INFO: blas_armpl_info: INFO: customize UnixCCompiler INFO: libraries armpl_lp64_mp not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: blas_mkl_info: INFO: libraries mkl_rt not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: blis_info: INFO: libraries blis not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: openblas_info: INFO: libraries openblas not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: accelerate_info: INFO: libraries accelerate not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: Library accelerate was not found. Ignoring INFO: libraries veclib not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: Library veclib was not found. Ignoring INFO: FOUND: INFO: extra_compile_args = ['-msse3', '-I/System/Library/Frameworks/vecLib.framework/Headers'] INFO: extra_link_args = ['-Wl,-framework', '-Wl,Accelerate'] INFO: define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)] INFO: INFO: FOUND: INFO: extra_compile_args = ['-msse3', '-I/System/Library/Frameworks/vecLib.framework/Headers'] INFO: extra_link_args = ['-Wl,-framework', '-Wl,Accelerate'] INFO: define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)] INFO: non-existing path in 'numpy/distutils': 'site.cfg' INFO: lapack_opt_info: INFO: lapack_armpl_info: INFO: libraries armpl_lp64_mp not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: lapack_mkl_info: INFO: libraries mkl_rt not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: openblas_lapack_info: INFO: libraries openblas not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: openblas_clapack_info: INFO: libraries openblas,lapack not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: flame_info: INFO: libraries flame not found in ['/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib', '/usr/local/lib', '/usr/lib'] INFO: NOT AVAILABLE INFO: INFO: FOUND: INFO: extra_compile_args = ['-msse3', '-I/System/Library/Frameworks/vecLib.framework/Headers'] INFO: extra_link_args = ['-Wl,-framework', '-Wl,Accelerate'] INFO: define_macros = [('NO_ATLAS_INFO', 3), ('HAVE_CBLAS', None)] INFO: running bdist_wheel running build running config_cc INFO: unifing config_cc, config, build_clib, build_ext, build commands --compiler options running config_fc INFO: unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options running build_src INFO: build_src INFO: building py_modules sources creating build creating build/src.macosx-10.14-x86_64-3.8 creating build/src.macosx-10.14-x86_64-3.8/numpy creating build/src.macosx-10.14-x86_64-3.8/numpy/distutils INFO: building library "npymath" sources WARN: Could not locate executable gfortran WARN: Could not locate executable f95 WARN: Could not locate executable nagfor WARN: Could not locate executable f90 WARN: Could not locate executable f77 WARN: Could not locate executable xlf90 WARN: Could not locate executable xlf WARN: Could not locate executable ifort WARN: Could not locate executable ifc WARN: Could not locate executable g77 WARN: Could not locate executable g95 WARN: Could not locate executable pgfortran WARN: don't know how to compile Fortran code on platform 'posix' creating build/src.macosx-10.14-x86_64-3.8/numpy/core creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/npy_math_internal.h INFO: adding 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath' to include_dirs. INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/ieee754.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/npy_math_complex.c INFO: None - nothing done with h_files = ['build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/npy_math_internal.h'] INFO: building library "npyrandom" sources INFO: building extension "numpy.core._multiarray_tests" sources creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/_multiarray_tests.c INFO: building extension "numpy.core._multiarray_umath" sources non-existing path in 'numpy/core': 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common' INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/arraytypes.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/einsum.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/einsum_sumprod.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/lowlevel_strided_loops.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/nditer_templ.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/scalartypes.c creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_sort.h INFO: adding 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common' to include_dirs. creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/quicksort.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/mergesort.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/timsort.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/heapsort.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_partition.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/selection.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_binsearch.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/binsearch.c creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/funcs.inc INFO: adding 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath' to include_dirs. INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/simd.inc INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_utils.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/matmul.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/matmul.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/scalarmath.c INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/templ_common.h INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_cpu_features.c INFO: numpy.core - nothing done with h_files = ['build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_sort.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_partition.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_binsearch.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/funcs.inc', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/simd.inc', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_utils.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/matmul.h', 'numpy/core/src/umath/clip.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/templ_common.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/config.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/_numpyconfig.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/__multiarray_api.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/__ufunc_api.h'] INFO: building extension "numpy.core._umath_tests" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/_umath_tests.c INFO: building extension "numpy.core._rational_tests" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/_rational_tests.c INFO: building extension "numpy.core._struct_ufunc_tests" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/_struct_ufunc_tests.c INFO: building extension "numpy.core._operand_flag_tests" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/_operand_flag_tests.c INFO: building extension "numpy.core._simd" sources creating build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd_inc.h INFO: adding 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd' to include_dirs. INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd_data.inc INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd.dispatch.c INFO: numpy.core - nothing done with h_files = ['build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd_inc.h', 'build/src.macosx-10.14-x86_64-3.8/numpy/core/src/_simd/_simd_data.inc'] INFO: building extension "numpy.fft._pocketfft_internal" sources INFO: building extension "numpy.linalg.lapack_lite" sources creating build/src.macosx-10.14-x86_64-3.8/numpy/linalg INFO: building extension "numpy.linalg._umath_linalg" sources INFO: conv_template:> build/src.macosx-10.14-x86_64-3.8/numpy/linalg/umath_linalg.c INFO: building extension "numpy.random._mt19937" sources INFO: building extension "numpy.random._philox" sources INFO: building extension "numpy.random._pcg64" sources INFO: building extension "numpy.random._sfc64" sources INFO: building extension "numpy.random._common" sources INFO: building extension "numpy.random.bit_generator" sources INFO: building extension "numpy.random._generator" sources INFO: building extension "numpy.random._bounded_integers" sources INFO: building extension "numpy.random.mtrand" sources INFO: building data_files sources INFO: build_src: building npy-pkg config files running build_py creating build/lib.macosx-10.14-x86_64-3.8 creating build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/conftest.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/_version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/_globals.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/dual.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/_distributor_init.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/ctypeslib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/matlib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying numpy/_pytesttester.py -> build/lib.macosx-10.14-x86_64-3.8/numpy copying build/src.macosx-10.14-x86_64-3.8/numpy/__config__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy creating build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_constants.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_elementwise_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_sorting_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_manipulation_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_searching_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_typing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_utility_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_array_object.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_data_type_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_dtypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/linalg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_statistical_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_set_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api copying numpy/array_api/_creation_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api creating build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_set_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_array_object.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_elementwise_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_sorting_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests copying numpy/array_api/tests/test_creation_functions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/array_api/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/compat copying numpy/compat/py3k.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat copying numpy/compat/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat copying numpy/compat/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat copying numpy/compat/_inspect.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat creating build/lib.macosx-10.14-x86_64-3.8/numpy/compat/tests copying numpy/compat/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat/tests copying numpy/compat/tests/test_compat.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/compat/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/umath.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/fromnumeric.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_dtype.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_add_newdocs.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_methods.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_internal.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_string_helpers.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/multiarray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_asarray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/records.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_add_newdocs_scalars.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_machar.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/setup_common.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/memmap.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/overrides.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/getlimits.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_dtype_ctypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/defchararray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/shape_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/numeric.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/function_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/einsumfunc.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/umath_tests.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_ufunc_config.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_exceptions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/numerictypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/_type_aliases.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/cversions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/arrayprint.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core copying numpy/core/code_generators/generate_numpy_api.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core creating build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_numerictypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalar_methods.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalarmath.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_item_selection.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_array_coercion.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_limited_api.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_machar.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_unicode.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_cpu_dispatcher.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_arrayprint.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalarbuffer.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_indexerrors.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_print.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_half.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_arraymethod.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_mem_overlap.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_shape_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_hashtable.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_deprecations.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_errstate.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_records.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_mem_policy.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_simd.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalarinherit.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_indexing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_umath.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_numeric.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_function_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_datetime.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test__exceptions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_extint128.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_cython.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_umath_complex.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/_locales.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_custom_dtypes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_defchararray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_conversion_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalarprint.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_casting_unittests.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_abc.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_ufunc.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_dtype.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_umath_accuracy.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_simd_module.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_getlimits.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_dlpack.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_einsum.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_api.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_longdouble.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_overrides.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_scalar_ctors.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_multiarray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_memmap.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_nditer.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_cpu_features.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_protocols.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_argparse.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests copying numpy/core/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/core/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/unixccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/numpy_distribution.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/conv_template.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/cpuinfo.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/ccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/msvc9compiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/npy_pkg_config.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/misc_util.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/log.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/line_endings.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/lib2def.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/pathccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/system_info.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/core.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/exec_command.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/from_template.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/mingw32ccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/extension.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/msvccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/armccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/intelccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/_shell_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying numpy/distutils/ccompiler_opt.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils copying build/src.macosx-10.14-x86_64-3.8/numpy/distutils/__config__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils creating build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/config_compiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_ext.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/config.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/install_headers.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_py.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_src.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/sdist.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_scripts.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/bdist_rpm.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/install_clib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/build_clib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/autodist.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/egg_info.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/install.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/develop.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command copying numpy/distutils/command/install_data.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/command creating build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/gnu.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/compaq.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/intel.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/none.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/nag.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/pg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/ibm.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/sun.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/nv.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/lahey.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/g95.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/arm.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/mips.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/hpux.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/environment.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/pathf95.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/fujitsu.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/absoft.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler copying numpy/distutils/fcompiler/vast.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/fcompiler creating build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_system_info.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_ccompiler_opt_conf.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_mingw32ccompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_from_template.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_log.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_fcompiler_intel.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_misc_util.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_fcompiler.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_build_ext.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_shell_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_exec_command.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_npy_pkg_config.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_fcompiler_nagfor.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_ccompiler_opt.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests copying numpy/distutils/tests/test_fcompiler_gnu.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/distutils/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/doc copying numpy/doc/constants.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/doc copying numpy/doc/ufuncs.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/doc copying numpy/doc/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/doc creating build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/cfuncs.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/common_rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/crackfortran.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/cb_rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/f2py2e.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/func2subr.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/__version__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/symbolic.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/diagnose.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/capi_maps.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/f90mod_rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/f2py_testing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/use_rules.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/auxfuncs.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py copying numpy/f2py/__main__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py creating build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_mixed.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_logical.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_assumed_shape.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_common.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_kind.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_array_from_pyobj.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_real.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_symbolic.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/util.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_size.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_callback.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_string.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_module_doc.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_quoted_character.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_parameter.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_abstract_interface.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_semicolon_split.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_compile_function.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_block_docstring.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_integer.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_character.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_return_complex.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_crackfortran.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests copying numpy/f2py/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/f2py/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/fft copying numpy/fft/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft copying numpy/fft/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft copying numpy/fft/helper.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft copying numpy/fft/_pocketfft.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft creating build/lib.macosx-10.14-x86_64-3.8/numpy/fft/tests copying numpy/fft/tests/test_pocketfft.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft/tests copying numpy/fft/tests/test_helper.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft/tests copying numpy/fft/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/fft/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/_iotools.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/mixins.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/nanfunctions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/recfunctions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/histograms.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/scimath.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/_version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/user_array.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/format.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/twodim_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/index_tricks.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/npyio.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/shape_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/stride_tricks.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/arrayterator.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/function_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/arraysetops.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/arraypad.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/type_check.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/polynomial.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/_datasource.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib copying numpy/lib/ufunclike.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib creating build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_type_check.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_financial_expired.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_twodim_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_polynomial.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test__iotools.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_shape_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_ufunclike.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_index_tricks.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_arrayterator.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test__version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_io.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_arraysetops.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_function_base.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_arraypad.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_mixins.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_packbits.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test__datasource.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_stride_tricks.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_recfunctions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_nanfunctions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_format.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_histograms.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests copying numpy/lib/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/lib/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/linalg copying numpy/linalg/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg copying numpy/linalg/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg copying numpy/linalg/linalg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg creating build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests copying numpy/linalg/tests/test_linalg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests copying numpy/linalg/tests/test_deprecations.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests copying numpy/linalg/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests copying numpy/linalg/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/linalg/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/extras.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/testutils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/core.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/bench.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/timer_comparison.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma copying numpy/ma/mrecords.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma creating build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_old_ma.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_core.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_deprecations.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_subclassing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_extras.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_mrecords.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests copying numpy/ma/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/ma/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib copying numpy/matrixlib/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib copying numpy/matrixlib/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib copying numpy/matrixlib/defmatrix.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib creating build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_matrix_linalg.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_defmatrix.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_interaction.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_numeric.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_masked_matrix.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_multiarray.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests copying numpy/matrixlib/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/matrixlib/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/laguerre.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/_polybase.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/polyutils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/hermite_e.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/chebyshev.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/polynomial.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/legendre.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial copying numpy/polynomial/hermite.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial creating build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_chebyshev.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_hermite_e.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_polynomial.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_laguerre.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_legendre.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_printing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_hermite.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_classes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests copying numpy/polynomial/tests/test_polyutils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/polynomial/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/random copying numpy/random/_pickle.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random copying numpy/random/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random copying numpy/random/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random creating build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_generator_mt19937.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_randomstate.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_direct.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_extending.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_smoke.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_randomstate_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_seed_sequence.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_generator_mt19937_regressions.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_random.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests copying numpy/random/tests/test_regression.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/random/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/testing copying numpy/testing/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing copying numpy/testing/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing copying numpy/testing/utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing copying numpy/testing/print_coercion_tables.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing creating build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/nosetester.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/extbuild.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/noseclasses.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/parameterized.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private copying numpy/testing/_private/decorators.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/_private creating build/lib.macosx-10.14-x86_64-3.8/numpy/testing/tests copying numpy/testing/tests/test_utils.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/tests copying numpy/testing/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/tests copying numpy/testing/tests/test_doctesting.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/testing/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_char_codes.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_extended_precision.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_generic_alias.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_nbit.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_dtype_like.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/mypy_plugin.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/setup.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_array_like.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_scalars.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_shape.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_add_docstring.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing copying numpy/typing/_nested_sequence.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing creating build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/test_isfile.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/test_typing.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/test_runtime.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests copying numpy/typing/tests/test_generic_alias.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/typing/tests creating build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_warnings.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_matlib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_ctypeslib.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test__all__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_numpy_version.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/__init__.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_reloading.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_public_api.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests copying numpy/tests/test_scripts.py -> build/lib.macosx-10.14-x86_64-3.8/numpy/tests UPDATING build/lib.macosx-10.14-x86_64-3.8/numpy/_version.py set build/lib.macosx-10.14-x86_64-3.8/numpy/_version.py to '1.22.2' running build_clib INFO: customize UnixCCompiler INFO: customize UnixCCompiler using new_build_clib INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-march=native) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1 creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils creating /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-march=native' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/test_flags.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/test_flags.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/test_flags.o.d -march=native) failed with exit status 1 output -> clang: error: the clang compiler does not support '-march=native' WARN: CCompilerOpt.cc_test_flags[1025] : testing failed INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-O3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-O3' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-Werror=switch) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-Werror=switch' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-Werror) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-Werror' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/test_flags.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/test_flags.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/test_flags.o.d -Werror) failed with exit status 1 output -> error: overriding currently unsupported use of floating point exceptions on this target [-Werror,-Wunsupported-floating-point-opt] 1 error generated. WARN: CCompilerOpt.cc_test_flags[1025] : testing failed INFO: CCompilerOpt.__init__[1709] : check requested baseline INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse2' INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE2' with flags (-msse -msse2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse2.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse2.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse2.o.d -msse -msse2 -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse2.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/emmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/xmmintrin.h:13: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:525:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE' with flags (-msse -msse2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse.o.d -msse -msse2 -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/xmmintrin.h:13: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:525:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.__init__[1718] : check requested dispatch-able features INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse3' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mssse3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mssse3' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse4.1) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse4.1' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mpopcnt) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mpopcnt' INFO: CCompilerOpt.feature_test[1474] : testing feature 'POPCNT' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_popcnt.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_popcnt.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_popcnt.o.d -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_popcnt.c:30:9: error: always_inline function '_mm_popcnt_u32' requires target feature 'popcnt', but would be inlined into function 'main' that is compiled without support for 'popcnt' b = _mm_popcnt_u32(b); ^ 1 warning and 1 error generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-msse4.2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse4.2' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mavx' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mf16c) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mf16c' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mfma) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mfma' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx2) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mavx2' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512f) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mavx512f' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512cd) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mavx512cd' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512er -mavx512pf) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mavx512er -mavx512pf' INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_KNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_knl.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_knl.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_knl.o.d -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_knl.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/immintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/x86gprintrin.h:15: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/hresetintrin.h:42:27: error: invalid input constraint 'a' in asm __asm__ ("hreset $0" :: "a"(__eax)); ^ In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_knl.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/immintrin.h:17: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512vl -mavx512bw -mavx512dq) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mavx512vl -mavx512bw -mavx512dq' INFO: CCompilerOpt.cc_test_flags[1021] : testing flags (-mavx512ifma -mavx512vbmi) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-mavx512ifma -mavx512vbmi' INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX512_CNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_cnl.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_cnl.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_cnl.o.d -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_cnl.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/immintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/x86gprintrin.h:15: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/hresetintrin.h:42:27: error: invalid input constraint 'a' in asm __asm__ ("hreset $0" :: "a"(__eax)); ^ In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx512_cnl.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/immintrin.h:17: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.feature_test[1474] : testing feature 'AVX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx.o.d -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/immintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/x86gprintrin.h:15: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/hresetintrin.h:42:27: error: invalid input constraint 'a' in asm __asm__ ("hreset $0" :: "a"(__eax)); ^ In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_avx.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/immintrin.h:17: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSE3' with flags (-msse -msse2 -msse3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -msse3 -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse3.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse3.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse3.o.d -msse -msse2 -msse3 -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_sse3.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/pmmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/emmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/xmmintrin.h:13: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:525:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.feature_test[1474] : testing feature 'SSSE3' with flags (-msse -msse2 -msse3 -mssse3) INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math INFO: compile options: '-Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse -msse2 -msse3 -mssse3 -Werror=switch' WARN: CCompilerOpt.dist_test[590] : CCompilerOpt._dist_test_spawn[724] : Command (clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_ssse3.c -o /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_ssse3.o -MMD -MF /var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/tmpi_si80s7/private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_ssse3.o.d -msse -msse2 -msse3 -mssse3 -Werror=switch) failed with exit status 1 output -> warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] In file included from /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/numpy/distutils/checks/cpu_ssse3.c:14: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/tmmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/pmmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/emmintrin.h:13: In file included from /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/xmmintrin.h:13: /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:50:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_vec_init_v2si(__i, 0); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:129:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:159:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:189:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:216:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:239:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:260:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckhdq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:287:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklbw((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:310:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpcklwd((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:331:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_punpckldq((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:352:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:373:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:394:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddd((__v2si)__m1, (__v2si)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:416:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:439:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddsw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:461:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:483:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_paddusw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:504:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubb((__v8qi)__m1, (__v8qi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Library/Developer/CommandLineTools/usr/lib/clang/13.0.0/include/mmintrin.h:525:12: error: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size return (__m64)__builtin_ia32_psubw((__v4hi)__m1, (__v4hi)__m2); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fatal error: too many errors emitted, stopping now [-ferror-limit=] 1 warning and 20 errors generated. WARN: CCompilerOpt.feature_test[1490] : testing failed INFO: CCompilerOpt.__init__[1734] : initialize targets groups INFO: CCompilerOpt.__init__[1736] : parse target group simd_test INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (ASIMD XOP VSX2 SSE2 NEON VSX3 VSX SSE42 AVX512_SKX (FMA3 AVX2) AVX512F FMA4) not part of baseline or dispatch-able features INFO: CCompilerOpt.generate_dispatch_header[2280] : generate CPU dispatch header: (build/src.macosx-10.14-x86_64-3.8/numpy/distutils/include/npy_cpu_dispatch_config.h) WARN: CCompilerOpt.generate_dispatch_header[2289] : dispatch header dir build/src.macosx-10.14-x86_64-3.8/numpy/distutils/include does not exist, creating it INFO: building 'npymath' library INFO: compiling C sources INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8 creating build/temp.macosx-10.14-x86_64-3.8/numpy creating build/temp.macosx-10.14-x86_64-3.8/numpy/core creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/npymath creating build/temp.macosx-10.14-x86_64-3.8/build creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8 creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath INFO: compile options: '-Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' INFO: clang: numpy/core/src/npymath/npy_math.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/ieee754.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath/npy_math_complex.c INFO: clang: numpy/core/src/npymath/halffloat.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: ar: adding 4 object files to build/temp.macosx-10.14-x86_64-3.8/libnpymath.a warning: /Library/Developer/CommandLineTools/usr/bin/ranlib: archive library: build/temp.macosx-10.14-x86_64-3.8/libnpymath.a will be fat and ar(1) will not be able to operate on it INFO: ranlib:@ build/temp.macosx-10.14-x86_64-3.8/libnpymath.a INFO: building 'npyrandom' library INFO: compiling C sources INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8/numpy/random creating build/temp.macosx-10.14-x86_64-3.8/numpy/random/src creating build/temp.macosx-10.14-x86_64-3.8/numpy/random/src/distributions INFO: compile options: '-Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' INFO: clang: numpy/random/src/distributions/logfactorial.c INFO: clang: numpy/random/src/distributions/distributions.c INFO: clang: numpy/random/src/distributions/random_mvhg_marginals.c INFO: clang: numpy/random/src/distributions/random_mvhg_count.c INFO: clang: numpy/random/src/distributions/random_hypergeometric.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warningwarning: : overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: ar: adding 5 object files to build/temp.macosx-10.14-x86_64-3.8/libnpyrandom.a warning: /Library/Developer/CommandLineTools/usr/bin/ranlib: archive library: build/temp.macosx-10.14-x86_64-3.8/libnpyrandom.a will be fat and ar(1) will not be able to operate on it INFO: ranlib:@ build/temp.macosx-10.14-x86_64-3.8/libnpyrandom.a running build_ext INFO: customize UnixCCompiler INFO: customize UnixCCompiler using new_build_ext INFO: CCompilerOpt.__init__[794] : hit the memory cache INFO: CCompilerOpt.generate_dispatch_header[2280] : generate CPU dispatch header: (build/src.macosx-10.14-x86_64-3.8/numpy/distutils/include/npy_cpu_dispatch_config.h) INFO: customize UnixCCompiler WARN: #### ['clang', '-Wno-unused-result', '-Wsign-compare', '-Wunreachable-code', '-fno-common', '-dynamic', '-DNDEBUG', '-g', '-fwrapv', '-O3', '-Wall', '-iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders', '-iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers', '-arch', 'arm64', '-arch', 'x86_64', '-Werror=implicit-function-declaration'] ####### INFO: customize UnixCCompiler using new_build_ext INFO: building 'numpy.core._multiarray_tests' extension INFO: compiling C sources INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/common INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/_multiarray_tests.c INFO: clang: numpy/core/src/common/mem_overlap.c INFO: clang: numpy/core/src/common/npy_argparse.c INFO: clang: numpy/core/src/common/npy_hashtable.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang -bundle -undefined dynamic_lookup -arch arm64 -arch x86_64 -Wl,-headerpad,0x1000 build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/_multiarray_tests.o build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/common/mem_overlap.o build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_argparse.o build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_hashtable.o -Lbuild/temp.macosx-10.14-x86_64-3.8 -lnpymath -o build/lib.macosx-10.14-x86_64-3.8/numpy/core/_multiarray_tests.cpython-38-darwin.so INFO: building 'numpy.core._multiarray_umath' extension INFO: compiling C dispatch-able sources INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (ASIMD VSX2 SSE2 NEON SSE41) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX2 AVX512F SSE2) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (VSX2 SSE2 NEON AVX2 SSE41 AVX512_SKX AVX512F) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX512F NEON_VFPV4 (AVX2 FMA3) VSX2) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX512_SKX) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.h INFO: CCompilerOpt.parse_targets[1776] : looking for '@targets' inside -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.c INFO: CCompilerOpt._parse_target_tokens[1947] : skip targets (AVX512F (AVX2 FMA3) AVX512_SKX) not part of baseline or dispatch-able features INFO: CCompilerOpt._parse_target_tokens[1971] : policy 'MAXOPT' is ON INFO: CCompilerOpt._parse_policy_maxopt[2080] : debug mode is detected, policy 'maxopt' is skipped. INFO: CCompilerOpt._generate_config[2514] : generate dispatched config -> build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.h INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNO_ATLAS_INFO=3 -DHAVE_CBLAS -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse3 -I/System/Library/Frameworks/vecLib.framework/Headers' INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_add_LONGDOUBLE' [-Wunused-function] run_binary_simd_add_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_subtract_LONGDOUBLE' [-Wunused-function] run_binary_simd_subtract_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_multiply_LONGDOUBLE' [-Wunused-function] run_binary_simd_multiply_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_divide_LONGDOUBLE' [-Wunused-function] run_binary_simd_divide_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 5 warnings generated. numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_add_LONGDOUBLE' [-Wunused-function] run_binary_simd_add_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_subtract_LONGDOUBLE' [-Wunused-function] run_binary_simd_subtract_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_multiply_LONGDOUBLE' [-Wunused-function] run_binary_simd_multiply_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ numpy/core/src/umath/loops_arithm_fp.dispatch.c.src:454:1: warning: unused function 'run_binary_simd_divide_LONGDOUBLE' [-Wunused-function] run_binary_simd_divide_LONGDOUBLE(char **args, npy_intp const *dimensions, npy_intp const *steps) ^ 4 warnings generated. INFO: compiling C sources INFO: C compiler: clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort creating build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/umath creating build/temp.macosx-10.14-x86_64-3.8/build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNO_ATLAS_INFO=3 -DHAVE_CBLAS -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c' extra options: '-msse3 -I/System/Library/Frameworks/vecLib.framework/Headers' INFO: clang: numpy/core/src/multiarray/abstractdtypes.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/arraytypes.c INFO: clang: numpy/core/src/multiarray/array_assign_scalar.c INFO: clang: numpy/core/src/multiarray/common.c INFO: clang: numpy/core/src/multiarray/datetime.c INFO: clang: numpy/core/src/multiarray/convert_datatype.c INFO: clang: numpy/core/src/multiarray/datetime_busdaycal.c INFO: clang: numpy/core/src/multiarray/buffer.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] numpy/core/src/multiarray/convert_datatype.c:252:9: warning: comparison of nonnull parameter 'dtype' equal to a null pointer is 'false' on first encounter [-Wtautological-pointer-compare] if (dtype == NULL) { ^~~~~ ~~~~ build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/__multiarray_api.h:112:40: note: declared 'nonnull' here NPY_NO_EXPORT NPY_STEALS_REF_TO_ARG(2) NPY_GCC_NONNULL(2) PyObject * PyArray_CastToType \ ^ numpy/core/include/numpy/npy_common.h:81:43: note: expanded from macro 'NPY_GCC_NONNULL' #define NPY_GCC_NONNULL(n) __attribute__((nonnull(n))) ^ 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/alloc.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/common_dtype.c INFO: clang: numpy/core/src/multiarray/array_assign_array.c INFO: clang: numpy/core/src/multiarray/descriptor.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 2 warnings generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/calculation.c numpy/core/src/multiarray/convert_datatype.c:252:9: warning: comparison of nonnull parameter 'dtype' equal to a null pointer is 'false' on first encounter [-Wtautological-pointer-compare] if (dtype == NULL) { ^~~~~ ~~~~ build/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy/__multiarray_api.h:112:40: note: declared 'nonnull' here NPY_NO_EXPORT NPY_STEALS_REF_TO_ARG(2) NPY_GCC_NONNULL(2) PyObject * PyArray_CastToType \ ^ numpy/core/include/numpy/npy_common.h:81:43: note: expanded from macro 'NPY_GCC_NONNULL' #define NPY_GCC_NONNULL(n) __attribute__((nonnull(n))) ^ INFO: clang: numpy/core/src/multiarray/arrayobject.c INFO: clang: numpy/core/src/multiarray/convert.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/arrayfunction_override.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/conversion_utils.c INFO: clang: numpy/core/src/multiarray/dtypemeta.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/einsum.c INFO: clang: numpy/core/src/multiarray/compiled_base.c INFO: clang: numpy/core/src/multiarray/datetime_strings.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. numpy/core/src/multiarray/einsum.c.src:408:32: warning: unknown warning group '-Wmaybe-uninitialized', ignored [-Wunknown-warning-option] #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" ^ 1 warning generated. INFO: clang: numpy/core/src/multiarray/dragon4.c 2 warnings generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/dlpack.c INFO: clang: numpy/core/src/multiarray/ctors.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] numpy/core/src/multiarray/einsum.c.src:408:32: warning: unknown warning group '-Wmaybe-uninitialized', ignored [-Wunknown-warning-option] #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" ^ warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] numpy/core/src/multiarray/dragon4.c:3141:1: error: implicit declaration of function 'Dragon4_PrintFloat_Intel_extended128' is invalid in C99 [-Werror,-Wimplicit-function-declaration] make_dragon4_typefuncs(LongDouble, npy_longdouble, NPY_LONGDOUBLE_BINFMT_NAME) ^ numpy/core/src/multiarray/dragon4.c:3136:9: note: expanded from macro 'make_dragon4_typefuncs' make_dragon4_typefuncs_inner(Type, npy_type, format) ^ numpy/core/src/multiarray/dragon4.c:3068:9: note: expanded from macro 'make_dragon4_typefuncs_inner' if (Dragon4_PrintFloat_##format(scratch, val, opt) < 0) {\ ^ :115:1: note: expanded from here INFO: clang: numpy/core/src/multiarray/flagsobject.c Dragon4_PrintFloat_Intel_extended128 ^ numpy/core/src/multiarray/dragon4.c:3141:1: note: did you mean 'Dragon4_PrintFloat_Intel_extended'? numpy/core/src/multiarray/dragon4.c:3136:9: note: expanded from macro 'make_dragon4_typefuncs' make_dragon4_typefuncs_inner(Type, npy_type, format) ^ numpy/core/src/multiarray/dragon4.c:3068:9: note: expanded from macro 'make_dragon4_typefuncs_inner' if (Dragon4_PrintFloat_##format(scratch, val, opt) < 0) {\ ^ :115:1: note: expanded from here Dragon4_PrintFloat_Intel_extended128 ^ numpy/core/src/multiarray/dragon4.c:2500:1: note: 'Dragon4_PrintFloat_Intel_extended' declared here Dragon4_PrintFloat_Intel_extended( ^ numpy/core/src/multiarray/dragon4.c:3141:1: error: implicit declaration of function 'Dragon4_PrintFloat_Intel_extended128' is invalid in C99 [-Werror,-Wimplicit-function-declaration] make_dragon4_typefuncs(LongDouble, npy_longdouble, NPY_LONGDOUBLE_BINFMT_NAME) ^ numpy/core/src/multiarray/dragon4.c:3136:9: note: expanded from macro 'make_dragon4_typefuncs' make_dragon4_typefuncs_inner(Type, npy_type, format) ^ numpy/core/src/multiarray/dragon4.c:3106:9: note: expanded from macro 'make_dragon4_typefuncs_inner' if (Dragon4_PrintFloat_##format(scratch, val, opt) < 0) {\ ^ :121:1: note: expanded from here Dragon4_PrintFloat_Intel_extended128 ^ 1 warning and 2 errors generated. INFO: clang: numpy/core/src/multiarray/item_selection.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/datetime_busday.c 1 warning generated. 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/einsum_sumprod.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/lowlevel_strided_loops.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/getset.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/multiarraymodule.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/nditer_constr.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/hashdescr.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/refcount.c INFO: clang: numpy/core/src/multiarray/scalarapi.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/iterators.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/sequence.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/scalartypes.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/shape.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/nditer_pywrap.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/temp_elide.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/legacy_dtype_implementation.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/typeinfo.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/vdot.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/multiarray/usertypes.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/quicksort.c 1 warning generated. INFO: clang: numpy/core/src/multiarray/number.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/timsort.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/nditer_templ.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/strfuncs.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/binsearch.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/loops.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/umath/umathmodule.c INFO: clang: numpy/core/src/multiarray/nditer_api.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/experimental_public_dtype_api.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/mergesort.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/reduction.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/umath/legacy_array_method.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/scalarmath.c INFO: clang: numpy/core/src/umath/ufunc_object.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/_scaled_float_dtype.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/common/npy_argparse.c INFO: clang: numpy/core/src/multiarray/array_coercion.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/common/array_assign.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/common/npy_hashtable.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/common/mem_overlap.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/multiarray/array_method.c INFO: clang: numpy/core/src/common/npy_longdouble.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/common/ucsnarrow.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/common/npy_cpu_features.c INFO: clang: numpy/core/src/common/ufunc_override.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] numpy/core/src/common/npy_cpu_features.c.src:125:1: warning: unused function 'npy__cpu_baseline_fid' [-Wunused-function] npy__cpu_baseline_fid(const char *feature) ^ numpy/core/src/common/npy_cpu_features.c.src:138:1: warning: unused function 'npy__cpu_dispatch_fid' [-Wunused-function] npy__cpu_dispatch_fid(const char *feature) ^ 1 warning generated. 3 warnings generated. numpy/core/src/common/npy_cpu_features.c.src:125:1: warning: unused function 'npy__cpu_baseline_fid' [-Wunused-function] npy__cpu_baseline_fid(const char *feature) ^ numpy/core/src/common/npy_cpu_features.c.src:138:1: warning: unused function 'npy__cpu_dispatch_fid' [-Wunused-function] npy__cpu_dispatch_fid(const char *feature) ^ INFO: clang: numpy/core/src/common/numpyos.c 2 warnings generated. INFO: clang: numpy/core/src/common/cblasfuncs.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: numpy/core/src/umath/extobj.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] INFO: clang: numpy/core/src/common/python_xerbla.c 1 warning generated. warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/ufunc_type_resolution.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/override.c INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/heapsort.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/npysort/selection.c INFO: clang: numpy/core/src/multiarray/mapping.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/multiarray/methods.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. 1 warning generated. 1 warning generated. INFO: clang: build/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath/matmul.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. INFO: clang: numpy/core/src/umath/dispatching.c warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt] 1 warning generated. Running from numpy source directory. Warning: attempted relative import with no known parent package /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown distribution option: 'define_macros' warnings.warn(msg) INFO: ########### EXT COMPILER OPTIMIZATION ########### INFO: Platform : Architecture: x64 Compiler : clang CPU baseline : Requested : 'min' Enabled : none Flags : none Extra checks: none CPU dispatch : Requested : 'max -xop -fma4' Enabled : none Generated : none INFO: CCompilerOpt.cache_flush[817] : write cache to path -> /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/build/temp.macosx-10.14-x86_64-3.8/ccompiler_opt_cache_ext.py INFO: ########### CLIB COMPILER OPTIMIZATION ########### INFO: Platform : Architecture: x64 Compiler : clang CPU baseline : Requested : 'min' Enabled : none Flags : none Extra checks: none CPU dispatch : Requested : 'max -xop -fma4' Enabled : none Generated : none INFO: CCompilerOpt.cache_flush[817] : write cache to path -> /private/var/folders/x1/3mghbx4d4wg9ctwgtcf36xn40000gn/T/pip-install-r7jrb40s/numpy/build/temp.macosx-10.14-x86_64-3.8/ccompiler_opt_cache_clib.py error: Command "clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -iwithsysroot/System/Library/Frameworks/System.framework/PrivateHeaders -iwithsysroot/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/Headers -arch arm64 -arch x86_64 -Werror=implicit-function-declaration -ftrapping-math -DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNO_ATLAS_INFO=3 -DHAVE_CBLAS -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/include/numpy -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/include/python3.8 -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/common -Ibuild/src.macosx-10.14-x86_64-3.8/numpy/core/src/npymath -c numpy/core/src/multiarray/dragon4.c -o build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/dragon4.o -MMD -MF build/temp.macosx-10.14-x86_64-3.8/numpy/core/src/multiarray/dragon4.o.d -msse3 -I/System/Library/Frameworks/vecLib.framework/Headers" failed with exit status 1 ---------------------------------------- ERROR: Failed building wheel for numpy Building wheel for pandas (PEP 517) ... \^canceled ERROR: Operation cancelled by user WARNING: You are using pip version 20.2.3; however, version 22.0.3 is available. You should consider upgrading via the '/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip' command. ````

try again:

CLICK ME

```Consle mengchaoheng@mengchaohengdeMacBook-Pro Downloads % sudo -H python3 -m pip install --user pyserial empy toml numpy pandas jinja2 pyyaml pyros-genmsg packaging kconfiglib future jsonschema Password: Collecting pyserial Downloading pyserial-3.5-py2.py3-none-any.whl (90 kB) |████████████████████████████████| 90 kB 160 kB/s Collecting empy Downloading empy-3.3.4.tar.gz (62 kB) |████████████████████████████████| 62 kB 705 kB/s Preparing metadata (setup.py) ... done Collecting toml Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting numpy Downloading numpy-1.22.2-cp39-cp39-macosx_10_14_x86_64.whl (17.6 MB) |████████████████████████████████| 17.6 MB 274 kB/s Collecting pandas Downloading pandas-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl (11.5 MB) |████████████████████████████████| 11.5 MB 9.8 MB/s Collecting jinja2 Downloading Jinja2-3.0.3-py3-none-any.whl (133 kB) |████████████████████████████████| 133 kB 15.8 MB/s Collecting pyyaml Downloading PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl (197 kB) |████████████████████████████████| 197 kB 15.5 MB/s Collecting pyros-genmsg Downloading pyros_genmsg-0.5.8-py2.py3-none-any.whl (25 kB) Collecting packaging Downloading packaging-21.3-py3-none-any.whl (40 kB) |████████████████████████████████| 40 kB 17.8 MB/s Collecting kconfiglib Downloading kconfiglib-14.1.0-py2.py3-none-any.whl (145 kB) |████████████████████████████████| 145 kB 12.6 MB/s Collecting future Downloading future-0.18.2.tar.gz (829 kB) |████████████████████████████████| 829 kB 266 kB/s Preparing metadata (setup.py) ... done Collecting jsonschema Downloading jsonschema-4.4.0-py3-none-any.whl (72 kB) |████████████████████████████████| 72 kB 273 kB/s Collecting python-dateutil>=2.8.1 Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) |████████████████████████████████| 247 kB 9.2 MB/s Collecting pytz>=2020.1 Downloading pytz-2021.3-py2.py3-none-any.whl (503 kB) |████████████████████████████████| 503 kB 123 kB/s Collecting MarkupSafe>=2.0 Downloading MarkupSafe-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl (13 kB) Collecting pyparsing!=3.0.5,>=2.0.2 Downloading pyparsing-3.0.7-py3-none-any.whl (98 kB) |████████████████████████████████| 98 kB 277 kB/s Collecting attrs>=17.4.0 Downloading attrs-21.4.0-py2.py3-none-any.whl (60 kB) |████████████████████████████████| 60 kB 378 kB/s Collecting pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 Downloading pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl (81 kB) |████████████████████████████████| 81 kB 335 kB/s Collecting six>=1.5 Downloading six-1.16.0-py2.py3-none-any.whl (11 kB) Building wheels for collected packages: empy, future Building wheel for empy (setup.py) ... done Created wheel for empy: filename=empy-3.3.4-py3-none-any.whl size=29340 sha256=2cccadd68e26489c1abc1a056534cda17878c84399a9dc3b204bc441c833d0a2 Stored in directory: /private/var/root/Library/Caches/pip/wheels/c7/0a/c4/a0dc05ea753ca932849616e1c1886ad3c50aaa2c8f09c6a552 Building wheel for future (setup.py) ... done Created wheel for future: filename=future-0.18.2-py3-none-any.whl size=491070 sha256=311ce602a2fe44db6544575221e35f276c9dad8c64a972ec84eecabcf5de9364 Stored in directory: /private/var/root/Library/Caches/pip/wheels/2f/a0/d3/4030d9f80e6b3be787f19fc911b8e7aa462986a40ab1e4bb94 Successfully built empy future Installing collected packages: six, pytz, python-dateutil, pyrsistent, pyparsing, numpy, MarkupSafe, attrs, toml, pyyaml, pyserial, pyros-genmsg, pandas, packaging, kconfiglib, jsonschema, jinja2, future, empy WARNING: The scripts f2py, f2py3 and f2py3.9 are installed in '/var/root/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts pyserial-miniterm and pyserial-ports are installed in '/var/root/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts alldefconfig, allmodconfig, allnoconfig, allyesconfig, defconfig, genconfig, guiconfig, listnewconfig, menuconfig, oldconfig, olddefconfig, savedefconfig and setconfig are installed in '/var/root/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The script jsonschema is installed in '/var/root/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts futurize and pasteurize are installed in '/var/root/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed MarkupSafe-2.1.0 attrs-21.4.0 empy-3.3.4 future-0.18.2 jinja2-3.0.3 jsonschema-4.4.0 kconfiglib-14.1.0 numpy-1.22.2 packaging-21.3 pandas-1.4.1 pyparsing-3.0.7 pyros-genmsg-0.5.8 pyrsistent-0.18.1 pyserial-3.5 python-dateutil-2.8.2 pytz-2021.3 pyyaml-6.0 six-1.16.0 toml-0.10.2 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: You are using pip version 21.3.1; however, version 22.0.3 is available. You should consider upgrading via the '/usr/local/opt/python@3.9/bin/python3.9 -m pip install --upgrade pip' command. ````

mengchaoheng commented 2 years ago

and then problem come to :

this two step is follow the video:

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro Downloads % brew tap AdoptOpenJDK/openjdk Running `brew update --preinstall`... ==> Tapping adoptopenjdk/openjdk Cloning into '/usr/local/Homebrew/Library/Taps/adoptopenjdk/homebrew-openjdk'... remote: Enumerating objects: 1996, done. remote: Counting objects: 100% (60/60), done. remote: Compressing objects: 100% (22/22), done. remote: Total 1996 (delta 44), reused 49 (delta 38), pack-reused 1936 Receiving objects: 100% (1996/1996), 372.60 KiB | 486.00 KiB/s, done. Resolving deltas: 100% (1424/1424), done. Tapped 47 casks (69 files, 522.2KB). mengchaoheng@mengchaohengdeMacBook-Pro Downloads % brew cask install adoptopenjdk14 Error: `brew cask` is no longer a `brew` command. Use `brew --cask` instead. mengchaoheng@mengchaohengdeMacBook-Pro Downloads % brew install --cask adoptopenjdk14 ==> Downloading https://github.com/AdoptOpenJDK/openjdk14-binaries/releases/download/jdk-14.0.2%2B12/OpenJDK14U-jdk_x64_mac_hotspot_14.0.2_1 ==> Downloading from https://objects.githubusercontent.com/github-production-release-asset-2e65be/233878254/76a12100-c74a-11ea-9f22-d3fa20a5 ######################################################################## 100.0% ^[==> Installing Cask adoptopenjdk14 ==> Running installer for adoptopenjdk14; your password may be necessary. Package installers may write to any location; options such as `--appdir` are ignored. Password: Sorry, try again. Password: installer: Package name is AdoptOpenJDK installer: Installing at base path / installer: The install was successful. package-id: net.adoptopenjdk.14.jdk version: 14.0.2+12 volume: / location: Library/Java/JavaVirtualMachines/adoptopenjdk-14.jdk install-time: 1645976954 🍺 adoptopenjdk14 was successfully installed! ````

and then To use SITL simulation with jMAVSim you need to install a recent version of Java (e.g. Java 15). Download Java 15 (or later) from Oracle (opens new window)or use Termium (opens new window):

Actually here I forgot to “brew install --cask temurin”

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro Downloads % brew install px4-sim-jmavsim Running `brew update --preinstall`... ==> Downloading https://raw.githubusercontent.com/PX4/PX4-Autopilot/master/Tools/px4.py Already downloaded: /Users/mengchaoheng/Library/Caches/Homebrew/downloads/be4aff9b473b8b0c6bae0ff08a6611885de9d56ee3a477c05453bb6bbcaab246--px4.py ==> Installing px4-sim-jmavsim from px4/px4 ==> PX4 jMAVSim simulation installed 🍺 /usr/local/Cellar/px4-sim-jmavsim/1.11.0: 3 files, 7.7KB, built in 2 seconds ==> Running `brew cleanup px4-sim-jmavsim`... Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP. Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`). ```

then clone source:

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro Downloads % git clone https://github.com/PX4/PX4-Autopilot.git --recursive Cloning into 'PX4-Autopilot'... remote: Enumerating objects: 395840, done. remote: Counting objects: 100% (10/10), done. remote: Compressing objects: 100% (10/10), done. remote: Total 395840 (delta 0), reused 9 (delta 0), pack-reused 395830 Receiving objects: 100% (395840/395840), 172.01 MiB | 2.01 MiB/s, done. Resolving deltas: 100% (293497/293497), done. Submodule 'Tools/flightgear_bridge' (https://github.com/PX4/PX4-FlightGear-Bridge.git) registered for path 'Tools/flightgear_bridge' Submodule 'Tools/jMAVSim' (https://github.com/PX4/jMAVSim.git) registered for path 'Tools/jMAVSim' Submodule 'Tools/jsbsim_bridge' (https://github.com/PX4/px4-jsbsim-bridge.git) registered for path 'Tools/jsbsim_bridge' Submodule 'Tools/simulation-ignition' (https://github.com/PX4/px4-simulation-ignition.git) registered for path 'Tools/simulation-ignition' Submodule 'Tools/sitl_gazebo' (https://github.com/PX4/PX4-SITL_gazebo.git) registered for path 'Tools/sitl_gazebo' Submodule 'platforms/nuttx/NuttX/apps' (https://github.com/PX4/NuttX-apps.git) registered for path 'platforms/nuttx/NuttX/apps' Submodule 'platforms/nuttx/NuttX/nuttx' (https://github.com/PX4/NuttX.git) registered for path 'platforms/nuttx/NuttX/nuttx' Submodule 'src/drivers/gps/devices' (https://github.com/PX4/PX4-GPSDrivers.git) registered for path 'src/drivers/gps/devices' Submodule 'src/drivers/uavcan/libuavcan' (https://github.com/dronecan/libuavcan.git) registered for path 'src/drivers/uavcan/libuavcan' Submodule 'src/drivers/uavcan_v1/legacy_data_types' (https://github.com/PX4/public_regulated_data_types.git) registered for path 'src/drivers/uavcan_v1/legacy_data_types' Submodule 'src/drivers/uavcan_v1/libcanard' (https://github.com/UAVCAN/libcanard.git) registered for path 'src/drivers/uavcan_v1/libcanard' Submodule 'src/drivers/uavcan_v1/public_regulated_data_types' (https://github.com/UAVCAN/public_regulated_data_types.git) registered for path 'src/drivers/uavcan_v1/public_regulated_data_types' Submodule 'src/lib/crypto/libtomcrypt' (https://github.com/PX4/libtomcrypt.git) registered for path 'src/lib/crypto/libtomcrypt' Submodule 'src/lib/crypto/libtommath' (https://github.com/PX4/libtommath.git) registered for path 'src/lib/crypto/libtommath' Submodule 'src/lib/crypto/monocypher' (https://github.com/PX4/Monocypher.git) registered for path 'src/lib/crypto/monocypher' Submodule 'src/lib/events/libevents' (https://github.com/mavlink/libevents.git) registered for path 'src/lib/events/libevents' Submodule 'src/modules/mavlink/mavlink' (https://github.com/mavlink/mavlink.git) registered for path 'src/modules/mavlink/mavlink' Submodule 'src/modules/micrortps_bridge/micro-CDR' (https://github.com/PX4/Micro-CDR.git) registered for path 'src/modules/micrortps_bridge/micro-CDR' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/flightgear_bridge'... remote: Enumerating objects: 382, done. remote: Counting objects: 100% (52/52), done. remote: Compressing objects: 100% (34/34), done. remote: Total 382 (delta 25), reused 39 (delta 16), pack-reused 330 Receiving objects: 100% (382/382), 1.47 MiB | 968.00 KiB/s, done. Resolving deltas: 100% (244/244), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jMAVSim'... remote: Enumerating objects: 3325, done. remote: Counting objects: 100% (121/121), done. remote: Compressing objects: 100% (69/69), done. remote: Total 3325 (delta 37), reused 75 (delta 21), pack-reused 3204 Receiving objects: 100% (3325/3325), 72.89 MiB | 1.41 MiB/s, done. Resolving deltas: 100% (1629/1629), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jsbsim_bridge'... remote: Enumerating objects: 315, done. remote: Counting objects: 100% (86/86), done. remote: Compressing objects: 100% (58/58), done. remote: Total 315 (delta 42), reused 50 (delta 25), pack-reused 229 Receiving objects: 100% (315/315), 257.08 KiB | 283.00 KiB/s, done. Resolving deltas: 100% (182/182), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/simulation-ignition'... remote: Enumerating objects: 218, done. remote: Counting objects: 100% (178/178), done. remote: Compressing objects: 100% (147/147), done. remote: Total 218 (delta 89), reused 89 (delta 13), pack-reused 40 Receiving objects: 100% (218/218), 390.49 KiB | 454.00 KiB/s, done. Resolving deltas: 100% (97/97), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo'... remote: Enumerating objects: 8773, done. remote: Total 8773 (delta 0), reused 0 (delta 0), pack-reused 8773 Receiving objects: 100% (8773/8773), 102.62 MiB | 5.76 MiB/s, done. Resolving deltas: 100% (5927/5927), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/platforms/nuttx/NuttX/apps'... remote: Enumerating objects: 69021, done. remote: Counting objects: 100% (6995/6995), done. remote: Compressing objects: 100% (3031/3031), done. remote: Total 69021 (delta 4982), reused 5535 (delta 3945), pack-reused 62026 Receiving objects: 100% (69021/69021), 18.95 MiB | 4.55 MiB/s, done. Resolving deltas: 100% (55947/55947), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/platforms/nuttx/NuttX/nuttx'... remote: Enumerating objects: 651443, done. remote: Counting objects: 100% (72343/72343), done. remote: Compressing objects: 100% (17626/17626), done. remote: Total 651443 (delta 52312), reused 69037 (delta 49399), pack-reused 579100 Receiving objects: 100% (651443/651443), 220.22 MiB | 4.89 MiB/s, done. Resolving deltas: 100% (498291/498291), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/gps/devices'... remote: Enumerating objects: 925, done. remote: Counting objects: 100% (220/220), done. remote: Compressing objects: 100% (140/140), done. remote: Total 925 (delta 162), reused 116 (delta 80), pack-reused 705 Receiving objects: 100% (925/925), 392.93 KiB | 152.00 KiB/s, done. Resolving deltas: 100% (688/688), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/uavcan/libuavcan'... remote: Enumerating objects: 17717, done. remote: Counting objects: 100% (17717/17717), done. remote: Compressing objects: 100% (4568/4568), done. remote: Total 17717 (delta 11933), reused 17645 (delta 11874), pack-reused 0 Receiving objects: 100% (17717/17717), 2.85 MiB | 1.24 MiB/s, done. Resolving deltas: 100% (11933/11933), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/uavcan_v1/legacy_data_types'... remote: Enumerating objects: 4343, done. remote: Counting objects: 100% (159/159), done. remote: Compressing objects: 100% (128/128), done. remote: Total 4343 (delta 35), reused 128 (delta 26), pack-reused 4184 Receiving objects: 100% (4343/4343), 673.02 KiB | 551.00 KiB/s, done. Resolving deltas: 100% (2193/2193), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/uavcan_v1/libcanard'... remote: Enumerating objects: 2881, done. remote: Counting objects: 100% (79/79), done. remote: Compressing objects: 100% (68/68), done. remote: Total 2881 (delta 27), reused 27 (delta 5), pack-reused 2802 Receiving objects: 100% (2881/2881), 1.01 MiB | 725.00 KiB/s, done. Resolving deltas: 100% (1843/1843), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/uavcan_v1/public_regulated_data_types'... remote: Enumerating objects: 4282, done. remote: Counting objects: 100% (170/170), done. remote: Compressing objects: 100% (130/130), done. remote: Total 4282 (delta 58), reused 103 (delta 28), pack-reused 4112 Receiving objects: 100% (4282/4282), 654.52 KiB | 597.00 KiB/s, done. Resolving deltas: 100% (2188/2188), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/crypto/libtomcrypt'... remote: Enumerating objects: 20390, done. remote: Counting objects: 100% (124/124), done. remote: Compressing objects: 100% (80/80), done. remote: Total 20390 (delta 60), reused 76 (delta 44), pack-reused 20266 Receiving objects: 100% (20390/20390), 20.78 MiB | 5.63 MiB/s, done. Resolving deltas: 100% (15588/15588), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/crypto/libtommath'... remote: Enumerating objects: 10537, done. remote: Counting objects: 100% (22/22), done. remote: Compressing objects: 100% (18/18), done. remote: Total 10537 (delta 8), reused 10 (delta 4), pack-reused 10515 Receiving objects: 100% (10537/10537), 20.91 MiB | 5.39 MiB/s, done. Resolving deltas: 100% (8158/8158), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/crypto/monocypher'... remote: Enumerating objects: 5712, done. remote: Counting objects: 100% (148/148), done. remote: Compressing objects: 100% (81/81), done. remote: Total 5712 (delta 87), reused 109 (delta 63), pack-reused 5564 Receiving objects: 100% (5712/5712), 3.85 MiB | 1.51 MiB/s, done. Resolving deltas: 100% (3520/3520), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/events/libevents'... remote: Enumerating objects: 216, done. remote: Counting objects: 100% (216/216), done. remote: Compressing objects: 100% (110/110), done. remote: Total 216 (delta 91), reused 205 (delta 82), pack-reused 0 Receiving objects: 100% (216/216), 74.83 KiB | 69.00 KiB/s, done. Resolving deltas: 100% (91/91), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink'... remote: Enumerating objects: 18644, done. remote: Counting objects: 100% (215/215), done. remote: Compressing objects: 100% (134/134), done. remote: Total 18644 (delta 113), reused 78 (delta 42), pack-reused 18429 Receiving objects: 100% (18644/18644), 10.67 MiB | 1.18 MiB/s, done. Resolving deltas: 100% (11912/11912), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/micrortps_bridge/micro-CDR'... remote: Enumerating objects: 1692, done. remote: Counting objects: 100% (13/13), done. remote: Compressing objects: 100% (12/12), done. remote: Total 1692 (delta 4), reused 1 (delta 1), pack-reused 1679 Receiving objects: 100% (1692/1692), 696.48 KiB | 685.00 KiB/s, done. Resolving deltas: 100% (930/930), done. Submodule path 'Tools/flightgear_bridge': checked out 'f47ce7b5fbbb3aa43d33d2be1f6cd3746b13d5bf' Submodule 'models/FlightGear-Rascal' (https://github.com/ThunderFly-aerospace/FlightGear-Rascal.git) registered for path 'Tools/flightgear_bridge/models/Rascal' Submodule 'models/FlightGear-TF-G1' (https://github.com/ThunderFly-aerospace/FlightGear-TF-G1.git) registered for path 'Tools/flightgear_bridge/models/TF-G1' Submodule 'models/FlightGear-TF-G2' (https://github.com/ThunderFly-aerospace/FlightGear-TF-G2.git) registered for path 'Tools/flightgear_bridge/models/TF-G2' Submodule 'models/FlightGear-TF-R1' (https://github.com/ThunderFly-aerospace/FlightGear-TF-R1.git) registered for path 'Tools/flightgear_bridge/models/TF-R1' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/flightgear_bridge/models/Rascal'... remote: Enumerating objects: 2278, done. remote: Counting objects: 100% (77/77), done. remote: Compressing objects: 100% (56/56), done. remote: Total 2278 (delta 41), reused 56 (delta 21), pack-reused 2201 Receiving objects: 100% (2278/2278), 3.64 MiB | 2.25 MiB/s, done. Resolving deltas: 100% (1304/1304), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/flightgear_bridge/models/TF-G1'... remote: Enumerating objects: 247, done. remote: Counting objects: 100% (247/247), done. remote: Compressing objects: 100% (172/172), done. remote: Total 247 (delta 125), reused 181 (delta 68), pack-reused 0 Receiving objects: 100% (247/247), 5.74 MiB | 195.00 KiB/s, done. Resolving deltas: 100% (125/125), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/flightgear_bridge/models/TF-G2'... remote: Enumerating objects: 139, done. remote: Counting objects: 100% (139/139), done. remote: Compressing objects: 100% (110/110), done. remote: Total 139 (delta 59), reused 99 (delta 23), pack-reused 0 Receiving objects: 100% (139/139), 10.49 MiB | 1.45 MiB/s, done. Resolving deltas: 100% (59/59), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/flightgear_bridge/models/TF-R1'... remote: Enumerating objects: 228, done. remote: Counting objects: 100% (228/228), done. remote: Compressing objects: 100% (167/167), done. remote: Total 228 (delta 78), reused 204 (delta 58), pack-reused 0 Receiving objects: 100% (228/228), 25.91 MiB | 5.40 MiB/s, done. Resolving deltas: 100% (78/78), done. Submodule path 'Tools/flightgear_bridge/models/Rascal': checked out 'cbdb2fc7dd44331da1dcd04a891ed7f8c27b1ef0' Submodule path 'Tools/flightgear_bridge/models/TF-G1': checked out 'fdb6dd685f55097230c0eb29aa7e9f5b8d0abf1e' Submodule path 'Tools/flightgear_bridge/models/TF-G2': checked out '99529413531106836f4303c5389928a4fef04b05' Submodule path 'Tools/flightgear_bridge/models/TF-R1': checked out '158e429a0110589b1e2adfe868e166271470e144' Submodule path 'Tools/jMAVSim': checked out '66b764ada522893c05224950aa6268c809f8e48a' Submodule 'jMAVlib' (https://github.com/PX4/jMAVlib.git) registered for path 'Tools/jMAVSim/jMAVlib' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jMAVSim/jMAVlib'... remote: Enumerating objects: 1135, done. remote: Counting objects: 100% (33/33), done. remote: Compressing objects: 100% (21/21), done. remote: Total 1135 (delta 5), reused 10 (delta 0), pack-reused 1102 Receiving objects: 100% (1135/1135), 184.29 KiB | 249.00 KiB/s, done. Resolving deltas: 100% (449/449), done. Submodule path 'Tools/jMAVSim/jMAVlib': checked out 'c08380767b21938391bec676a43b36b837af9ba4' Submodule path 'Tools/jsbsim_bridge': checked out '68de2cc63ded9a0d6641d45e9eb3ed2b43454cba' Submodule 'models/ATI-Resolution' (https://github.com/FGMEMBERS/ATI-Resolution.git) registered for path 'Tools/jsbsim_bridge/models/ATI-Resolution' Submodule 'models/Rascal' (https://github.com/Auterion/FlightGear-Rascal.git) registered for path 'Tools/jsbsim_bridge/models/Rascal' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jsbsim_bridge/models/ATI-Resolution'... remote: Enumerating objects: 116, done. remote: Total 116 (delta 0), reused 0 (delta 0), pack-reused 116 Receiving objects: 100% (116/116), 4.82 MiB | 1.70 MiB/s, done. Resolving deltas: 100% (26/26), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jsbsim_bridge/models/Rascal'... remote: Enumerating objects: 2286, done. remote: Counting objects: 100% (85/85), done. remote: Compressing objects: 100% (63/63), done. remote: Total 2286 (delta 43), reused 61 (delta 22), pack-reused 2201 Receiving objects: 100% (2286/2286), 3.64 MiB | 2.26 MiB/s, done. Resolving deltas: 100% (1306/1306), done. Submodule path 'Tools/jsbsim_bridge/models/ATI-Resolution': checked out '40571cd808a204f4062128daeb6bb6db8c134c48' Submodule path 'Tools/jsbsim_bridge/models/Rascal': checked out 'd0d1db1961549e557885002cf9c3cff40cc27be2' Submodule path 'Tools/simulation-ignition': checked out '483193d9b8b89211c3b970c735b4fbb5f724b63a' Submodule path 'Tools/sitl_gazebo': checked out '25138e803ee8525ee5fe4e6d511506e88e3f819c' Submodule 'external/OpticalFlow' (https://github.com/PX4/OpticalFlow.git) registered for path 'Tools/sitl_gazebo/external/OpticalFlow' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/external/OpticalFlow'... remote: Enumerating objects: 194, done. remote: Total 194 (delta 0), reused 0 (delta 0), pack-reused 194 Receiving objects: 100% (194/194), 45.20 KiB | 294.00 KiB/s, done. Resolving deltas: 100% (110/110), done. Submodule path 'Tools/sitl_gazebo/external/OpticalFlow': checked out '28ef45c1fcb532b2bfd54c16b059c6a545143b2f' Submodule 'external/klt_feature_tracker' (https://github.com/ethz-ait/klt_feature_tracker.git) registered for path 'Tools/sitl_gazebo/external/OpticalFlow/external/klt_feature_tracker' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/external/OpticalFlow/external/klt_feature_tracker'... remote: Enumerating objects: 61, done. remote: Counting objects: 100% (3/3), done. remote: Compressing objects: 100% (3/3), done. remote: Total 61 (delta 0), reused 1 (delta 0), pack-reused 58 Receiving objects: 100% (61/61), 18.54 KiB | 174.00 KiB/s, done. Resolving deltas: 100% (24/24), done. Submodule path 'Tools/sitl_gazebo/external/OpticalFlow/external/klt_feature_tracker': checked out '9b5b567ae77f93d1ef4d36151529ba2506a46e7a' Submodule path 'platforms/nuttx/NuttX/apps': checked out 'dbcb783671cee8a8c97b5909d9eb818c3864ca93' Submodule path 'platforms/nuttx/NuttX/nuttx': checked out 'c5c7d2b4f26f52f1dfb425ebde83328606b65d4f' Submodule path 'src/drivers/gps/devices': checked out 'fa275c39935e00906d7a691770d2c10f1ea95d3c' Submodule path 'src/drivers/uavcan/libuavcan': checked out '9c09983f737de0dd224d26025f8f439d6d860b27' Submodule 'dsdl' (https://github.com/dronecan/DSDL) registered for path 'src/drivers/uavcan/libuavcan/dsdl' Submodule 'libuavcan/dsdl_compiler/pyuavcan' (https://github.com/dronecan/pydronecan) registered for path 'src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/uavcan/libuavcan/dsdl'... remote: Enumerating objects: 1013, done. remote: Counting objects: 100% (1013/1013), done. remote: Compressing objects: 100% (483/483), done. remote: Total 1013 (delta 590), reused 937 (delta 517), pack-reused 0 Receiving objects: 100% (1013/1013), 130.75 KiB | 90.00 KiB/s, done. Resolving deltas: 100% (590/590), done. Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan'... remote: Enumerating objects: 1676, done. remote: Counting objects: 100% (1676/1676), done. remote: Compressing objects: 100% (599/599), done. remote: Total 1676 (delta 1149), reused 1523 (delta 1026), pack-reused 0 Receiving objects: 100% (1676/1676), 334.48 KiB | 507.00 KiB/s, done. Resolving deltas: 100% (1149/1149), done. Submodule path 'src/drivers/uavcan/libuavcan/dsdl': checked out '35c593c6b1a6eefb3310b2c14121d9b66710ecfa' Submodule path 'src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan': checked out 'c58477a644d20ccf95a20c151f3a0402f271c3b8' Submodule 'dsdl' (https://github.com/UAVCAN/dsdl) registered for path 'src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan/dsdl' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan/dsdl'... remote: Enumerating objects: 4282, done. remote: Counting objects: 100% (170/170), done. remote: Compressing objects: 100% (130/130), done. remote: Total 4282 (delta 58), reused 103 (delta 28), pack-reused 4112 Receiving objects: 100% (4282/4282), 654.52 KiB | 617.00 KiB/s, done. Resolving deltas: 100% (2188/2188), done. Submodule path 'src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan/dsdl': checked out 'fd12483ddd4e58242d61d74a163e7aeaa1e0f466' Submodule path 'src/drivers/uavcan_v1/legacy_data_types': checked out '36a01e428b110ff84c8babe5b65667b5e3037d5e' Submodule path 'src/drivers/uavcan_v1/libcanard': checked out '2d449453fc8c4060f276c6dc585d4e1e5bf4fd52' Submodule path 'src/drivers/uavcan_v1/public_regulated_data_types': checked out '0a773b93ce5c94e1d2791b180058cb9897fab7e1' Submodule path 'src/lib/crypto/libtomcrypt': checked out '673f5ce29015a9bba3c96792920a10601b5b0718' Submodule path 'src/lib/crypto/libtommath': checked out 'fd73d7630b9d3ed5a79d613ff680a549e9780de7' Submodule path 'src/lib/crypto/monocypher': checked out 'baca5d31259c598540e4d1284bc8d8f793abf83a' Submodule path 'src/lib/events/libevents': checked out '6329c909a7b16bb6f97c94cbb598815635b94982' Submodule 'libs/cpp/parse/nlohmann_json' (https://github.com/ArthurSonzogni/nlohmann_json_cmake_fetchcontent.git) registered for path 'src/lib/events/libevents/libs/cpp/parse/nlohmann_json' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/lib/events/libevents/libs/cpp/parse/nlohmann_json'... remote: Enumerating objects: 404, done. remote: Counting objects: 100% (404/404), done. remote: Compressing objects: 100% (186/186), done. Receiving objects: 29% (118/404) remote: Total 404 (delta 192), reused 365 (delta 156), pack-reused 0 Receiving objects: 100% (404/404), 503.99 KiB | 498.00 KiB/s, done. Resolving deltas: 100% (192/192), done. Submodule path 'src/lib/events/libevents/libs/cpp/parse/nlohmann_json': checked out '391786c6c3abdd3eeb993a3154f1f2a4cfe137a0' Submodule path 'src/modules/mavlink/mavlink': checked out 'b568a60fca42599d9998434e606f6e38e0b5e298' Submodule 'pymavlink' (https://github.com/ardupilot/pymavlink.git) registered for path 'src/modules/mavlink/mavlink/pymavlink' Cloning into '/Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/pymavlink'... remote: Enumerating objects: 16501, done. remote: Counting objects: 100% (502/502), done. remote: Compressing objects: 100% (229/229), done. remote: Total 16501 (delta 283), reused 432 (delta 264), pack-reused 15999 Receiving objects: 100% (16501/16501), 7.93 MiB | 2.85 MiB/s, done. Resolving deltas: 100% (11851/11851), done. Submodule path 'src/modules/mavlink/mavlink/pymavlink': checked out 'df6e4d7c37edda3f687bb31db1b3e12a67eab831' Submodule path 'src/modules/micrortps_bridge/micro-CDR': checked out '21d3cfe3ae570d1674da0105ab23b80958e0449a' mengchaoheng@mengchaohengdeMacBook-Pro Downloads % ```

then I build it:

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % pip3 install kconfiglib Defaulting to user installation because normal site-packages is not writeable Collecting kconfiglib Using cached kconfiglib-14.1.0-py2.py3-none-any.whl (145 kB) Installing collected packages: kconfiglib WARNING: The scripts alldefconfig, allmodconfig, allnoconfig, allyesconfig, defconfig, genconfig, guiconfig, listnewconfig, menuconfig, oldconfig, olddefconfig, savedefconfig and setconfig are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed kconfiglib-14.1.0 WARNING: You are using pip version 20.2.3; however, version 22.0.3 is available. You should consider upgrading via the '/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip' command. mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % git status On branch master Your branch is up to date with 'origin/master'. nothing to commit, working tree clean mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % git submodule update --init --recursive mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % python3 -m pip install --user kconfiglib Requirement already satisfied: kconfiglib in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (14.1.0) WARNING: You are using pip version 20.2.3; however, version 22.0.3 is available. You should consider upgrading via the '/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip' command. mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % /Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip Defaulting to user installation because normal site-packages is not writeable Collecting pip Downloading pip-22.0.3-py3-none-any.whl (2.1 MB) |████████████████████████████████| 2.1 MB 124 kB/s Installing collected packages: pip WARNING: The scripts pip, pip3 and pip3.8 are installed in '/Users/mengchaoheng/Library/Python/3.8/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed pip-22.0.3 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % python3 -m pip install --user kconfiglib Requirement already satisfied: kconfiglib in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (14.1.0) mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % pip3 install kconfiglib Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: kconfiglib in /Users/mengchaoheng/Library/Python/3.8/lib/python/site-packages (14.1.0) mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % /usr/local/bin/python3 -m pip install future --user Collecting future Using cached future-0.18.2.tar.gz (829 kB) Preparing metadata (setup.py) ... done Building wheels for collected packages: future Building wheel for future (setup.py) ... done Created wheel for future: filename=future-0.18.2-py3-none-any.whl size=491070 sha256=5ec78cf79be252032031e5315aec8b8bcf4c9b462f9afe8f1dd43d5b76021180 Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/2f/a0/d3/4030d9f80e6b3be787f19fc911b8e7aa462986a40ab1e4bb94 Successfully built future Installing collected packages: future WARNING: The scripts futurize and pasteurize are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed future-0.18.2 WARNING: You are using pip version 21.3.1; however, version 22.0.3 is available. You should consider upgrading via the '/usr/local/opt/python@3.9/bin/python3.9 -m pip install --upgrade pip' command. mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % /usr/local/bin/python3 -m pip install numpy --user Collecting numpy Downloading numpy-1.22.2-cp39-cp39-macosx_10_14_x86_64.whl (17.6 MB) |████████████████████████████████| 17.6 MB 100 kB/s Installing collected packages: numpy WARNING: The scripts f2py, f2py3 and f2py3.9 are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed numpy-1.22.2 WARNING: You are using pip version 21.3.1; however, version 22.0.3 is available. You should consider upgrading via the '/usr/local/opt/python@3.9/bin/python3.9 -m pip install --upgrade pip' command. mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl jmavsim -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'menuconfig' CMake Error at cmake/kconfig.cmake:6 (message): kconfiglib is not installed or not in PATH please install using "pip3 install kconfiglib" Call Stack (most recent call first): CMakeLists.txt:174 (include) -- Configuring incomplete, errors occurred! Error: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default is not a directory make: *** [px4_sitl] Error 1 ````

dagar commented 2 years ago

built in the macbook pro 2021 which has a m1 pro CPU

@mengchaoheng I would try PX4 master instead of v1.12.3. Then try re-installing the full dependencies (./Tools/setup/macos.sh), restart, and try again from a clean state. If it's still failing please message me (@dagar) on PX4 slack and we can try to debug interactively.

I have checkout to v1.12.3, as above

There were M1 compatibility changes that only went in after v1.12.3. Start with current master to get things working first.

mengchaoheng commented 2 years ago

now in master:

CLICK ME

``` Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % ./Tools/setup/macos.sh px4-dev already installed Installing PX4 Python3 dependencies Collecting argcomplete Using cached argcomplete-2.0.0-py2.py3-none-any.whl (37 kB) Collecting argparse>=1.2 Using cached argparse-1.4.0-py2.py3-none-any.whl (23 kB) Collecting cerberus Using cached Cerberus-1.3.4.tar.gz (63 kB) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done Collecting coverage Downloading coverage-6.3.2-cp39-cp39-macosx_10_9_x86_64.whl (183 kB) |████████████████████████████████| 183 kB 238 kB/s Collecting empy>=3.3 Using cached empy-3.3.4.tar.gz (62 kB) Preparing metadata (setup.py) ... done Requirement already satisfied: future in /Users/mengchaoheng/Library/Python/3.9/lib/python/site-packages (from -r /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/setup/requirements.txt (line 6)) (0.18.2) Collecting jinja2>=2.8 Using cached Jinja2-3.0.3-py3-none-any.whl (133 kB) Collecting jsonschema Using cached jsonschema-4.4.0-py3-none-any.whl (72 kB) Collecting kconfiglib Using cached kconfiglib-14.1.0-py2.py3-none-any.whl (145 kB) Collecting lxml Downloading lxml-4.8.0-cp39-cp39-macosx_10_15_x86_64.whl (4.6 MB) |████████████████████████████████| 4.6 MB 233 kB/s Collecting matplotlib>=3.0.* Downloading matplotlib-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl (7.3 MB) |████████████████████████████████| 7.3 MB 8.2 MB/s Requirement already satisfied: numpy>=1.13 in /Users/mengchaoheng/Library/Python/3.9/lib/python/site-packages (from -r /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/setup/requirements.txt (line 12)) (1.22.2) Collecting nunavut>=1.1.0 Using cached nunavut-1.7.3-1904746659-py3-none-any.whl (311 kB) Collecting packaging Using cached packaging-21.3-py3-none-any.whl (40 kB) Collecting pandas>=0.21 Downloading pandas-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl (11.5 MB) |████████████████████████████████| 11.5 MB 5.3 MB/s Collecting pkgconfig Using cached pkgconfig-1.5.5-py3-none-any.whl (6.7 kB) Collecting psutil Downloading psutil-5.9.0-cp39-cp39-macosx_10_9_x86_64.whl (238 kB) |████████████████████████████████| 238 kB 23.5 MB/s Collecting pygments Using cached Pygments-2.11.2-py3-none-any.whl (1.1 MB) Requirement already satisfied: wheel>=0.31.1 in /usr/local/lib/python3.9/site-packages (from -r /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/setup/requirements.txt (line 19)) (0.37.1) Collecting pymavlink Using cached pymavlink-2.4.26.tar.gz (5.2 MB) Preparing metadata (setup.py) ... done Collecting pyros-genmsg Using cached pyros_genmsg-0.5.8-py2.py3-none-any.whl (25 kB) Collecting pyserial Using cached pyserial-3.5-py2.py3-none-any.whl (90 kB) Collecting pyulog>=0.5.0 Using cached pyulog-0.9.0-py3-none-any.whl (23 kB) Collecting pyyaml Downloading PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl (197 kB) |████████████████████████████████| 197 kB 24.1 MB/s Collecting requests Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB) Requirement already satisfied: setuptools>=39.2.0 in /usr/local/lib/python3.9/site-packages (from -r /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/setup/requirements.txt (line 26)) (60.5.0) Collecting six>=1.12.0 Downloading six-1.16.0-py2.py3-none-any.whl (11 kB) Collecting toml>=0.9 Using cached toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting MarkupSafe>=2.0 Downloading MarkupSafe-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl (13 kB) Collecting pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 Downloading pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl (81 kB) |████████████████████████████████| 81 kB 21.4 MB/s Collecting attrs>=17.4.0 Using cached attrs-21.4.0-py2.py3-none-any.whl (60 kB) Collecting cycler>=0.10 Using cached cycler-0.11.0-py3-none-any.whl (6.4 kB) Collecting pyparsing>=2.2.1 Using cached pyparsing-3.0.7-py3-none-any.whl (98 kB) Collecting pillow>=6.2.0 Downloading Pillow-9.0.1-cp39-cp39-macosx_10_10_x86_64.whl (3.0 MB) |████████████████████████████████| 3.0 MB 14.3 MB/s Collecting kiwisolver>=1.0.1 Downloading kiwisolver-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl (61 kB) |████████████████████████████████| 61 kB 198 kB/s Collecting python-dateutil>=2.7 Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) Collecting fonttools>=4.22.0 Using cached fonttools-4.29.1-py3-none-any.whl (895 kB) Collecting importlib-resources Using cached importlib_resources-5.4.0-py3-none-any.whl (28 kB) Collecting pydsdl~=1.12 Using cached pydsdl-1.13.0-py3-none-any.whl (110 kB) Collecting pytz>=2020.1 Using cached pytz-2021.3-py2.py3-none-any.whl (503 kB) Collecting charset-normalizer~=2.0.0 Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB) Collecting urllib3<1.27,>=1.21.1 Using cached urllib3-1.26.8-py2.py3-none-any.whl (138 kB) Collecting idna<4,>=2.5 Using cached idna-3.3-py3-none-any.whl (61 kB) Collecting certifi>=2017.4.17 Using cached certifi-2021.10.8-py2.py3-none-any.whl (149 kB) Collecting zipp>=3.1.0 Using cached zipp-3.7.0-py3-none-any.whl (5.3 kB) Building wheels for collected packages: cerberus, empy, pymavlink Building wheel for cerberus (pyproject.toml) ... done Created wheel for cerberus: filename=Cerberus-1.3.4-py3-none-any.whl size=58196 sha256=24ba578a2bebf7e32db89af4b5f37fd7385a504d0b77f5b904bc611ac6b162d2 Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/52/26/88/27d9b76e7756eedcf3d6e8fcc3bc28da0869749ffe8d87f7ac Building wheel for empy (setup.py) ... done Created wheel for empy: filename=empy-3.3.4-py3-none-any.whl size=29340 sha256=a4938af45af95aa35ea999c04d164e1b103cafe6159469d7df42c677eb32fcdc Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/c7/0a/c4/a0dc05ea753ca932849616e1c1886ad3c50aaa2c8f09c6a552 Building wheel for pymavlink (setup.py) ... done Created wheel for pymavlink: filename=pymavlink-2.4.26-cp39-cp39-macosx_12_0_x86_64.whl size=5366812 sha256=6804ce98827082c411f1c15ff1dcf5b41c9f3c7a9d35e4c3c377e247f5106a5d Stored in directory: /Users/mengchaoheng/Library/Caches/pip/wheels/b2/f9/12/3360c68349e163479a9a65ae1b4d38aaf98cbca328cfeaa347 Successfully built cerberus empy pymavlink Installing collected packages: zipp, six, pyparsing, urllib3, pyyaml, pytz, python-dateutil, pyrsistent, pydsdl, pillow, packaging, MarkupSafe, lxml, kiwisolver, importlib-resources, idna, fonttools, cycler, charset-normalizer, certifi, attrs, toml, requests, pyulog, pyserial, pyros-genmsg, pymavlink, pygments, psutil, pkgconfig, pandas, nunavut, matplotlib, kconfiglib, jsonschema, jinja2, empy, coverage, cerberus, argparse, argcomplete WARNING: The scripts fonttools, pyftmerge, pyftsubset and ttx are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The script normalizer is installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts ulog2csv, ulog2kml, ulog_extract_gps_dump, ulog_info, ulog_messages and ulog_params are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts pyserial-miniterm and pyserial-ports are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The script pygmentize is installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The script nnvg is installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts alldefconfig, allmodconfig, allnoconfig, allyesconfig, defconfig, genconfig, guiconfig, listnewconfig, menuconfig, oldconfig, olddefconfig, savedefconfig and setconfig are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The script jsonschema is installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. WARNING: The scripts coverage, coverage-3.9 and coverage3 are installed in '/Users/mengchaoheng/Library/Python/3.9/bin' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. Successfully installed MarkupSafe-2.1.0 argcomplete-2.0.0 argparse-1.4.0 attrs-21.4.0 cerberus-1.3.4 certifi-2021.10.8 charset-normalizer-2.0.12 coverage-6.3.2 cycler-0.11.0 empy-3.3.4 fonttools-4.29.1 idna-3.3 importlib-resources-5.4.0 jinja2-3.0.3 jsonschema-4.4.0 kconfiglib-14.1.0 kiwisolver-1.3.2 lxml-4.8.0 matplotlib-3.5.1 nunavut-1.7.3 packaging-21.3 pandas-1.4.1 pillow-9.0.1 pkgconfig-1.5.5 psutil-5.9.0 pydsdl-1.13.0 pygments-2.11.2 pymavlink-2.4.26 pyparsing-3.0.7 pyros-genmsg-0.5.8 pyrsistent-0.18.1 pyserial-3.5 python-dateutil-2.8.2 pytz-2021.3 pyulog-0.9.0 pyyaml-6.0 requests-2.27.1 six-1.16.0 toml-0.10.2 urllib3-1.26.8 zipp-3.7.0 WARNING: You are using pip version 21.3.1; however, version 22.0.3 is available. You should consider upgrading via the '/usr/local/opt/python@3.9/bin/python3.9 -m pip install --upgrade pip' command. All set! PX4 toolchain installed! mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % git submodule update --init --recursive Submodule 'Tools/flightgear_bridge' (https://github.com/PX4/PX4-FlightGear-Bridge.git) registered for path 'Tools/flightgear_bridge' Submodule 'Tools/jMAVSim' (https://github.com/PX4/jMAVSim.git) registered for path 'Tools/jMAVSim' Submodule 'Tools/jsbsim_bridge' (https://github.com/PX4/px4-jsbsim-bridge.git) registered for path 'Tools/jsbsim_bridge' Submodule 'Tools/simulation-ignition' (https://github.com/PX4/px4-simulation-ignition.git) registered for path 'Tools/simulation-ignition' Submodule 'Tools/sitl_gazebo' (https://github.com/PX4/PX4-SITL_gazebo.git) registered for path 'Tools/sitl_gazebo' Submodule 'platforms/nuttx/NuttX/apps' (https://github.com/PX4/NuttX-apps.git) registered for path 'platforms/nuttx/NuttX/apps' Submodule 'platforms/nuttx/NuttX/nuttx' (https://github.com/PX4/NuttX.git) registered for path 'platforms/nuttx/NuttX/nuttx' Submodule 'src/drivers/gps/devices' (https://github.com/PX4/PX4-GPSDrivers.git) registered for path 'src/drivers/gps/devices' Submodule 'src/drivers/uavcan/libuavcan' (https://github.com/dronecan/libuavcan.git) registered for path 'src/drivers/uavcan/libuavcan' Submodule 'src/drivers/uavcan_v1/legacy_data_types' (https://github.com/PX4/public_regulated_data_types.git) registered for path 'src/drivers/uavcan_v1/legacy_data_types' Submodule 'src/drivers/uavcan_v1/libcanard' (https://github.com/UAVCAN/libcanard.git) registered for path 'src/drivers/uavcan_v1/libcanard' Submodule 'src/drivers/uavcan_v1/public_regulated_data_types' (https://github.com/UAVCAN/public_regulated_data_types.git) registered for path 'src/drivers/uavcan_v1/public_regulated_data_types' Submodule 'src/lib/crypto/libtomcrypt' (https://github.com/PX4/libtomcrypt.git) registered for path 'src/lib/crypto/libtomcrypt' Submodule 'src/lib/crypto/libtommath' (https://github.com/PX4/libtommath.git) registered for path 'src/lib/crypto/libtommath' Submodule 'src/lib/crypto/monocypher' (https://github.com/PX4/Monocypher.git) registered for path 'src/lib/crypto/monocypher' Submodule 'src/lib/events/libevents' (https://github.com/mavlink/libevents.git) registered for path 'src/lib/events/libevents' Submodule 'src/modules/mavlink/mavlink' (https://github.com/mavlink/mavlink.git) registered for path 'src/modules/mavlink/mavlink' Submodule 'src/modules/micrortps_bridge/micro-CDR' (https://github.com/PX4/Micro-CDR.git) registered for path 'src/modules/micrortps_bridge/micro-CDR' Submodule path 'Tools/flightgear_bridge': checked out 'f47ce7b5fbbb3aa43d33d2be1f6cd3746b13d5bf' Submodule path 'Tools/flightgear_bridge/models/Rascal': checked out 'cbdb2fc7dd44331da1dcd04a891ed7f8c27b1ef0' Submodule path 'Tools/flightgear_bridge/models/TF-G1': checked out 'fdb6dd685f55097230c0eb29aa7e9f5b8d0abf1e' Submodule path 'Tools/flightgear_bridge/models/TF-G2': checked out '99529413531106836f4303c5389928a4fef04b05' Submodule path 'Tools/flightgear_bridge/models/TF-R1': checked out '158e429a0110589b1e2adfe868e166271470e144' Submodule path 'Tools/jMAVSim': checked out '66b764ada522893c05224950aa6268c809f8e48a' Submodule path 'Tools/jMAVSim/jMAVlib': checked out 'c08380767b21938391bec676a43b36b837af9ba4' Submodule path 'Tools/jsbsim_bridge': checked out '68de2cc63ded9a0d6641d45e9eb3ed2b43454cba' Submodule path 'Tools/jsbsim_bridge/models/ATI-Resolution': checked out '40571cd808a204f4062128daeb6bb6db8c134c48' Submodule path 'Tools/jsbsim_bridge/models/Rascal': checked out 'd0d1db1961549e557885002cf9c3cff40cc27be2' Submodule path 'Tools/simulation-ignition': checked out '483193d9b8b89211c3b970c735b4fbb5f724b63a' Submodule path 'Tools/sitl_gazebo': checked out '25138e803ee8525ee5fe4e6d511506e88e3f819c' Submodule path 'Tools/sitl_gazebo/external/OpticalFlow': checked out '28ef45c1fcb532b2bfd54c16b059c6a545143b2f' Submodule path 'Tools/sitl_gazebo/external/OpticalFlow/external/klt_feature_tracker': checked out '9b5b567ae77f93d1ef4d36151529ba2506a46e7a' Submodule path 'platforms/nuttx/NuttX/apps': checked out 'dbcb783671cee8a8c97b5909d9eb818c3864ca93' Submodule path 'platforms/nuttx/NuttX/nuttx': checked out 'c5c7d2b4f26f52f1dfb425ebde83328606b65d4f' Submodule path 'src/drivers/gps/devices': checked out 'fa275c39935e00906d7a691770d2c10f1ea95d3c' Submodule path 'src/drivers/uavcan/libuavcan': checked out '9c09983f737de0dd224d26025f8f439d6d860b27' Submodule path 'src/drivers/uavcan/libuavcan/dsdl': checked out '35c593c6b1a6eefb3310b2c14121d9b66710ecfa' Submodule path 'src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan': checked out 'c58477a644d20ccf95a20c151f3a0402f271c3b8' Submodule path 'src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan/dsdl': checked out 'fd12483ddd4e58242d61d74a163e7aeaa1e0f466' Submodule path 'src/drivers/uavcan_v1/legacy_data_types': checked out '36a01e428b110ff84c8babe5b65667b5e3037d5e' Submodule path 'src/drivers/uavcan_v1/libcanard': checked out '2d449453fc8c4060f276c6dc585d4e1e5bf4fd52' Submodule path 'src/drivers/uavcan_v1/public_regulated_data_types': checked out '0a773b93ce5c94e1d2791b180058cb9897fab7e1' Submodule path 'src/lib/crypto/libtomcrypt': checked out '673f5ce29015a9bba3c96792920a10601b5b0718' Submodule path 'src/lib/crypto/libtommath': checked out 'fd73d7630b9d3ed5a79d613ff680a549e9780de7' Submodule path 'src/lib/crypto/monocypher': checked out 'baca5d31259c598540e4d1284bc8d8f793abf83a' Submodule path 'src/lib/events/libevents': checked out '6329c909a7b16bb6f97c94cbb598815635b94982' Submodule path 'src/lib/events/libevents/libs/cpp/parse/nlohmann_json': checked out '391786c6c3abdd3eeb993a3154f1f2a4cfe137a0' Submodule path 'src/modules/mavlink/mavlink': checked out 'b568a60fca42599d9998434e606f6e38e0b5e298' Submodule path 'src/modules/mavlink/mavlink/pymavlink': checked out 'df6e4d7c37edda3f687bb31db1b3e12a67eab831' Submodule path 'src/modules/micrortps_bridge/micro-CDR': checked out '21d3cfe3ae570d1674da0105ab23b80958e0449a' ````

and build it again:

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl_default -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board -- PLATFORM posix -- ROMFSROOT px4fmu_common -- TESTING y -- ETHERNET y -- PX4 config: px4_sitl_default -- PX4 platform: posix -- PX4 lockstep: enabled -- cmake build type: RelWithDebInfo -- The CXX compiler identification is AppleClang 13.0.0.13000029 -- The C compiler identification is AppleClang 13.0.0.13000029 -- The ASM compiler identification is Clang with GNU-like command-line -- Found assembler: /Library/Developer/CommandLineTools/usr/bin/cc -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Building for code coverage -- ccache enabled (export CCACHE_DISABLE=1 to disable) -- ROMFS: ROMFS/px4fmu_common -- Configuring done -- Generating done -- Build files have been written to: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default [0/845] git submodule src/drivers/gps/devices [8/845] git submodule src/modules/mavlink/mavlink [9/845] Generating Mavlink development: src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/standard.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/standard.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/common.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/common.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/minimal.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/minimal.xml Merged enum MAV_CMD Merged enum MAV_CMD Found 228 MAVLink message types in 4 XML files Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink/development Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink/standard Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink/common Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink/minimal Copying fixed headers for protocol 2.0 to /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink [658/845] Linking CXX static library platforms/common/libpx4_platform.a /Library/Developer/CommandLineTools/usr/bin/ranlib: file: platforms/common/libpx4_platform.a(i2c.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: platforms/common/libpx4_platform.a(spi.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: platforms/common/libpx4_platform.a(i2c.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: platforms/common/libpx4_platform.a(spi.cpp.o) has no symbols [720/845] Linking CXX static library src/lib/bezier/libbezier.a /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/lib/bezier/libbezier.a(BezierQuad.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/lib/bezier/libbezier.a(BezierQuad.cpp.o) has no symbols [738/845] Linking CXX static library src/lib/slew_rate/libSlewRate.a /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/lib/slew_rate/libSlewRate.a(dummy.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/lib/slew_rate/libSlewRate.a(dummy.cpp.o) has no symbols warning: /Library/Developer/CommandLineTools/usr/bin/ranlib: archive library: src/lib/slew_rate/libSlewRate.a the table of contents is empty (no object file members in the library define global symbols) [835/845] Linking CXX static library src/drivers/camera_trigger/libdrivers__camera_trigger.a /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(pwm.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(seagull_map2.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(gpio.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(pwm.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(seagull_map2.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(gpio.cpp.o) has no symbols [845/845] Linking CXX shared library src/examples/dyn_hello/examples__dyn_hello.px4mod mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl_default jmavsim [0/3] git submodule Tools/jMAVSim [2/3] cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/tmp && ...ds/PX4-Autopilot /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default SITL ARGS sitl_bin: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/bin/px4 debugger: none program: jmavsim model: none world: none src_path: /Users/mengchaoheng/Downloads/PX4-Autopilot build_path: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default empty model, setting iris as default SITL COMMAND: "/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/bin/px4" "/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default"/etc -s etc/init.d-posix/rcS -t "/Users/mengchaoheng/Downloads/PX4-Autopilot"/test_data Creating symlink /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/etc -> /Users/mengchaoheng/Download _____ __ __ ___ | ___ \ \ \ / / / | | |_/ / \ V / / /| | | __/ / \ / /_| | | | / /^\ \ \___ | \_| \/ \/ |_/ px4 starting. INFO [px4] Calling startup script: /bin/sh etc/init.d-posix/rcS 0 INFO [init] found model autostart file as SYS_AUTOSTART=10016 INFO [param] selected parameter default file eeprom/parameters_10016 [param] parameter file not found, creating eeprom/parameters_10016 SYS_AUTOCONFIG: curr: 0 -> new: 1 SYS_AUTOSTART: curr: 0 -> new: 10016 CAL_ACC0_ID: curr: 0 -> new: 1310988 CAL_GYRO0_ID: curr: 0 -> new: 1310988 CAL_ACC1_ID: curr: 0 -> new: 1310996 CAL_GYRO1_ID: curr: 0 -> new: 1310996 CAL_ACC2_ID: curr: 0 -> new: 1311004 CAL_GYRO2_ID: curr: 0 -> new: 1311004 * CAL_MAG0_ID: curr: 0 -> new: 197388 * CAL_MAG1_ID: curr: 0 -> new: 197644 * SENS_BOARD_X_OFF: curr: 0.0000 -> new: 0.0000 * SENS_DPRES_OFF: curr: 0.0000 -> new: 0.0010 * SYS_AUTOCONFIG: curr: 1 -> new: 0 * IMU_INTEG_RATE: curr: 200 -> new: 250 INFO [dataman] data manager file './dataman' size is 7866640 bytes PX4 SIM HOST: localhost INFO [simulator] Waiting for simulator to accept connection on TCP port 4560 Buildfile: /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jMAVSim/build.xml make_dirs: [mkdir] Created dir: /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jMAVSim/out/production/jMAVSim compile: [javac] Compiling 76 source files to /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jMAVSim/out/production/jMAVSim create_run_jar: [jar] Building jar: /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jMAVSim/out/production/jmavsim_run.jar copy_res: [copy] Copying 22 files to /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jMAVSim/out/production BUILD SUCCESSFUL Total time: 5 seconds Exception in thread "main" java.lang.UnsupportedClassVersionError: me/drton/jmavsim/Simulator has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 58.0 at java.base/java.lang.ClassLoader.defineClass1(Native Method) at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1017) at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:151) at java.base/java.net.URLClassLoader.defineClass(URLClassLoader.java:514) at java.base/java.net.URLClassLoader$1.run(URLClassLoader.java:422) at java.base/java.net.URLClassLoader$1.run(URLClassLoader.java:416) at java.base/java.security.AccessController.doPrivileged(AccessController.java:691) at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:415) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:589) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522) at java.base/java.lang.Class.forName0(Native Method) at java.base/java.lang.Class.forName(Class.java:427) at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoader.java:59) ^CERROR [px4] Startup script returned with return value: 2 /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_run.sh: line 258: kill: (43944) - No such process ninja: build stopped: interrupted by user. make: *** [px4_sitl_default] Interrupt: 2 ```

mengchaoheng commented 2 years ago

try to fix:

CLICK ME

``` Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % brew install --cask adoptopenjdk16 Running `brew update --preinstall`... ==> Homebrew is run entirely by unpaid volunteers. Please consider donating: https://github.com/Homebrew/brew#donations ==> Auto-updated Homebrew! Updated 1 tap (homebrew/core). ==> Updated Formulae Updated 4 formulae. ==> Downloading https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16.0.1%2B9/OpenJDK16U-jdk_x64_mac_hotspot_16.0.1_9.pkg ==> Downloading from https://objects.githubusercontent.com/github-production-release-asset-2e65be/271810455/6e35ef00-a41c-11eb-935d-d66cca38eed4?X-Amz-Algorithm=AWS4-HMAC ######################################################################## 100.0% ==> Installing Cask adoptopenjdk16 ==> Running installer for adoptopenjdk16; your password may be necessary. Package installers may write to any location; options such as `--appdir` are ignored. Password: installer: Package name is AdoptOpenJDK installer: Installing at base path / installer: The install was successful. package-id: net.adoptopenjdk.16.jdk version: 16.0.1+9 volume: / location: install-time: 1645981733 🍺 adoptopenjdk16 was successfully installed! mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_sitl_default jmavsim [0/1] cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/tmp && ...ds/PX4-Autopilot /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default SITL ARGS sitl_bin: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/bin/px4 debugger: none program: jmavsim model: none world: none src_path: /Users/mengchaoheng/Downloads/PX4-Autopilot build_path: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default empty model, setting iris as default SITL COMMAND: "/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/bin/px4" "/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default"/etc -s etc/init.d-posix/rcS -t "/Users/mengchaoheng/Downloads/PX4-Autopilot"/test_data Creating symlink /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/etc -> /Users/mengchaoheng/Download _____ __ __ ___ | ___ \ \ \ / / / | | |_/ / \ V / / /| | | __/ / \ / /_| | | | / /^\ \ \___ | \_| \/ \/ |_/ px4 starting. INFO [px4] Calling startup script: /bin/sh etc/init.d-posix/rcS 0 INFO [init] found model autostart file as SYS_AUTOSTART=10016 INFO [param] selected parameter default file eeprom/parameters_10016 [param] parameter file not found, creating eeprom/parameters_10016 SYS_AUTOCONFIG: curr: 0 -> new: 1 SYS_AUTOSTART: curr: 0 -> new: 10016 CAL_ACC0_ID: curr: 0 -> new: 1310988 CAL_GYRO0_ID: curr: 0 -> new: 1310988 CAL_ACC1_ID: curr: 0 -> new: 1310996 CAL_GYRO1_ID: curr: 0 -> new: 1310996 CAL_ACC2_ID: curr: 0 -> new: 1311004 CAL_GYRO2_ID: curr: 0 -> new: 1311004 * CAL_MAG0_ID: curr: 0 -> new: 197388 * CAL_MAG1_ID: curr: 0 -> new: 197644 * SENS_BOARD_X_OFF: curr: 0.0000 -> new: 0.0000 * SENS_DPRES_OFF: curr: 0.0000 -> new: 0.0010 Buildfile: /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/jMAVSim/build.xml * SYS_AUTOCONFIG: curr: 1 -> new: 0 * IMU_INTEG_RATE: curr: 200 -> new: 250 INFO [dataman] data manager file './dataman' size is 7866640 bytes PX4 SIM HOST: localhost INFO [simulator] Waiting for simulator to accept connection on TCP port 4560 make_dirs: compile: create_run_jar: copy_res: BUILD SUCCESSFUL Total time: 0 seconds Exception in thread "main" java.lang.UnsupportedClassVersionError: me/drton/jmavsim/Simulator has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 60.0 at java.base/java.lang.ClassLoader.defineClass1(Native Method) at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1010) at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150) at java.base/java.net.URLClassLoader.defineClass(URLClassLoader.java:512) at java.base/java.net.URLClassLoader$1.run(URLClassLoader.java:420) at java.base/java.net.URLClassLoader$1.run(URLClassLoader.java:414) at java.base/java.security.AccessController.doPrivileged(AccessController.java:691) at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:413) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:586) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:519) at java.base/java.lang.Class.forName0(Native Method) at java.base/java.lang.Class.forName(Class.java:466) at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoader.java:59) ^[[A^[[B^[[B^[[B^CERROR [px4] Startup script returned with return value: 2 /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_run.sh: line 258: kill: (45814) - No such process ninja: build stopped: interrupted by user. make: *** [px4_sitl_default] Interrupt: 2 ```

mengchaoheng commented 2 years ago

now It can build in "make px4_sitl_defult'', but "make px4_sitl_default jmavsim" fail. @dagar

dagar commented 2 years ago

now It can build in "make px4_sitl_defult'', but "make px4_sitl_default jmavsim" fail. @dagar

Sorry, I'm less sure about the core problem there (java issues).

Exception in thread "main" java.lang.UnsupportedClassVersionError: me/drton/jmavsim/Simulator has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 60.0

Try make distclean and then building again. It looks like you might still have the jmavsim build from before you ran brew install --cask adoptopenjdk16.

FYI I'm editing your posts to put the console output in "code blocks" to make them readable. https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks

mengchaoheng commented 2 years ago

"Try make distclean and then building again. " it doesn't work. @dagar

mengchaoheng commented 2 years ago

I try gazebo simulation, but:

mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % brew unlink tbb
Error: No such keg: /usr/local/Cellar/tbb

dagar commented 2 years ago

@ThomasDebrunner are you successfully running jmavsim or sitl_gazebo on an M1 macbook?

mengchaoheng commented 2 years ago

now it work! As a summary, for a new m1 mac, brew install px4-sim-jmavsim doesn't work, and the video in

https://docs.px4.io/master/en/dev_setup/dev_env_mac.html

is out of date. The following directives are important: 1 brew install --cask temurin. 2./Tools/setup/macos.sh.

mengchaoheng commented 2 years ago

make px4_sitl jmavsim work now, but make px4_fmu-v5 fail, I don't know why:

CLICK ME

```Console mengchaoheng@mengchaohengdeMacBook-Pro PX4-Autopilot % make px4_fmu-v5 -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/fmu-v5/default.px4board -- PLATFORM nuttx -- TOOLCHAIN arm-none-eabi -- ARCHITECTURE cortex-m7 -- ROMFSROOT px4fmu_common -- IO px4_io-v2_default -- SERIAL_GPS1 /dev/ttyS0 -- SERIAL_TEL1 /dev/ttyS1 -- SERIAL_TEL2 /dev/ttyS2 -- SERIAL_TEL4 /dev/ttyS3 -- UAVCAN_INTERFACES 2 -- UAVCAN_TIMER_OVERRIDE 6 -- PX4 config: px4_fmu-v5_default -- PX4 platform: nuttx -- cmake build type: MinSizeRel -- The CXX compiler identification is GNU 9.3.1 -- The C compiler identification is GNU 9.3.1 -- The ASM compiler identification is GNU -- Found assembler: /usr/local/bin/arm-none-eabi-gcc -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /usr/local/bin/arm-none-eabi-g++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /usr/local/bin/arm-none-eabi-gcc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Enabling double FP precision hardware instructions -- ccache enabled (export CCACHE_DISABLE=1 to disable) -- drivers/px4io: ROMFS including px4_io-v2_default CMake Deprecation Warning at src/drivers/uavcan/libuavcan/CMakeLists.txt:5 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. Update the VERSION argument value or use a ... suffix to tell CMake that the project does not need compatibility with older versions. CMake Deprecation Warning at src/drivers/uavcan/libuavcan/libuavcan/CMakeLists.txt:5 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. Update the VERSION argument value or use a ... suffix to tell CMake that the project does not need compatibility with older versions. -- Found PythonInterp: /usr/local/bin/python3 (found version "3.9.10") -- Using C++11 -- Release build type: MinSizeRel -- ROMFS: ROMFS/px4fmu_common -- ROMFS: Adding platforms/nuttx/init/stm32f7/rc.board_arch_defaults -> /etc/init.d/rc.board_arch_defaults -- ROMFS: Adding boards/px4/fmu-v5/init/rc.board_defaults -> /etc/init.d/rc.board_defaults -- ROMFS: Adding boards/px4/fmu-v5/init/rc.board_sensors -> /etc/init.d/rc.board_sensors -- ROMFS: Adding boards/px4/fmu-v5/extras/px4_fmu-v5_bootloader.bin -> /etc/extras/px4_fmu-v5_bootloader.bin -- ROMFS: Adding boards/px4/fmu-v5/extras/px4_io-v2_default.bin -> /etc/extras/px4_io-v2_default.bin -- Configuring done -- Generating done -- Build files have been written to: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_fmu-v5_default [0/1124] git submodule src/drivers/gps/devices [9/1124] git submodule src/modules/mavlink/mavlink [13/1124] git submodule src/drivers/uavcan/libuavcan [15/1124] Generating Mavlink development: src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/standard.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/standard.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/common.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/common.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/minimal.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/minimal.xml Merged enum MAV_CMD Merged enum MAV_CMD Found 228 MAVLink message types in 4 XML files Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_fmu-v5_default/mavlink/development Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_fmu-v5_default/mavlink/standard Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_fmu-v5_default/mavlink/common Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_fmu-v5_default/mavlink/minimal Copying fixed headers for protocol 2.0 to /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_fmu-v5_default/mavlink [18/1124] git submodule platforms/nuttx/NuttX/nuttx [1122/1124] Linking CXX executable px4_fmu-v5_default.elf FAILED: px4_fmu-v5_default.elf : && /usr/local/bin/arm-none-eabi-g++ -mcpu=cortex-m7 -mthumb -mfpu=fpv5-d16 -mfloat-abi=hard -Os -DNDEBUG --specs=nosys.specs platforms/nuttx/CMakeFiles/px4.dir/__/common/empty.c.obj -o px4_fmu-v5_default.elf -L/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_fmu-v5_default/external/Install/lib -nostartfiles -nodefaultlibs -nostdlib -nostdinc++ -fno-exceptions -fno-rtti -Wl,--script=/Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/fmu-v5/nuttx-config/scripts/script.ld -Wl,-Map=px4_fmu-v5_default.map -Wl,--warn-common -Wl,--gc-sections -Wl,--start-group NuttX/nuttx/boards/libboards.a NuttX/nuttx/drivers/libdrivers.a NuttX/nuttx/fs/libfs.a NuttX/nuttx/sched/libsched.a NuttX/nuttx/crypto/libcrypto.a NuttX/nuttx/binfmt/libbinfmt.a NuttX/nuttx/libs/libxx/libxx.a NuttX/apps/libapps.a NuttX/nuttx/arch/arm/src/libarch.a NuttX/nuttx/mm/libmm.a NuttX/nuttx/libs/libc/libc.a -Wl,--end-group -lm -lgcc -Wl,--print-memory-usage src/drivers/adc/ads1115/libdrivers__ads1115.a src/drivers/adc/board_adc/libdrivers__board_adc.a src/drivers/barometer/bmp280/libdrivers__barometer__bmp280.a src/drivers/barometer/bmp388/libdrivers__barometer__bmp388.a src/drivers/barometer/dps310/libdrivers__barometer__dps310.a src/drivers/barometer/lps22hb/libdrivers__barometer__lps22hb.a src/drivers/barometer/lps33hw/libdrivers__barometer__lps33hw.a src/drivers/barometer/maiertek/mpc2520/libdrivers__maiertek__mpc2520.a src/drivers/barometer/ms5611/libdrivers__barometer__ms5611.a src/drivers/batt_smbus/libdrivers__batt_smbus.a src/drivers/camera_capture/libdrivers__camera_capture.a src/drivers/camera_trigger/libdrivers__camera_trigger.a src/drivers/differential_pressure/ets/libdrivers__ets_airspeed.a src/drivers/differential_pressure/ms4525/libdrivers__ms4525_airspeed.a src/drivers/differential_pressure/ms5525/libdrivers__ms5525_airspeed.a src/drivers/differential_pressure/sdp3x/libdrivers__sdp3x_airspeed.a src/drivers/distance_sensor/cm8jl65/libdrivers__cm8jl65.a src/drivers/distance_sensor/gy_us42/libdrivers__distance_sensor__gy_us42.a src/drivers/distance_sensor/leddar_one/libdrivers__distance_sensor__leddar_one.a src/drivers/distance_sensor/lightware_laser_i2c/libdrivers__distance_sensor__lightware_laser_i2c.a src/drivers/distance_sensor/lightware_laser_serial/libdrivers__distance_sensor__lightware_laser_serial.a src/drivers/distance_sensor/ll40ls/libdrivers__ll40ls.a src/drivers/distance_sensor/ll40ls_pwm/libdrivers__ll40ls_pwm.a src/drivers/distance_sensor/mappydot/libdrivers__mappydot.a src/drivers/distance_sensor/mb12xx/libdrivers__mb12xx.a src/drivers/distance_sensor/pga460/libdrivers__pga460.a src/drivers/distance_sensor/srf02/libdrivers__distance_sensor__srf02.a src/drivers/distance_sensor/teraranger/libdrivers__distance_sensor__teraranger.a src/drivers/distance_sensor/tfmini/libdrivers__tfmini.a src/drivers/distance_sensor/ulanding_radar/libdrivers__distance_sensor__ulanding_radar.a src/drivers/distance_sensor/vl53l0x/libdrivers__distance_sensor__vl53l0x.a src/drivers/distance_sensor/vl53l1x/libdrivers__distance_sensor__vl53l1x.a src/drivers/dshot/libdrivers__dshot.a src/drivers/gps/libdrivers__gps.a src/drivers/heater/libdrivers__heater.a src/drivers/hygrometer/sht3x/libdrivers__hygrometer__sht3x.a src/drivers/imu/analog_devices/adis16448/libdrivers__imu__analog_devices__adis16448.a src/drivers/imu/bosch/bmi055/libdrivers__imu__bosch__bmi055.a src/drivers/imu/invensense/icm20602/libdrivers__imu__invensense__icm20602.a src/drivers/imu/invensense/icm20689/libdrivers__imu__invensense__icm20689.a src/drivers/imu/invensense/icm20948/libdrivers__imu__invensense__icm20948.a src/drivers/imu/invensense/icm20948/libdrivers__imu__invensense__icm20948_i2c_passthrough.a src/drivers/irlock/libdrivers__irlock.a src/drivers/lights/rgbled/libdrivers__rgbled.a src/drivers/lights/rgbled_ncp5623c/libdrivers__rgbled_ncp5623c.a src/drivers/lights/rgbled_pwm/libdrivers__rgbled_pwm.a src/drivers/magnetometer/akm/ak09916/libdrivers__magnetometer__akm__ak09916.a src/drivers/magnetometer/akm/ak8963/libdrivers__magnetometer__akm__ak8963.a src/drivers/magnetometer/bosch/bmm150/libdrivers__magnetometer__bosch__bmm150.a src/drivers/magnetometer/hmc5883/libdrivers__hmc5883.a src/drivers/magnetometer/isentek/ist8308/libdrivers__magnetometer__isentek__ist8308.a src/drivers/magnetometer/isentek/ist8310/libdrivers__magnetometer__isentek__ist8310.a src/drivers/magnetometer/lis2mdl/libdrivers__lis2mdl.a src/drivers/magnetometer/lis3mdl/libdrivers__magnetometer__lis3mdl.a src/drivers/magnetometer/lsm303agr/libdrivers__magnetometer__lsm303agr.a src/drivers/magnetometer/qmc5883l/libdrivers__magnetometer__qmc5883l.a src/drivers/magnetometer/rm3100/libdrivers__rm3100.a src/drivers/magnetometer/vtrantech/vcm1193l/libdrivers__magnetometer__vcm1193l.a src/drivers/optical_flow/paw3902/libdrivers__optical_flow__paw3902.a src/drivers/optical_flow/pmw3901/libdrivers__optical_flow__pmw3901.a src/drivers/optical_flow/px4flow/libdrivers__px4flow.a src/drivers/optical_flow/thoneflow/libdrivers__thoneflow.a src/drivers/osd/atxxxx/libdrivers__atxxxx.a src/drivers/pca9685/libdrivers__pca9685.a src/drivers/pca9685_pwm_out/libdrivers__pca9685_pwm_out.a src/drivers/power_monitor/ina226/libdrivers__ina226.a src/drivers/pwm_input/libdrivers__pwm_input.a src/drivers/pwm_out/libdrivers__pwm_out.a src/drivers/pwm_out_sim/libdrivers__pwm_out_sim.a src/drivers/px4io/libdrivers__px4io.a src/drivers/rc_input/libdrivers__rc_input.a src/drivers/roboclaw/libdrivers__roboclaw.a src/drivers/rpm/pcf8583/libdrivers__pcf8583.a src/drivers/safety_button/libdrivers__safety_button.a src/drivers/smart_battery/batmon/libdrivers__batmon.a src/drivers/telemetry/bst/libdrivers__bst.a src/drivers/telemetry/frsky_telemetry/libdrivers__frsky_telemetry.a src/drivers/telemetry/hott/hott_sensors/libdrivers__hott__hott_sensors.a src/drivers/telemetry/hott/hott_telemetry/libdrivers__hott__hott_telemetry.a src/drivers/tone_alarm/libdrivers__tone_alarm.a src/drivers/uavcan/libdrivers__uavcan.a src/modules/airspeed_selector/libmodules__airspeed_selector.a src/modules/attitude_estimator_q/libmodules__attitude_estimator_q.a src/modules/battery_status/libmodules__battery_status.a src/modules/camera_feedback/libmodules__camera_feedback.a src/modules/commander/libmodules__commander.a src/modules/control_allocator/libmodules__control_allocator.a src/modules/dataman/libmodules__dataman.a src/modules/ekf2/libmodules__ekf2.a src/modules/esc_battery/libmodules__esc_battery.a src/modules/events/libmodules__events.a src/modules/flight_mode_manager/libmodules__flight_mode_manager.a src/modules/fw_att_control/libmodules__fw_att_control.a src/modules/fw_autotune_attitude_control/libfw_autotune_attitude_control.a src/modules/fw_pos_control_l1/libmodules__fw_pos_control_l1.a src/modules/gimbal/libdrivers__gimbal.a src/modules/gyro_calibration/libmodules__gyro_calibration.a src/modules/gyro_fft/libmodules__gyro_fft.a src/modules/land_detector/libmodules__land_detector.a src/modules/landing_target_estimator/libmodules__landing_target_estimator.a src/modules/load_mon/libmodules__load_mon.a src/modules/local_position_estimator/libmodules__local_position_estimator.a src/modules/logger/libmodules__logger.a src/modules/mag_bias_estimator/libmodules__mag_bias_estimator.a src/modules/manual_control/libmodule__manual_control.a src/modules/mavlink/libmodules__mavlink.a src/modules/mc_att_control/libmodules__mc_att_control.a src/modules/mc_autotune_attitude_control/libmc_autotune_attitude_control.a src/modules/mc_hover_thrust_estimator/libmodules__mc_hover_thrust_estimator.a src/modules/mc_pos_control/libmodules__mc_pos_control.a src/modules/mc_rate_control/libmodules__mc_rate_control.a src/modules/navigator/libmodules__navigator.a src/modules/rc_update/libmodules__rc_update.a src/modules/rover_pos_control/libmodules__rover_pos_control.a src/modules/sensors/libmodules__sensors.a src/modules/sih/libmodules__sih.a src/modules/temperature_compensation/libmodules__temperature_compensation.a src/modules/uuv_att_control/libmodules__uuv_att_control.a src/modules/uuv_pos_control/libmodules__uuv_pos_control.a src/modules/vtol_att_control/libmodules__vtol_att_control.a src/systemcmds/actuator_test/libsystemcmds__actuator_test.a src/systemcmds/bl_update/libsystemcmds__bl_update.a src/systemcmds/dmesg/libsystemcmds__dmesg.a src/systemcmds/dumpfile/libsystemcmds__dumpfile.a src/systemcmds/gpio/libsystemcmds__gpio.a src/systemcmds/hardfault_log/libsystemcmds__hardfault_log.a src/systemcmds/i2cdetect/libsystemcmds__i2cdetect.a src/systemcmds/led_control/libsystemcmds__led_control.a src/systemcmds/mft/libsystemcmds__mft.a src/systemcmds/mixer/libsystemcmds__mixer.a src/systemcmds/motor_test/libsystemcmds__motor_test.a src/systemcmds/mtd/libsystemcmds__mtd.a src/systemcmds/nshterm/libsystemcmds__nshterm.a src/systemcmds/param/libsystemcmds__param.a src/systemcmds/perf/libsystemcmds__perf.a src/systemcmds/pwm/libsystemcmds__pwm.a src/systemcmds/reboot/libsystemcmds__reboot.a src/systemcmds/reflect/libsystemcmds__reflect.a src/systemcmds/sd_bench/libsystemcmds__sd_bench.a src/systemcmds/sd_stress/libsystemcmds__sd_stress.a src/systemcmds/serial_test/libsystemcmds__serial_test.a src/systemcmds/system_time/libsystemcmds__system_time.a src/systemcmds/top/libsystemcmds__top.a src/systemcmds/topic_listener/libsystemcmds__topic_listener.a src/systemcmds/tune_control/libsystemcmds__tune_control.a src/systemcmds/uorb/libsystemcmds__uorb.a src/systemcmds/usb_connected/libsystemcmds__usb_connected.a src/systemcmds/ver/libsystemcmds__ver.a src/systemcmds/work_queue/libsystemcmds__work_queue.a src/examples/fake_gps/libmodules__fake_gps.a ROMFS/libromfs.a src/lib/drivers/airspeed/libdrivers__airspeed.a platforms/nuttx/src/px4/stm/stm32f7/dshot/libarch_dshot.a platforms/nuttx/src/px4/stm/stm32f7/led_pwm/libarch_led_pwm.a platforms/nuttx/src/px4/stm/stm32f7/io_pins/libarch_io_pins.a platforms/nuttx/src/px4/stm/stm32f7/px4io_serial/libarch_px4io_serial.a src/lib/rc/librc.a src/lib/drivers/smbus/libdrivers__smbus.a src/lib/drivers/smbus_sbs/libdrivers__smbus_sbs.a src/drivers/telemetry/hott/libdrivers__hott.a platforms/nuttx/src/px4/stm/stm32f7/tone_alarm/libarch_tone_alarm.a src/lib/drivers/rangefinder/libdrivers_rangefinder.a src/lib/mixer_module/libmixer_module.a src/lib/led/libled.a src/drivers/uavcan/libuavcan_drivers/libuavcan_stm32_driver.a src/drivers/uavcan/libuavcan/libuavcan/libuavcan.a src/lib/wind_estimator/libwind_estimator.a src/modules/commander/failure_detector/libfailure_detector.a src/modules/commander/Arming/PreFlightCheck/libPreFlightCheck.a src/modules/commander/Arming/ArmAuthorization/libArmAuthorization.a src/modules/commander/Arming/HealthFlags/libHealthFlags.a src/modules/control_allocator/ActuatorEffectiveness/libActuatorEffectiveness.a src/modules/control_allocator/ControlAllocation/libControlAllocation.a src/lib/world_magnetic_model/libworld_magnetic_model.a src/modules/ekf2/Utility/libEKF2Utility.a src/lib/battery/libbattery.a src/lib/weather_vane/libWeatherVane.a src/modules/flight_mode_manager/tasks/AutoFollowMe/libFlightTaskAutoFollowMe.a src/modules/flight_mode_manager/tasks/Auto/libFlightTaskAuto.a src/lib/avoidance/libavoidance.a src/modules/flight_mode_manager/tasks/Descend/libFlightTaskDescend.a src/modules/flight_mode_manager/tasks/Failsafe/libFlightTaskFailsafe.a src/modules/flight_mode_manager/tasks/ManualAcceleration/libFlightTaskManualAcceleration.a src/modules/flight_mode_manager/tasks/ManualPositionSmoothVel/libFlightTaskManualPositionSmoothVel.a src/modules/flight_mode_manager/tasks/ManualPosition/libFlightTaskManualPosition.a src/lib/collision_prevention/libCollisionPrevention.a src/modules/flight_mode_manager/tasks/Transition/libFlightTaskTransition.a src/modules/flight_mode_manager/tasks/Orbit/libFlightTaskOrbit.a src/modules/flight_mode_manager/tasks/ManualAltitudeSmoothVel/libFlightTaskManualAltitudeSmoothVel.a src/modules/flight_mode_manager/tasks/ManualAltitude/libFlightTaskManualAltitude.a src/modules/flight_mode_manager/tasks/Utility/libFlightTaskUtility.a src/modules/flight_mode_manager/tasks/FlightTask/libFlightTask.a src/lib/bezier/libbezier.a src/modules/fw_pos_control_l1/launchdetection/liblaunchdetection.a src/lib/npfg/libnpfg.a src/modules/fw_pos_control_l1/runway_takeoff/librunway_takeoff.a src/lib/tecs/libtecs.a src/modules/mc_att_control/AttitudeControl/libAttitudeControl.a src/lib/system_identification/libSystemIdentification.a src/modules/mc_hover_thrust_estimator/libzero_order_hover_thrust_ekf.a src/lib/slew_rate/libSlewRate.a src/lib/controllib/libcontrollib.a src/modules/mc_pos_control/PositionControl/libPositionControl.a src/modules/mc_pos_control/Takeoff/libTakeoff.a src/lib/hysteresis/libhysteresis.a src/modules/mc_rate_control/RateControl/libRateControl.a src/lib/landing_slope/liblanding_slope.a src/lib/motion_planning/libmotion_planning.a src/modules/navigator/GeofenceBreachAvoidance/libgeofence_breach_avoidance.a src/lib/l1/libl1.a src/lib/pid/libpid.a src/lib/airspeed/libairspeed.a src/modules/sensors/data_validator/libdata_validator.a src/modules/sensors/vehicle_acceleration/libvehicle_acceleration.a src/modules/sensors/vehicle_angular_velocity/libvehicle_angular_velocity.a src/modules/sensors/vehicle_air_data/libvehicle_air_data.a src/modules/sensors/vehicle_gps_position/libvehicle_gps_position.a src/lib/geo/libgeo.a src/modules/sensors/vehicle_imu/libvehicle_imu.a src/modules/sensors/vehicle_magnetometer/libvehicle_magnetometer.a src/lib/sensor_calibration/libsensor_calibration.a src/lib/drivers/barometer/libdrivers_barometer.a src/lib/drivers/accelerometer/libdrivers_accelerometer.a src/lib/drivers/gyroscope/libdrivers_gyroscope.a src/lib/drivers/magnetometer/libdrivers_magnetometer.a src/lib/conversion/libconversion.a src/lib/mathlib/libmathlib.a src/lib/mixer/libmixer.a src/lib/mixer/HelicopterMixer/libHelicopterMixer.a src/lib/mixer/MultirotorMixer/libMultirotorMixer.a src/lib/mixer/NullMixer/libNullMixer.a src/lib/mixer/SimpleMixer/libSimpleMixer.a src/lib/mixer/MixerBase/libMixerBase.a src/lib/tunes/libtunes.a src/lib/circuit_breaker/libcircuit_breaker.a src/lib/version/libversion.a src/lib/parameters/libparameters.a src/lib/parameters/tinybson/libtinybson.a src/lib/parameters/flashparams/libflashparams.a platforms/common/libpx4_platform.a src/lib/systemlib/libsystemlib.a src/lib/perf/libperf.a NuttX/nuttx/arch/arm/src/libarch.a boards/px4/fmu-v5/src/libdrivers_board.a platforms/nuttx/src/px4/stm/stm32f7/board_reset/libarch_board_reset.a platforms/nuttx/src/px4/common/libpx4_layer.a src/lib/drivers/device/libdrivers__device.a platforms/nuttx/src/px4/stm/stm32f7/spi/libarch_spi.a src/lib/drivers/led/libdrivers__led.a NuttX/nuttx/arch/arm/src/libarch.a boards/px4/fmu-v5/src/libdrivers_board.a platforms/nuttx/src/px4/stm/stm32f7/board_reset/libarch_board_reset.a platforms/nuttx/src/px4/common/libpx4_layer.a src/lib/drivers/device/libdrivers__device.a platforms/nuttx/src/px4/stm/stm32f7/spi/libarch_spi.a src/lib/drivers/led/libdrivers__led.a platforms/nuttx/src/px4/stm/stm32f7/hrt/libarch_hrt.a platforms/nuttx/src/px4/stm/stm32f7/board_hw_info/libarch_board_hw_info.a platforms/nuttx/src/px4/stm/stm32f7/adc/libarch_adc.a NuttX/nuttx/mm/libmm.a platforms/nuttx/src/px4/stm/stm32f7/board_critmon/libarch_board_critmon.a platforms/nuttx/src/px4/stm/stm32f7/version/libarch_version.a platforms/common/uORB/libuORB.a src/lib/cdev/libcdev.a NuttX/nuttx/fs/libfs.a msg/libuorb_msgs.a platforms/common/px4_work_queue/libpx4_work_queue.a NuttX/nuttx/libs/libxx/libxx.a NuttX/nuttx/drivers/libdrivers.a NuttX/nuttx/libs/libc/libc.a NuttX/nuttx/drivers/libdrivers.a NuttX/nuttx/libs/libc/libc.a NuttX/nuttx/sched/libsched.a -lm -lgcc && : /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/stm/stm32f7/spi/libarch_spi.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find src/lib/drivers/led/libdrivers__led.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/arch/arm/src/libarch.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find boards/px4/fmu-v5/src/libdrivers_board.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/stm/stm32f7/board_reset/libarch_board_reset.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/common/libpx4_layer.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find src/lib/drivers/device/libdrivers__device.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/stm/stm32f7/spi/libarch_spi.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find src/lib/drivers/led/libdrivers__led.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/stm/stm32f7/hrt/libarch_hrt.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/stm/stm32f7/board_hw_info/libarch_board_hw_info.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/stm/stm32f7/adc/libarch_adc.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/mm/libmm.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/stm/stm32f7/board_critmon/libarch_board_critmon.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/nuttx/src/px4/stm/stm32f7/version/libarch_version.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/common/uORB/libuORB.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find src/lib/cdev/libcdev.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/fs/libfs.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find msg/libuorb_msgs.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find platforms/common/px4_work_queue/libpx4_work_queue.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/libs/libxx/libxx.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/drivers/libdrivers.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/libs/libc/libc.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/drivers/libdrivers.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/libs/libc/libc.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find NuttX/nuttx/sched/libsched.a: Too many open files /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find -lm /usr/local/Cellar/gcc-arm-none-eabi/20200630/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/bin/ld: cannot find -lgcc collect2: error: ld returned 1 exit status ninja: build stopped: subcommand failed. make: *** [px4_fmu-v5] Error 1 ```

dagar commented 2 years ago

"Too many open files" is a Mac specific problem. Try setting a larger value like ulimit -n 10240. https://discussions.apple.com/thread/251000125

mengchaoheng commented 2 years ago

https://discussions.apple.com/thread/251000125

I don't really understand what it mean, can you tell me how to operator?

mengchaoheng commented 2 years ago

it work now, by :

brew install --cask temurin

https://discussions.apple.com/thread/251000125

I don't really understand what it mean, can you tell me how to operator?

get it, the step is :

  1. in terminal "vi ~/.zshenv" Create the file and add "ulimit -S -n 2048" 2.in terminal ". ~/.zshenv" to use it, then
  2. in terminal " make px4_fmu-v5"
ThomasDebrunner commented 2 years ago

@ThomasDebrunner are you successfully running jmavsim or sitl_gazebo on an M1 macbook?

With x86 emulation (rosetta terminal) everything works fine (emulated). Natively, PX4 with jmavsim works when using this branch for jmavsim: https://github.com/PX4/jMAVSim/pull/132 Not sure about gazebo

mengchaoheng commented 2 years ago

On m1 macbook, make px4_sitl gazebo fail. jmavsim and fmu-vx work good

mengchaoheng commented 2 years ago

@ThomasDebrunner are you successfully running jmavsim or sitl_gazebo on an M1 macbook?

With x86 emulation (rosetta terminal) everything works fine (emulated). Natively, PX4 with jmavsim works when using this branch for jmavsim: PX4/jMAVSim#132 Not sure about gazebo

PX4 with jmavsim work good but the pages {https://docs.px4.io/master/en/dev_setup/dev_env_mac.html} is out of the date

mengchaoheng commented 2 years ago

I clean the page, maybe can help a new m1 Developer. @dagar

mengchaoheng commented 2 years ago

Issues that remain unresolved on the m1 MacBook are:

  1. sitl with gazebo
  2. in arm-based ubuntu VM on m1, the Ubuntu Development Environment didn't work. @ThomasDebrunner @dagar
ThomasDebrunner commented 2 years ago

I never tried the dev environment on arm ubuntu. I'd expect that at least the compilers for the embedded targets won't work, as these binaries are x86 only. On mac, they (automatically) run on rosetta emulation

mengchaoheng commented 2 years ago

I never tried the dev environment on arm ubuntu. I'd expect that at least the compilers for the embedded targets won't work, as these binaries are x86 only. On mac, they (automatically) run on rosetta emulation

Any idea for gazebo sitl on m1 mac?

mengchaoheng commented 2 years ago

I fix it, by reinstall ffmpeg

CLICK ME

```Console mengchaoheng@MCH-MBP ~ % brew list ==> Formulae ampl-mp libnice ant libogg aom libpng assimp libpsl astyle libpthread-stubs atk libreplaygain bash-completion librist bdw-gc librsvg boost libsamplerate brotli libshout bullet libsndfile ca-certificates libsodium cairo libsoup@2 ccache libsoxr ceres-solver libtar cjson libtasn1 cmake libtiff cmake@3.21.4 libtool cmocka libunistring console_bridge libusrsctp cppzmq libvidstab dartsim libvmaf dav1d libvorbis double-conversion libvpx doxygen libx11 eigen libxau exiftool libxcb faac libxdmcp faad2 libxext fastcdr libxrender fastrtps libyaml fcl libzip ffmpeg@4 libzzip flac little-cms2 flann lz4 flock lzo fontconfig m4 freeimage mbedtls freetype metis frei0r mpdecimal fribidi mpfr gazebo11 musepack gcc netcdf gcc-arm-none-eabi netpbm gd nettle gdbm ninja gdk-pixbuf nlopt genromfs numpy gettext octomap gflags ode giflib ogre1.9 git open-scene-graph gl2ps openblas glew opencore-amr glib opencv glib-networking openexr glog openjdk gmp openjpeg gnutls openssl@1.1 gobject-introspection opus graphene orc graphite2 ossp-uuid graphviz p11-kit gsettings-desktop-schemas pango gst-libav pcre gst-plugins-bad pcre2 gst-plugins-base pixman gst-plugins-good pkg-config gst-plugins-ugly protobuf gstreamer protobuf-c gtk+ pugixml gtk+3 px4-dev gtkglext px4-sim-gazebo gts px4-sim-jmavsim guile pyqt@5 harfbuzz python@3.9 hdf5 qt@5 hicolor-icon-theme qwt-qt5 hiredis rav1e icu4c readline ignition-cmake0 rtmpdump ignition-cmake2 rubberband ignition-common1 ruby ignition-common3 sdformat6 ignition-fuel-tools1 sdformat9 ignition-fuel-tools4 sdl2 ignition-math4 simbody ignition-math6 six ignition-msgs1 snappy ignition-msgs5 speex ignition-tools sqlite ignition-transport4 srt ignition-transport8 srtp imath suite-sparse ipopt szip isl taglib jasper tbb jpeg tbb@2020 jpeg-turbo tbb@2020_u3 jpeg-xl tesseract jsoncpp theora kconfig-frontends tinyxml lame tinyxml2 leptonica unbound libarchive urdfdom libass urdfdom_headers libavif utf8cpp libb2 vtk libbluray webp libccd x264 libcuefile x265 libepoxy xorgproto libevent xvid libffi xz libidn2 zeromq libmms zimg libmpc zstd libnghttp2 ==> Casks adoptopenjdk14 adoptopenjdk16 temurin xquartz mengchaoheng@MCH-MBP ~ % brew uninstall ffmpeg Error: No such keg: /usr/local/Cellar/ffmpeg mengchaoheng@MCH-MBP ~ % brew uninstall ffmpeg@4 Error: Refusing to uninstall /usr/local/Cellar/ffmpeg@4/4.4.1 because it is required by gazebo11, gst-libav, ignition-common1, ignition-common3, ignition-fuel-tools1, ignition-fuel-tools4, opencv and px4-sim-gazebo, which are currently installed. You can override this and force removal with: brew uninstall --ignore-dependencies ffmpeg@4 mengchaoheng@MCH-MBP ~ % ls Applications (Parallels) Music Desktop Parallels Documents Pictures Downloads Public Library Zotero Movies mengchaoheng@MCH-MBP ~ % echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/opt/X11/bin mengchaoheng@MCH-MBP ~ % ffmpeg@4 --version zsh: command not found: ffmpeg@4 mengchaoheng@MCH-MBP ~ % /usr/local/Cellar/ffmpeg@4/4.4. --version zsh: no such file or directory: /usr/local/Cellar/ffmpeg@4/4.4. mengchaoheng@MCH-MBP ~ % /usr/local/Cellar/ffmpeg --version zsh: no such file or directory: /usr/local/Cellar/ffmpeg mengchaoheng@MCH-MBP ~ % /usr/local/Cellar/ffmpeg@4 --version zsh: permission denied: /usr/local/Cellar/ffmpeg@4 mengchaoheng@MCH-MBP ~ % sudo /usr/local/Cellar/ffmpeg@4 --version Password: sudo: /usr/local/Cellar/ffmpeg@4: command not found mengchaoheng@MCH-MBP ~ % cd Downloads/PX4-Autopilot mengchaoheng@MCH-MBP PX4-Autopilot % ls CMakeLists.txt boards CODE_OF_CONDUCT.md build CONTRIBUTING.md cmake CTestConfig.cmake eclipse.cproject Documentation eclipse.project Firmware.sublime-project integrationtests Jenkinsfile launch Kconfig msg LICENSE package.xml Makefile platforms PULL_REQUEST_TEMPLATE.md posix-configs README.md src ROMFS test Tools test_data appveyor.yml validation mengchaoheng@MCH-MBP PX4-Autopilot % make px4_sitl gazebo [0/4] Performing build step for 'sitl_gazebo' [3/64] Building CXX object CMakeFiles/LiftDra...dir/src/liftdrag_plugin/liftdrag_plugin.cpp. FAILED: CMakeFiles/LiftDragPlugin.dir/src/liftdrag_plugin/liftdrag_plugin.cpp.o /usr/local/bin/ccache /Library/Developer/CommandLineTools/usr/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_PROGRAM_OPTIONS_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_TEST_DYN_LINK -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DLIBBULLET_VERSION=3.20 -DLIBBULLET_VERSION_GT_282 -DLiftDragPlugin_EXPORTS -I/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/include -I/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo -I/usr/local/include/eigen3/eigen3 -I/usr/local/include/gazebo-11/gazebo/msgs -I/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink -I/usr/local/include/Paging -I/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/external/OpticalFlow/include -I/usr/local/Cellar/libffi/3.4.2/include -I/usr/local/Cellar/gstreamer/1.18.5/include/gstreamer-1.0 -I/usr/local/Cellar/glib/2.70.4/include -I/usr/local/Cellar/glib/2.70.4/include/glib-2.0 -I/usr/local/Cellar/glib/2.70.4/lib/glib-2.0/include -I/usr/local/opt/gettext/include -I/usr/local/Cellar/pcre/8.45/include -I/usr/local/Cellar/gst-plugins-base/1.18.5/include/gstreamer-1.0 -isystem /usr/local/include -isystem /usr/local/include/gazebo-11 -isystem /usr/local/Cellar/bullet/3.21/include/bullet -isystem /usr/local/Cellar/bullet/3.21/include -isystem /usr/local/include/simbody -isystem /usr/local/Cellar/sdformat9/9.7.0/include/sdformat-9.7 -isystem /usr/local/include/ignition/math6 -isystem /usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/include -isystem /usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/include/OGRE -isystem /usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/include/OGRE/Terrain -isystem /usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/include/OGRE/Paging -isystem /usr/local/include/ignition/transport8 -isystem /usr/local/include/ignition/msgs5 -isystem /usr/local/include/ignition/common3 -isystem /usr/local/include/ignition/fuel_tools4 -iframework /usr/local/opt/qt@5/lib -isystem /usr/local/opt/qt@5/lib/QtCore.framework/Headers -isystem /usr/local/opt/qt@5/./mkspecs/macx-clang -isystem /usr/local/include/eigen3 -isystem /usr/local/Cellar/opencv/4.5.4_4/include/opencv4 -isystem /usr/local/Cellar/fcl/0.7.0/include -isystem /usr/local/Cellar/assimp/5.2.2/include -isystem /usr/local/include/sdformat-9.7/sdf/.. -isystem /usr/local/include/ignition/cmake2 -O2 -g -DNDEBUG -arch x86_64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.1.sdk -fPIC -F/Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/System/Library/Frameworks -Wno-deprecated-declarations -Wno-address-of-packed-member -std=gnu++17 -MD -MT CMakeFiles/LiftDragPlugin.dir/src/liftdrag_plugin/liftdrag_plugin.cpp.o -MF CMakeFiles/LiftDragPlugin.dir/src/liftdrag_plugin/liftdrag_plugin.cpp.o.d -o CMakeFiles/LiftDragPlugin.dir/src/liftdrag_plugin/liftdrag_plugin.cpp.o -c /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/src/liftdrag_plugin/liftdrag_plugin.cpp In file included from /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/src/liftdrag_plugin/liftdrag_plugin.cpp:21: In file included from /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/include/common.h:29: In file included from /usr/local/include/gazebo-11/gazebo/gazebo.hh:20: In file included from /usr/local/include/gazebo-11/gazebo/gazebo_core.hh:19: In file included from /usr/local/include/gazebo-11/gazebo/common/common.hh:53: /usr/local/include/gazebo-11/gazebo/common/ffmpeg_inc.h:32:10: fatal error: 'libavcodec/avcodec.h' file not found #include ^~~~~~~~~~~~~~~~~~~~~~ 1 error generated. [4/64] Building CXX object CMakeFiles/gazebo_...d_plugin.dir/src/gazebo_airspeed_plugin.cpp. FAILED: CMakeFiles/gazebo_airspeed_plugin.dir/src/gazebo_airspeed_plugin.cpp.o /usr/local/bin/ccache /Library/Developer/CommandLineTools/usr/bin/c++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_PROGRAM_OPTIONS_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_TEST_DYN_LINK -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DLIBBULLET_VERSION=3.20 -DLIBBULLET_VERSION_GT_282 -Dgazebo_airspeed_plugin_EXPORTS -I/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/include -I/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo -I/usr/local/include/eigen3/eigen3 -I/usr/local/include/gazebo-11/gazebo/msgs -I/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink -I/usr/local/include/Paging -I/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/external/OpticalFlow/include -I/usr/local/Cellar/libffi/3.4.2/include -I/usr/local/Cellar/gstreamer/1.18.5/include/gstreamer-1.0 -I/usr/local/Cellar/glib/2.70.4/include -I/usr/local/Cellar/glib/2.70.4/include/glib-2.0 -I/usr/local/Cellar/glib/2.70.4/lib/glib-2.0/include -I/usr/local/opt/gettext/include -I/usr/local/Cellar/pcre/8.45/include -I/usr/local/Cellar/gst-plugins-base/1.18.5/include/gstreamer-1.0 -isystem /usr/local/include -isystem /usr/local/include/gazebo-11 -isystem /usr/local/Cellar/bullet/3.21/include/bullet -isystem /usr/local/Cellar/bullet/3.21/include -isystem /usr/local/include/simbody -isystem /usr/local/Cellar/sdformat9/9.7.0/include/sdformat-9.7 -isystem /usr/local/include/ignition/math6 -isystem /usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/include -isystem /usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/include/OGRE -isystem /usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/include/OGRE/Terrain -isystem /usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/include/OGRE/Paging -isystem /usr/local/include/ignition/transport8 -isystem /usr/local/include/ignition/msgs5 -isystem /usr/local/include/ignition/common3 -isystem /usr/local/include/ignition/fuel_tools4 -iframework /usr/local/opt/qt@5/lib -isystem /usr/local/opt/qt@5/lib/QtCore.framework/Headers -isystem /usr/local/opt/qt@5/./mkspecs/macx-clang -isystem /usr/local/include/eigen3 -isystem /usr/local/Cellar/opencv/4.5.4_4/include/opencv4 -isystem /usr/local/Cellar/fcl/0.7.0/include -isystem /usr/local/Cellar/assimp/5.2.2/include -isystem /usr/local/include/sdformat-9.7/sdf/.. -isystem /usr/local/include/ignition/cmake2 -O2 -g -DNDEBUG -arch x86_64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.1.sdk -fPIC -F/Library/Developer/CommandLineTools/SDKs/MacOSX11.sdk/System/Library/Frameworks -Wno-deprecated-declarations -Wno-address-of-packed-member -std=gnu++17 -MD -MT CMakeFiles/gazebo_airspeed_plugin.dir/src/gazebo_airspeed_plugin.cpp.o -MF CMakeFiles/gazebo_airspeed_plugin.dir/src/gazebo_airspeed_plugin.cpp.o.d -o CMakeFiles/gazebo_airspeed_plugin.dir/src/gazebo_airspeed_plugin.cpp.o -c /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/src/gazebo_airspeed_plugin.cpp In file included from /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/src/gazebo_airspeed_plugin.cpp:41: In file included from /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/include/gazebo_airspeed_plugin.h:55: In file included from /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/include/common.h:29: In file included from /usr/local/include/gazebo-11/gazebo/gazebo.hh:20: In file included from /usr/local/include/gazebo-11/gazebo/gazebo_core.hh:19: In file included from /usr/local/include/gazebo-11/gazebo/common/common.hh:53: /usr/local/include/gazebo-11/gazebo/common/ffmpeg_inc.h:32:10: fatal error: 'libavcodec/avcodec.h' file not found #include ^~~~~~~~~~~~~~~~~~~~~~ 1 error generated. ninja: build stopped: subcommand failed. FAILED: external/Stamp/sitl_gazebo/sitl_gazebo-build /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/external/Stamp/sitl_gazebo/sitl_gazebo-build cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo && /usr/local/Cellar/cmake/3.22.2/bin/cmake --build /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo -- -j 2 ninja: build stopped: subcommand failed. make: *** [px4_sitl] Error 1 mengchaoheng@MCH-MBP PX4-Autopilot % brew install ffmpeg Running `brew update --preinstall`... ==> Auto-updated Homebrew! Updated 2 taps (homebrew/core and homebrew/cask). ==> New Formulae aarch64-elf-gcc dpp dynaconf rospo xkcd bkt dsq gst-plugins-rs trzsz ==> Updated Formulae Updated 213 formulae. ==> Deleted Formulae advancemenu ==> New Casks gcc-aarch64-embedded libcblite libcblite-community playdate-simulator ==> Updated Casks Updated 138 casks. ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.47.0 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/blobs/sha256:71cc16ddaac1f8eab66b ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:71cc16dd ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/manifests/70.1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/blobs/sha256:321592eb1aebb7c6edc7a5e91 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:321592eb ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/harfbuzz/manifests/3.4.0_1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/harfbuzz/blobs/sha256:d81d3df88c8d73a7028397 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:d81d3df8 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/tesseract/manifests/5.1.0 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/tesseract/blobs/sha256:8e95648b19daa92b54b9d ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:8e95648b ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ffmpeg/manifests/5.0-1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/ffmpeg/blobs/sha256:06c17691891957a8fee5a6a2 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:06c17691 ######################################################################## 100.0% ==> Installing dependencies for ffmpeg: libnghttp2, icu4c, harfbuzz and tesseract ==> Installing ffmpeg dependency: libnghttp2 ==> Pouring libnghttp2--1.47.0.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/libnghttp2/1.47.0: 13 files, 678.2KB ==> Installing ffmpeg dependency: icu4c ==> Pouring icu4c--70.1.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/icu4c/70.1: 261 files, 74.4MB ==> Installing ffmpeg dependency: harfbuzz ==> Pouring harfbuzz--3.4.0_1.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/harfbuzz/3.4.0_1: 68 files, 7.6MB ==> Installing ffmpeg dependency: tesseract ==> Pouring tesseract--5.1.0.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/tesseract/5.1.0: 58 files, 30MB ==> Installing ffmpeg ==> Pouring ffmpeg--5.0.monterey.bottle.1.tar.gz 🍺 /usr/local/Cellar/ffmpeg/5.0: 272 files, 51.6MB ==> Running `brew cleanup ffmpeg`... Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP. Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`). ==> Upgrading 4 dependents of upgraded formulae: Disable this behaviour by setting HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK. Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`). boost 1.78.0 -> 1.78.0_1, libpsl 0.21.1_3 -> 0.21.1_4, libsoup@2 2.74.1 -> 2.74.2, opencv 4.5.4_4 -> 4.5.5 ==> Downloading https://ghcr.io/v2/homebrew/core/libpsl/manifests/0.21.1_4 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/libpsl/blobs/sha256:8b8f8ec3a0109a21c4f7bbb6 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:8b8f8ec3 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/libsoup/2/manifests/2.74.2 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/libsoup/2/blobs/sha256:147797ede82518930df4c ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:147797ed ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/boost/manifests/1.78.0_1 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/boost/blobs/sha256:d49eb4eb19d29f26499db5815 ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:d49eb4eb ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/qt/5/manifests/5.15.2_2 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/qt/5/blobs/sha256:e14df14d66096c6b17955a68ad ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:e14df14d ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/opencv/manifests/4.5.5 ######################################################################## 100.0% ==> Downloading https://ghcr.io/v2/homebrew/core/opencv/blobs/sha256:5ab8654c831a1ad5225dabed ==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:5ab8654c ######################################################################## 100.0% ==> Upgrading libpsl 0.21.1_3 -> 0.21.1_4 ==> Pouring libpsl--0.21.1_4.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/libpsl/0.21.1_4: 10 files, 102.1KB ==> Running `brew cleanup libpsl`... Removing: /usr/local/Cellar/libpsl/0.21.1_3... (10 files, 102.1KB) ==> Upgrading libsoup@2 2.74.1 -> 2.74.2 ==> Pouring libsoup@2--2.74.2.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/libsoup@2/2.74.2: 146 files, 2.9MB ==> Running `brew cleanup libsoup@2`... Removing: /usr/local/Cellar/libsoup@2/2.74.1... (146 files, 2.9MB) Removing: /Users/mengchaoheng/Library/Caches/Homebrew/libsoup@2--2.74.1... (598.9KB) ==> Upgrading boost 1.78.0 -> 1.78.0_1 ==> Pouring boost--1.78.0_1.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/boost/1.78.0_1: 15,400 files, 463MB ==> Running `brew cleanup boost`... Removing: /usr/local/Cellar/boost/1.78.0... (15,386 files, 455.9MB) ==> Upgrading opencv 4.5.4_4 -> 4.5.5 ==> Installing dependencies for opencv: qt@5 ==> Installing opencv dependency: qt@5 ==> Pouring qt@5--5.15.2_2.monterey.bottle.tar.gz 🍺 /usr/local/Cellar/qt@5/5.15.2_2: 10,688 files, 380MB ==> Installing opencv ==> Pouring opencv--4.5.5.big_sur.bottle.tar.gz 🍺 /usr/local/Cellar/opencv/4.5.5: 861 files, 239.5MB ==> Running `brew cleanup opencv`... Removing: /usr/local/Cellar/opencv/4.5.4_4... (852 files, 237.5MB) Removing: /Users/mengchaoheng/Library/Caches/Homebrew/opencv--4.5.4_4... (82.0MB) ==> Checking for dependents of upgraded formulae... ==> Reinstalling 1 dependent with broken linkage from source: vtk ^C mengchaoheng@MCH-MBP PX4-Autopilot % brew install ffmpeg Running `brew update --preinstall`... Warning: ffmpeg 5.0 is already installed and up-to-date. To reinstall 5.0, run: brew reinstall ffmpeg mengchaoheng@MCH-MBP PX4-Autopilot % echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/opt/X11/bin mengchaoheng@MCH-MBP PX4-Autopilot % ffmpeg --version ffmpeg version 5.0 Copyright (c) 2000-2022 the FFmpeg developers built with Apple clang version 13.0.0 (clang-1300.0.29.30) configuration: --prefix=/usr/local/Cellar/ffmpeg/5.0 --enable-shared --enable-pthreads --enable-version3 --cc=clang --host-cflags= --host-ldflags= --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libbluray --enable-libdav1d --enable-libmp3lame --enable-libopus --enable-librav1e --enable-librist --enable-librubberband --enable-libsnappy --enable-libsrt --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libspeex --enable-libsoxr --enable-libzmq --enable-libzimg --disable-libjack --disable-indev=jack --enable-videotoolbox libavutil 57. 17.100 / 57. 17.100 libavcodec 59. 18.100 / 59. 18.100 libavformat 59. 16.100 / 59. 16.100 libavdevice 59. 4.100 / 59. 4.100 libavfilter 8. 24.100 / 8. 24.100 libswscale 6. 4.100 / 6. 4.100 libswresample 4. 3.100 / 4. 3.100 libpostproc 56. 3.100 / 56. 3.100 Unrecognized option '-version'. Error splitting the argument list: Option not found mengchaoheng@MCH-MBP PX4-Autopilot % brew info ffmepg Error: No available formula with the name "ffmepg". Did you mean ffmpeg? ==> Searching for a previously deleted formula (in the last month)... Error: No previously deleted formula found. mengchaoheng@MCH-MBP PX4-Autopilot % brew info ffmpeg ffmpeg: stable 5.0 (bottled), HEAD Play, record, convert, and stream audio and video https://ffmpeg.org/ /usr/local/Cellar/ffmpeg/5.0 (272 files, 51.6MB) * Poured from bottle on 2022-03-03 at 13:09:30 From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/ffmpeg.rb License: GPL-2.0-or-later ==> Dependencies Build: nasm ✘, pkg-config ✔ Required: aom ✔, dav1d ✔, fontconfig ✔, freetype ✔, frei0r ✔, gnutls ✔, lame ✔, libass ✔, libbluray ✔, librist ✔, libsoxr ✔, libvidstab ✔, libvmaf ✔, libvorbis ✔, libvpx ✔, opencore-amr ✔, openjpeg ✔, opus ✔, rav1e ✔, rubberband ✔, sdl2 ✔, snappy ✔, speex ✔, srt ✔, tesseract ✔, theora ✔, webp ✔, x264 ✔, x265 ✔, xvid ✔, xz ✔, zeromq ✔, zimg ✔ ==> Options --HEAD Install HEAD version ==> Analytics install: 155,418 (30 days), 419,806 (90 days), 1,603,575 (365 days) install-on-request: 142,699 (30 days), 364,264 (90 days), 1,349,304 (365 days) build-error: 83 (30 days) ```

mengchaoheng commented 2 years ago

and try again :

CLICK ME

```Console mengchaoheng@MCH-MBP PX4-Autopilot % make distclean 已清除目录 'Tools/flightgear_bridge' 子模组 'Tools/flightgear_bridge'(https://github.com/PX4/PX4-FlightGear-Bridge.git)未对路径 'Tools/flightgear_bridge' 注册 已清除目录 'Tools/jMAVSim' 子模组 'Tools/jMAVSim'(https://github.com/PX4/jMAVSim.git)未对路径 'Tools/jMAVSim' 注册 已清除目录 'Tools/jsbsim_bridge' 子模组 'Tools/jsbsim_bridge'(https://github.com/PX4/px4-jsbsim-bridge.git)未对路径 'Tools/jsbsim_bridge' 注册 已清除目录 'Tools/simulation-ignition' 子模组 'Tools/simulation-ignition'(https://github.com/PX4/px4-simulation-ignition.git)未对路径 'Tools/simulation-ignition' 注册 已清除目录 'Tools/sitl_gazebo' 子模组 'Tools/sitl_gazebo'(https://github.com/PX4/PX4-SITL_gazebo.git)未对路径 'Tools/sitl_gazebo' 注册 已清除目录 'platforms/nuttx/NuttX/apps' 子模组 'platforms/nuttx/NuttX/apps'(https://github.com/PX4/NuttX-apps.git)未对路径 'platforms/nuttx/NuttX/apps' 注册 已清除目录 'platforms/nuttx/NuttX/nuttx' 子模组 'platforms/nuttx/NuttX/nuttx'(https://github.com/PX4/NuttX.git)未对路径 'platforms/nuttx/NuttX/nuttx' 注册 已清除目录 'src/drivers/gps/devices' 子模组 'src/drivers/gps/devices'(https://github.com/PX4/PX4-GPSDrivers.git)未对路径 'src/drivers/gps/devices' 注册 已清除目录 'src/drivers/uavcan/libuavcan' 子模组 'src/drivers/uavcan/libuavcan'(https://github.com/dronecan/libuavcan.git)未对路径 'src/drivers/uavcan/libuavcan' 注册 已清除目录 'src/drivers/uavcan_v1/legacy_data_types' 子模组 'src/drivers/uavcan_v1/legacy_data_types'(https://github.com/PX4/public_regulated_data_types.git)未对路径 'src/drivers/uavcan_v1/legacy_data_types' 注册 已清除目录 'src/drivers/uavcan_v1/libcanard' 子模组 'src/drivers/uavcan_v1/libcanard'(https://github.com/UAVCAN/libcanard.git)未对路径 'src/drivers/uavcan_v1/libcanard' 注册 已清除目录 'src/drivers/uavcan_v1/public_regulated_data_types' 子模组 'src/drivers/uavcan_v1/public_regulated_data_types'(https://github.com/UAVCAN/public_regulated_data_types.git)未对路径 'src/drivers/uavcan_v1/public_regulated_data_types' 注册 已清除目录 'src/lib/crypto/libtomcrypt' 子模组 'src/lib/crypto/libtomcrypt'(https://github.com/PX4/libtomcrypt.git)未对路径 'src/lib/crypto/libtomcrypt' 注册 已清除目录 'src/lib/crypto/libtommath' 子模组 'src/lib/crypto/libtommath'(https://github.com/PX4/libtommath.git)未对路径 'src/lib/crypto/libtommath' 注册 已清除目录 'src/lib/crypto/monocypher' 子模组 'src/lib/crypto/monocypher'(https://github.com/PX4/Monocypher.git)未对路径 'src/lib/crypto/monocypher' 注册 已清除目录 'src/lib/events/libevents' 子模组 'src/lib/events/libevents'(https://github.com/mavlink/libevents.git)未对路径 'src/lib/events/libevents' 注册 已清除目录 'src/modules/mavlink/mavlink' 子模组 'src/modules/mavlink/mavlink'(https://github.com/mavlink/mavlink.git)未对路径 'src/modules/mavlink/mavlink' 注册 已清除目录 'src/modules/micrortps_bridge/micro-CDR' 子模组 'src/modules/micrortps_bridge/micro-CDR'(https://github.com/PX4/Micro-CDR.git)未对路径 'src/modules/micrortps_bridge/micro-CDR' 注册 正删除 Tools/.DS_Store 正删除 Tools/module_config/__pycache__/ 正删除 Tools/px4airframes/__pycache__/ 正删除 Tools/px4events/__pycache__/ 正删除 msg/tools/__pycache__/ 正删除 platforms/.DS_Store 正删除 platforms/nuttx/.DS_Store 正删除 platforms/nuttx/NuttX/.DS_Store 正删除 platforms/nuttx/NuttX/tools/__pycache__/ 正删除 platforms/nuttx/src/.DS_Store 正删除 platforms/nuttx/src/canbootloader/.DS_Store 正删除 platforms/nuttx/src/canbootloader/arch/.DS_Store 正删除 platforms/nuttx/src/canbootloader/arch/stm/.DS_Store 正删除 platforms/nuttx/src/px4/.DS_Store 正删除 platforms/nuttx/src/px4/nxp/.DS_Store 正删除 src/.DS_Store 正删除 src/drivers/.DS_Store 正删除 src/drivers/imu/.DS_Store 正删除 src/drivers/imu/analog_devices/.DS_Store 正删除 src/drivers/uavcan/.DS_Store 正删除 src/drivers/uavcan_v1/.DS_Store 正删除 src/lib/.DS_Store 正删除 src/lib/crypto/.DS_Store 正删除 src/lib/events/.DS_Store 正删除 src/lib/parameters/px4params/__pycache__/ 正删除 src/modules/.DS_Store 正删除 src/modules/mavlink/.DS_Store mengchaoheng@MCH-MBP PX4-Autopilot % git submodule update --init --recursive 子模组 'Tools/flightgear_bridge'(https://github.com/PX4/PX4-FlightGear-Bridge.git)已对路径 'Tools/flightgear_bridge' 注册 子模组 'Tools/jMAVSim'(https://github.com/PX4/jMAVSim.git)已对路径 'Tools/jMAVSim' 注册 子模组 'Tools/jsbsim_bridge'(https://github.com/PX4/px4-jsbsim-bridge.git)已对路径 'Tools/jsbsim_bridge' 注册 子模组 'Tools/simulation-ignition'(https://github.com/PX4/px4-simulation-ignition.git)已对路径 'Tools/simulation-ignition' 注册 子模组 'Tools/sitl_gazebo'(https://github.com/PX4/PX4-SITL_gazebo.git)已对路径 'Tools/sitl_gazebo' 注册 子模组 'platforms/nuttx/NuttX/apps'(https://github.com/PX4/NuttX-apps.git)已对路径 'platforms/nuttx/NuttX/apps' 注册 子模组 'platforms/nuttx/NuttX/nuttx'(https://github.com/PX4/NuttX.git)已对路径 'platforms/nuttx/NuttX/nuttx' 注册 子模组 'src/drivers/gps/devices'(https://github.com/PX4/PX4-GPSDrivers.git)已对路径 'src/drivers/gps/devices' 注册 子模组 'src/drivers/uavcan/libuavcan'(https://github.com/dronecan/libuavcan.git)已对路径 'src/drivers/uavcan/libuavcan' 注册 子模组 'src/drivers/uavcan_v1/legacy_data_types'(https://github.com/PX4/public_regulated_data_types.git)已对路径 'src/drivers/uavcan_v1/legacy_data_types' 注册 子模组 'src/drivers/uavcan_v1/libcanard'(https://github.com/UAVCAN/libcanard.git)已对路径 'src/drivers/uavcan_v1/libcanard' 注册 子模组 'src/drivers/uavcan_v1/public_regulated_data_types'(https://github.com/UAVCAN/public_regulated_data_types.git)已对路径 'src/drivers/uavcan_v1/public_regulated_data_types' 注册 子模组 'src/lib/crypto/libtomcrypt'(https://github.com/PX4/libtomcrypt.git)已对路径 'src/lib/crypto/libtomcrypt' 注册 子模组 'src/lib/crypto/libtommath'(https://github.com/PX4/libtommath.git)已对路径 'src/lib/crypto/libtommath' 注册 子模组 'src/lib/crypto/monocypher'(https://github.com/PX4/Monocypher.git)已对路径 'src/lib/crypto/monocypher' 注册 子模组 'src/lib/events/libevents'(https://github.com/mavlink/libevents.git)已对路径 'src/lib/events/libevents' 注册 子模组 'src/modules/mavlink/mavlink'(https://github.com/mavlink/mavlink.git)已对路径 'src/modules/mavlink/mavlink' 注册 子模组 'src/modules/micrortps_bridge/micro-CDR'(https://github.com/PX4/Micro-CDR.git)已对路径 'src/modules/micrortps_bridge/micro-CDR' 注册 子模组路径 'Tools/flightgear_bridge':检出 'f47ce7b5fbbb3aa43d33d2be1f6cd3746b13d5bf' 子模组路径 'Tools/flightgear_bridge/models/Rascal':检出 'cbdb2fc7dd44331da1dcd04a891ed7f8c27b1ef0' 子模组路径 'Tools/flightgear_bridge/models/TF-G1':检出 'fdb6dd685f55097230c0eb29aa7e9f5b8d0abf1e' 子模组路径 'Tools/flightgear_bridge/models/TF-G2':检出 '99529413531106836f4303c5389928a4fef04b05' 子模组路径 'Tools/flightgear_bridge/models/TF-R1':检出 '158e429a0110589b1e2adfe868e166271470e144' 子模组路径 'Tools/jMAVSim':检出 '66b764ada522893c05224950aa6268c809f8e48a' 子模组路径 'Tools/jMAVSim/jMAVlib':检出 'c08380767b21938391bec676a43b36b837af9ba4' 子模组路径 'Tools/jsbsim_bridge':检出 '68de2cc63ded9a0d6641d45e9eb3ed2b43454cba' 子模组路径 'Tools/jsbsim_bridge/models/ATI-Resolution':检出 '40571cd808a204f4062128daeb6bb6db8c134c48' 子模组路径 'Tools/jsbsim_bridge/models/Rascal':检出 'd0d1db1961549e557885002cf9c3cff40cc27be2' 子模组路径 'Tools/simulation-ignition':检出 '483193d9b8b89211c3b970c735b4fbb5f724b63a' 子模组路径 'Tools/sitl_gazebo':检出 '25138e803ee8525ee5fe4e6d511506e88e3f819c' 子模组路径 'Tools/sitl_gazebo/external/OpticalFlow':检出 '28ef45c1fcb532b2bfd54c16b059c6a545143b2f' 子模组路径 'Tools/sitl_gazebo/external/OpticalFlow/external/klt_feature_tracker':检出 '9b5b567ae77f93d1ef4d36151529ba2506a46e7a' 子模组路径 'platforms/nuttx/NuttX/apps':检出 'dbcb783671cee8a8c97b5909d9eb818c3864ca93' 子模组路径 'platforms/nuttx/NuttX/nuttx':检出 'c5c7d2b4f26f52f1dfb425ebde83328606b65d4f' 子模组路径 'src/drivers/gps/devices':检出 'fa275c39935e00906d7a691770d2c10f1ea95d3c' 子模组路径 'src/drivers/uavcan/libuavcan':检出 '9c09983f737de0dd224d26025f8f439d6d860b27' 子模组路径 'src/drivers/uavcan/libuavcan/dsdl':检出 '35c593c6b1a6eefb3310b2c14121d9b66710ecfa' 子模组路径 'src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan':检出 'c58477a644d20ccf95a20c151f3a0402f271c3b8' 子模组路径 'src/drivers/uavcan/libuavcan/libuavcan/dsdl_compiler/pyuavcan/dsdl':检出 'fd12483ddd4e58242d61d74a163e7aeaa1e0f466' 子模组路径 'src/drivers/uavcan_v1/legacy_data_types':检出 '36a01e428b110ff84c8babe5b65667b5e3037d5e' 子模组路径 'src/drivers/uavcan_v1/libcanard':检出 '2d449453fc8c4060f276c6dc585d4e1e5bf4fd52' 子模组路径 'src/drivers/uavcan_v1/public_regulated_data_types':检出 '0a773b93ce5c94e1d2791b180058cb9897fab7e1' 子模组路径 'src/lib/crypto/libtomcrypt':检出 '673f5ce29015a9bba3c96792920a10601b5b0718' 子模组路径 'src/lib/crypto/libtommath':检出 'fd73d7630b9d3ed5a79d613ff680a549e9780de7' 子模组路径 'src/lib/crypto/monocypher':检出 'baca5d31259c598540e4d1284bc8d8f793abf83a' 子模组路径 'src/lib/events/libevents':检出 '6329c909a7b16bb6f97c94cbb598815635b94982' 子模组路径 'src/lib/events/libevents/libs/cpp/parse/nlohmann_json':检出 '391786c6c3abdd3eeb993a3154f1f2a4cfe137a0' 子模组路径 'src/modules/mavlink/mavlink':检出 'b568a60fca42599d9998434e606f6e38e0b5e298' 子模组路径 'src/modules/mavlink/mavlink/pymavlink':检出 'df6e4d7c37edda3f687bb31db1b3e12a67eab831' 子模组路径 'src/modules/micrortps_bridge/micro-CDR':检出 '21d3cfe3ae570d1674da0105ab23b80958e0449a' mengchaoheng@MCH-MBP PX4-Autopilot % make px4_sitl gazebo -- PX4 version: v1.13.0-alpha1-4371-gc2c455be0d -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- PX4 config file: /Users/mengchaoheng/Downloads/PX4-Autopilot/boards/px4/sitl/default.px4board -- PLATFORM posix -- ROMFSROOT px4fmu_common -- TESTING y -- ETHERNET y -- PX4 config: px4_sitl_default -- PX4 platform: posix -- PX4 lockstep: enabled -- cmake build type: RelWithDebInfo -- The CXX compiler identification is AppleClang 13.0.0.13000029 -- The C compiler identification is AppleClang 13.0.0.13000029 -- The ASM compiler identification is Clang with GNU-like command-line -- Found assembler: /Library/Developer/CommandLineTools/usr/bin/cc -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Building for code coverage -- ccache enabled (export CCACHE_DISABLE=1 to disable) -- ROMFS: ROMFS/px4fmu_common -- Configuring done -- Generating done -- Build files have been written to: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default [0/853] git submodule src/drivers/gps/devices [10/853] git submodule Tools/sitl_gazebo [14/853] git submodule src/modules/mavlink/mavlink [19/853] Generating Mavlink development: src/module...nk/mavlink/message_definitions/v1.0/development.xm Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/development.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/standard.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/standard.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/common.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/common.xml Validating /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/minimal.xml Parsing /Users/mengchaoheng/Downloads/PX4-Autopilot/src/modules/mavlink/mavlink/message_definitions/v1.0/minimal.xml Merged enum MAV_CMD Merged enum MAV_CMD Found 228 MAVLink message types in 4 XML files Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink/development Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink/standard Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink/common Generating C implementation in directory /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink/minimal Copying fixed headers for protocol 2.0 to /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink [57/853] Performing configure step for 'sitl_gazebo' -- install-prefix: /usr/local -- cmake build type: RelWithDebInfo -- The C compiler identification is AppleClang 13.0.0.13000029 -- The CXX compiler identification is AppleClang 13.0.0.13000029 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Performing Test COMPILER_SUPPORTS_CXX17 -- Performing Test COMPILER_SUPPORTS_CXX17 - Success -- Performing Test COMPILER_SUPPORTS_CXX14 -- Performing Test COMPILER_SUPPORTS_CXX14 - Success -- Performing Test COMPILER_SUPPORTS_CXX11 -- Performing Test COMPILER_SUPPORTS_CXX11 - Success -- Performing Test COMPILER_SUPPORTS_CXX0X -- Performing Test COMPILER_SUPPORTS_CXX0X - Success -- Using C++17 standard -- ccache enabled (export CCACHE_DISABLE=1 to disable) -- Found Boost: /usr/local/lib/cmake/Boost-1.78.0/BoostConfig.cmake (found suitable version "1.78.0", minimum required is "1.58") found components: system thread filesystem CMake Warning (dev) at /usr/local/Cellar/cmake/3.22.2/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:438 (message): The package name passed to `find_package_handle_standard_args` (PkgConfig) does not match the name of the calling package (gazebo). This can lead to problems in calling code that expects `find_package` result variables (e.g., `_FOUND`) to follow a certain pattern. Call Stack (most recent call first): /usr/local/Cellar/cmake/3.22.2/share/cmake/Modules/FindPkgConfig.cmake:99 (find_package_handle_standard_args) /usr/local/lib/cmake/gazebo/gazebo-config.cmake:62 (include) CMakeLists.txt:48 (find_package) This warning is for project developers. Use -Wno-dev to suppress it. -- Found PkgConfig: /usr/local/bin/pkg-config (found version "0.29.2") -- Checking for module 'bullet>=2.82' -- Found bullet, version 3.20 -- Found fcl: /usr/local/Cellar/fcl/0.7.0/include (found suitable version "0.7.0", minimum required is "0.5.0") -- Found assimp: /usr/local/Cellar/assimp/5.2.2/include (found version "5.2.0") -- Found DART: /usr/local/include (Required is at least version "6.6") found components: dart -- Found Boost: /usr/local/lib/cmake/Boost-1.78.0/BoostConfig.cmake (found suitable version "1.78.0", minimum required is "1.40.0") found components: thread system filesystem program_options regex iostreams date_time -- Found Protobuf: /usr/local/lib/libprotobuf.dylib (found version "3.19.4") -- Looking for ignition-math6 -- found version 6.10.0 -- Searching for dependencies of ignition-math6 -- Looking for OGRE... -- OGRE_PREFIX_WATCH changed. -- Checking for module 'OGRE' -- Found OGRE, version 1.9.0 -- Found Ogre Ghadamon (1.9.0) -- Found OGRE: optimized;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreMain.dylib;debug;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreMain.dylib -- Looking for OGRE_Paging... -- Found OGRE_Paging: optimized;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgrePaging.dylib;debug;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgrePaging.dylib -- Looking for OGRE_Terrain... -- Found OGRE_Terrain: optimized;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreTerrain.dylib;debug;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreTerrain.dylib -- Looking for OGRE_Property... -- Found OGRE_Property: optimized;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreProperty.dylib;debug;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreProperty.dylib -- Looking for OGRE_RTShaderSystem... -- Found OGRE_RTShaderSystem: optimized;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreRTShaderSystem.dylib;debug;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreRTShaderSystem.dylib -- Looking for OGRE_Volume... -- Found OGRE_Volume: optimized;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreVolume.dylib;debug;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreVolume.dylib -- Looking for OGRE_Overlay... -- Found OGRE_Overlay: optimized;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreOverlay.dylib;debug;/usr/local/Cellar/ogre1.9/1.9-20160714-108ab0bcc69603dba32c0ffd4bbbc39051f421c9_10/lib/libOgreOverlay.dylib -- Looking for ignition-math6 -- found version 6.10.0 -- Looking for ignition-transport8 -- found version 8.2.1 -- Searching for dependencies of ignition-transport8 -- Found Protobuf: /usr/local/lib/libprotobuf.dylib (found suitable version "3.19.4", minimum required is "3") -- Config-file not installed for ZeroMQ -- checking for pkg-config -- Checking for module 'libzmq >= 4' -- Found libzmq , version 4.3.4 -- Found ZeroMQ: TRUE (Required is at least version "4") -- Found UUID: TRUE -- Looking for ignition-msgs5 -- found version 5.8.1 -- Searching for dependencies of ignition-msgs5 -- Looking for ignition-math6 -- found version 6.10.0 -- Checking for module 'tinyxml2' -- Found tinyxml2, version 9.0.0 -- Looking for ignition-msgs5 -- found version 5.8.1 -- Looking for ignition-common3 -- found version 3.14.0 -- Searching for dependencies of ignition-common3 -- Looking for dlfcn.h - found -- Looking for libdl - found -- Found DL: TRUE -- Searching for component [graphics] -- Looking for ignition-common3-graphics -- found version 3.14.0 -- Searching for dependencies of ignition-common3-graphics -- Looking for ignition-math6 -- found version 6.10.0 -- Looking for ignition-fuel_tools4 -- found version 4.4.0 -- Searching for dependencies of ignition-fuel_tools4 -- Found CURL: /Library/Developer/CommandLineTools/SDKs/MacOSX12.1.sdk/usr/lib/libcurl.tbd (found version "7.77.0") -- Checking for module 'jsoncpp' -- Found jsoncpp, version 1.9.4 -- Found JSONCPP: TRUE -- Checking for module 'yaml-0.1' -- Found yaml-0.1, version 0.2.5 -- Found YAML: TRUE -- Checking for module 'libzip' -- Found libzip, version 1.8.0 -- Found ZIP: TRUE -- Looking for ignition-common3 -- found version 3.14.0 -- Looking for ignition-math6 -- found version 6.10.0 -- Looking for ignition-msgs5 -- found version 5.8.1 -- Checking for one of the modules 'glib-2.0' -- Found PythonInterp: /usr/local/bin/python3 (found suitable version "3.9.10", minimum required is "3") -- Found OpenCV: /usr/local/Cellar/opencv/4.5.5 (found version "4.5.5") -- Found TinyXML: /usr/local/lib/libtinyxml.dylib -- Checking for module 'gstreamer-1.0 >= 1.0' -- Found gstreamer-1.0 , version 1.18.5 -- Checking for module 'gstreamer-base-1.0 >= 1.0' -- Found gstreamer-base-1.0 , version 1.18.5 -- Checking for module 'gstreamer-app-1.0 >= 1.0' -- Found gstreamer-app-1.0 , version 1.18.5 -- Found GStreamer: GSTREAMER_INCLUDE_DIRS;GSTREAMER_LIBRARIES;GSTREAMER_VERSION;GSTREAMER_BASE_INCLUDE_DIRS;GSTREAMER_BASE_LIBRARIES (Required is at least version "1.0") -- Checking for one of the modules 'icu-uc' -- Checking for module 'OGRE' -- Found OGRE, version 1.9.0 CMake Deprecation Warning at external/OpticalFlow/CMakeLists.txt:34 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. Update the VERSION argument value or use a ... suffix to tell CMake that the project does not need compatibility with older versions. CMake Deprecation Warning at external/OpticalFlow/external/klt_feature_tracker/CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. Update the VERSION argument value or use a ... suffix to tell CMake that the project does not need compatibility with older versions. -- Building klt_feature_tracker without catkin -- Building OpticalFlow with OpenCV -- Found MAVLink: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/mavlink (found version "2.0") -- catkin DISABLED -- Found Protobuf: /usr/local/lib/libprotobuf.dylib (found version "3.19.4") -- Checking for module 'protobuf' -- Found protobuf, version 3.19.4 -- Gazebo version: 11.10 -- Found GStreamer: adding gst_camera_plugin -- Found GStreamer: adding gst_video_stream_widget -- Configuring done -- Generating done -- Build files have been written to: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo [577/853] Linking CXX static library platforms/common/libpx4_platform.a /Library/Developer/CommandLineTools/usr/bin/ranlib: file: platforms/common/libpx4_platform.a(i2c.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: platforms/common/libpx4_platform.a(spi.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: platforms/common/libpx4_platform.a(i2c.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: platforms/common/libpx4_platform.a(spi.cpp.o) has no symbols [669/853] Linking CXX static library src/lib/bezier/libbezier.a /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/lib/bezier/libbezier.a(BezierQuad.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/lib/bezier/libbezier.a(BezierQuad.cpp.o) has no symbols [694/853] Linking CXX static library src/lib/slew_rate/libSlewRate.a /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/lib/slew_rate/libSlewRate.a(dummy.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/lib/slew_rate/libSlewRate.a(dummy.cpp.o) has no symbols warning: /Library/Developer/CommandLineTools/usr/bin/ranlib: archive library: src/lib/slew_rate/libSlewRate.a the table of contents is empty (no object file members in the library define global symbols) [697/853] Linking CXX static library src/drivers/camera_trigger/libdrivers__camera_trigger.a /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(pwm.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(seagull_map2.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(gpio.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(pwm.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(seagull_map2.cpp.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: src/drivers/camera_trigger/libdrivers__camera_trigger.a(gpio.cpp.o) has no symbols [849/853] Performing build step for 'sitl_gazebo' [1/130] Generating /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/iris/iris.sdf /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/iris/iris.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/iris/iris.sdf [2/130] Generating /Users/mengchaoheng/Downloads/PX...opilot/Tools/sitl_gazebo/models/pixhawk/pixhawk.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/pixhawk/pixhawk.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/pixhawk/pixhawk.sdf [3/130] Generating /Users/mengchaoheng/Downloads/PX...ools/sitl_gazebo/models/3DR_gps_mag/3DR_gps_mag.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/3DR_gps_mag/3DR_gps_mag.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/3DR_gps_mag/3DR_gps_mag.sdf [4/130] Generating /Users/mengchaoheng/Downloads/PX...ot/Tools/sitl_gazebo/models/cloudship/cloudship.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/cloudship/cloudship.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/cloudship/cloudship.sdf [5/130] Generating /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/boat/boat.sdf /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/boat/boat.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/boat/boat.sdf [6/130] Generating /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/c920/c920.sdf /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/c920/c920.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/c920/c920.sdf [7/130] Generating /Users/mengchaoheng/Downloads/PX...ls/sitl_gazebo/models/depth_camera/depth_camera.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/depth_camera/depth_camera.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/depth_camera/depth_camera.sdf [8/130] Generating /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/plane/plane.sdf /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/plane/plane.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/plane/plane.sdf [9/130] Generating /Users/mengchaoheng/Downloads/PX...ools/sitl_gazebo/models/matrice_100/matrice_100.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/matrice_100/matrice_100.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/matrice_100/matrice_100.sdf [10/130] Generating /Users/mengchaoheng/Downloads/P.../sitl_gazebo/models/mb1240-xl-ez4/mb1240-xl-ez4.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/mb1240-xl-ez4/mb1240-xl-ez4.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/mb1240-xl-ez4/mb1240-xl-ez4.sdf [11/130] Generating /Users/mengchaoheng/Downloads/P...opilot/Tools/sitl_gazebo/models/px4flow/px4flow.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/px4flow/px4flow.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/px4flow/px4flow.sdf [12/130] Generating /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/r200/r200.sdf /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/r200/r200.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/r200/r200.sdf [13/130] Generating /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/rover/rover.sdf /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/rover/rover.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/rover/rover.sdf [14/130] Generating /Users/mengchaoheng/Downloads/P...ilot/Tools/sitl_gazebo/models/r1_rover/r1_rover.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/r1_rover/r1_rover.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/r1_rover/r1_rover.sdf [15/130] Generating /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/sf10a/sf10a.sdf /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/sf10a/sf10a.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/sf10a/sf10a.sdf [16/130] Generating /Users/mengchaoheng/Downloads/P...bo/models/standard_vtol_drop/standard_vtol_drop.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/standard_vtol_drop/standard_vtol_drop.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/standard_vtol_drop/standard_vtol_drop.sdf [18/130] Generating /Users/mengchaoheng/Downloads/P.../sitl_gazebo/models/standard_vtol/standard_vtol.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/standard_vtol/standard_vtol.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/standard_vtol/standard_vtol.sdf [19/130] Generating /Users/mengchaoheng/Downloads/P.../Tools/sitl_gazebo/models/tailsitter/tailsitter.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/tailsitter/tailsitter.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/tailsitter/tailsitter.sdf [21/130] Generating /Users/mengchaoheng/Downloads/P...ot/Tools/sitl_gazebo/models/tiltrotor/tiltrotor.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/tiltrotor/tiltrotor.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/tiltrotor/tiltrotor.sdf [24/130] Generating /Users/mengchaoheng/Downloads/P...ls/sitl_gazebo/models/typhoon_h480/typhoon_h480.sd /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/typhoon_h480/typhoon_h480.sdf.jinja -> /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/typhoon_h480/typhoon_h480.sdf [130/130] Linking CXX shared library libgazebo_opticalflow_plugin.dylib [852/853] cd /Users/mengchaoheng/Downloads/PX4-Auto...heng/Downloads/PX4-Autopilot/build/px4_sitl_defaul SITL ARGS sitl_bin: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/bin/px4 debugger: none program: gazebo model: none world: none src_path: /Users/mengchaoheng/Downloads/PX4-Autopilot build_path: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default empty model, setting iris as default GAZEBO_PLUGIN_PATH :/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo GAZEBO_MODEL_PATH :/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models LD_LIBRARY_PATH :/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo empty world, setting empty.world as default Using: /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/iris/iris.sdf SITL COMMAND: "/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/bin/px4" "/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default"/etc -s etc/init.d-posix/rcS -t "/Users/mengchaoheng/Downloads/PX4-Autopilot"/test_data Gazebo multi-robot simulator, version 11.10.1 Copyright (C) 2012 Open Source Robotics Foundation. Released under the Apache 2 License. http://gazebosim.org [Msg] Waiting for master. [Msg] Connected to gazebo master @ http://127.0.0.1:11345 [Msg] Publicized address: 10.13.15.182 [Wrn] [GuiIface.cc:298] Couldn't locate specified .ini. Creating file at "/Users/mengchaoheng/.gazebo/gui.ini" Creating symlink /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/etc -> /Users/mengchaoheng/Download _____ __ __ ___ | ___ \ \ \ / / / | | |_/ / \ V / / /| | | __/ / \ / /_| | | | / /^\ \ \___ | \_| \/ \/ |_/ px4 starting. INFO [px4] Calling startup script: /bin/sh etc/init.d-posix/rcS 0 INFO [init] found model autostart file as SYS_AUTOSTART=10016 INFO [param] selected parameter default file eeprom/parameters_10016 [param] parameter file not found, creating eeprom/parameters_10016 SYS_AUTOCONFIG: curr: 0 -> new: 1 [Wrn] [GuiIface.cc:120] Populating font family aliases took 189 ms. Replace uses of missing font family "Sans" with one that exists to avoid this cost. SYS_AUTOSTART: curr: 0 -> new: 10016 CAL_ACC0_ID: curr: 0 -> new: 1310988 CAL_GYRO0_ID: curr: 0 -> new: 1310988 CAL_ACC1_ID: curr: 0 -> new: 1310996 CAL_GYRO1_ID: curr: 0 -> new: 1310996 CAL_ACC2_ID: curr: 0 -> new: 1311004 CAL_GYRO2_ID: curr: 0 -> new: 1311004 * CAL_MAG0_ID: curr: 0 -> new: 197388 * CAL_MAG1_ID: curr: 0 -> new: 197644 * SENS_BOARD_X_OFF: curr: 0.0000 -> new: 0.0000 * SENS_DPRES_OFF: curr: 0.0000 -> new: 0.0010 * SYS_AUTOCONFIG: curr: 1 -> new: 0 * IMU_INTEG_RATE: curr: 200 -> new: 250 INFO [dataman] data manager file './dataman' size is 7866640 bytes PX4 SIM HOST: localhost INFO [simulator] Waiting for simulator to accept connection on TCP port 4560 [Err] [Scene.cc:227] Service call[/shadow_caster_material_name] timed out [Err] [Scene.cc:249] Service call[/shadow_caster_render_back_faces] timed out INFO [simulator] Simulator connected on TCP port 4560. INFO [commander] LED: open /dev/led0 failed (22) * PWM_AUX_OUT: curr: 0 -> new: 1234 * PWM_MAIN_OUT: curr: 0 -> new: 1234 INFO [init] Mixer: etc/mixers/quad_w.main.mix on /dev/pwm_output0 INFO [init] setting PWM_AUX_OUT none INFO [mavlink] mode: Normal, data rate: 4000000 B/s on udp port 18570 remote port 14550 INFO [mavlink] mode: Onboard, data rate: 4000000 B/s on udp port 14580 remote port 14540 INFO [mavlink] mode: Onboard, data rate: 4000 B/s on udp port 14280 remote port 14030 INFO [mavlink] mode: Gimbal, data rate: 400000 B/s on udp port 13030 remote port 13280 INFO [logger] logger started (mode=all) INFO [logger] Start file log (type: full) INFO [logger] [logger] ./log/2022-03-03/05_37_02.ulg INFO [logger] Opened full log file: ./log/2022-03-03/05_37_02.ulg INFO [mavlink] MAVLink only on localhost (set param MAV_{i}_BROADCAST = 1 to enable network) INFO [mavlink] MAVLink only on localhost (set param MAV_{i}_BROADCAST = 1 to enable network) INFO [px4] Startup script returned successfully pxh> INFO [tone_alarm] home set INFO [tone_alarm] notify negative INFO [gyro_calibration] gyro 0 (1310988) updating offsets [0.000, 0.000, 0.000]->[-0.010, -0.013, -0.011] 11 INFO [gyro_calibration] gyro 1 (1310996) updating offsets [0.000, 0.000, 0.000]->[-0.011, -0.014, -0.012] 11 INFO [gyro_calibration] gyro 2 (1311004) updating offsets [0.000, 0.000, 0.000]->[-0.011, -0.014, -0.012] 11 pxh> pxh> pxh> conmander takeoff Invalid command: conmander type 'help' for a list of commands pxh> commander takeoff pxh> INFO [commander] Armed by internal command INFO [navigator] Using minimum takeoff altitude: 2.50 m INFO [commander] Takeoff detected WARN [commander] Failsafe enabled: no datalink INFO [commander] Failsafe mode activated INFO [tone_alarm] battery warning (fast) INFO [navigator] RTL HOME activated INFO [navigator] RTL: landing at home position. INFO [navigator] RTL: climb to 489 m (1 m above destination) INFO [commander] Failsafe mode deactivated INFO [navigator] RTL: return at 489 m (1 m above destination) INFO [navigator] RTL: land at destination INFO [commander] Landing detected INFO [commander] Disarmed by landing INFO [logger] closed logfile, bytes written: 13783165 INFO [mavlink] partner IP: 127.0.0.1 INFO [commander] Armed by external command INFO [logger] Start file log (type: full) INFO [logger] [logger] ./log/2022-03-03/05_38_38.ulg INFO [logger] Opened full log file: ./log/2022-03-03/05_38_38.ulg INFO [commander] Takeoff detected INFO [tone_alarm] notify positive INFO [navigator] Mission finished, loitering INFO [navigator] RTL HOME activated INFO [navigator] RTL: landing at home position. INFO [navigator] RTL: climb to 499 m (10 m above destination) INFO [navigator] RTL: return at 499 m (10 m above destination) INFO [navigator] RTL: land at destination INFO [commander] Landing detected INFO [commander] Disarmed by landing INFO [vehicle_imu] ACC 2 (1311004) offset committed: [0.000 0.000 0.000]->[-0.064 0.028 -0.042]) INFO [vehicle_imu] ACC 0 (1310988) offset committed: [0.000 0.000 0.000]->[-0.052 0.034 -0.040]) INFO [vehicle_imu] ACC 1 (1310996) offset committed: [0.000 0.000 0.000]->[-0.064 0.028 -0.042]) INFO [tone_alarm] notify positive INFO [logger] closed logfile, bytes written: 19556621 PX4 Exiting... pxh> Exiting NOW. ninja: build stopped: interrupted by user. make: *** [px4_sitl] Interrupt: 2 mengchaoheng@MCH-MBP PX4-Autopilot % cd .. mengchaoheng@MCH-MBP Downloads % cd .. ````

mengchaoheng commented 2 years ago

I don't know that's this:

[Err] [Scene.cc:227] Service call[/shadow_caster_material_name] timed out
[Err] [Scene.cc:249] Service call[/shadow_caster_render_back_faces] timed out

but anyway, I unsintall gazebo11 and then install it:

CLICK ME

```Console mengchaoheng@MCH-MBP PX4-Autopilot % brew uninstall gazebo11 Error: Refusing to uninstall /usr/local/Cellar/gazebo11/11.10.1_4 because it is required by px4-sim-gazebo, which is currently installed. You can override this and force removal with: brew uninstall --ignore-dependencies gazebo11 mengchaoheng@MCH-MBP PX4-Autopilot % brew uninstall --ignore-dependencies gazebo11 Uninstalling /usr/local/Cellar/gazebo11/11.10.1_4... (1,294 files, 130.2MB) mengchaoheng@MCH-MBP PX4-Autopilot % brew info gazebo11 osrf/simulation/gazebo11: stable 11.10.1 (bottled), HEAD Gazebo robot simulator https://gazebosim.org Conflicts with: gazebo7 (because differing version of the same formula) gazebo9 (because differing version of the same formula) Not installed From: https://github.com/osrf/homebrew-simulation/blob/HEAD/Formula/gazebo11.rb License: Apache-2.0 ==> Dependencies Build: cmake ✔, pkg-config ✔ Required: boost ✔, bullet ✔, cmake@3.21.4 ✔, dartsim ✔, doxygen ✔, ffmpeg@4 ✔, freeimage ✔, graphviz ✔, gts ✔, ignition-common3 ✔, ignition-fuel-tools4 ✔, ignition-math6 ✔, ignition-msgs5 ✔, ignition-transport8 ✔, libtar ✔, ogre1.9 ✔, ossp-uuid ✔, protobuf ✔, protobuf-c ✔, qt@5 ✔, qwt-qt5 ✔, sdformat9 ✔, simbody ✔, tbb@2020_u3 ✔, tinyxml ✔, tinyxml2 ✔, zeromq ✔ ==> Options --HEAD Install HEAD version mengchaoheng@MCH-MBP PX4-Autopilot % brew install gazebo11 Running `brew update --preinstall`... ==> Auto-updated Homebrew! Updated 1 tap (homebrew/cask). ==> Updated Casks Updated 1 cask. ==> Downloading https://osrf-distributions.s3.amazonaws.com/bottles-simulation/gazebo11-11.10.1_4.big_sur.bottl Already downloaded: /Users/mengchaoheng/Library/Caches/Homebrew/downloads/16afe4a223d5c39119d13f33c93b4980b66772b456a05e96afe7a08d81c65de5--gazebo11-11.10.1_4.big_sur.bottle.tar.gz ==> Installing gazebo11 from osrf/simulation ==> Pouring gazebo11-11.10.1_4.big_sur.bottle.tar.gz 🍺 /usr/local/Cellar/gazebo11/11.10.1_4: 1,294 files, 130.1MB ==> Running `brew cleanup gazebo11`... Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP. Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`). ```

mengchaoheng commented 2 years ago

and anything look good:

CLICK ME

```Console mengchaoheng@MCH-MBP PX4-Autopilot % PX4_NO_FOLLOW_MODE=1 make px4_sitl gazebo [0/4] Performing build step for 'sitl_gazebo' ninja: no work to do. [3/4] cd /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default...utopilot /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default SITL ARGS sitl_bin: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/bin/px4 debugger: none program: gazebo model: none world: none src_path: /Users/mengchaoheng/Downloads/PX4-Autopilot build_path: /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default empty model, setting iris as default GAZEBO_PLUGIN_PATH :/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo GAZEBO_MODEL_PATH :/Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models LD_LIBRARY_PATH :/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/build_gazebo empty world, setting empty.world as default Using: /Users/mengchaoheng/Downloads/PX4-Autopilot/Tools/sitl_gazebo/models/iris/iris.sdf Couldn't find a preferred IP via the getifaddrs() call; I'm assuming that your IP address is 127.0.0.1. This should work for local processes, but will almost certainly not work if you have remote processes.Report to the disc-zmq development team to seek a fix. Couldn't find a preferred IP via the getifaddrs() call; I'm assuming that your IP address is 127.0.0.1. This should work for local processes, but will almost certainly not work if you have remote processes.Report to the disc-zmq development team to seek a fix. Couldn't find a preferred IP via the getifaddrs() call; I'm assuming that your IP address is 127.0.0.1. This should work for local processes, but will almost certainly not work if you have remote processes.Report to the disc-zmq development team to seek a fix. Couldn't find a preferred IP via the getifaddrs() call; I'm assuming that your IP address is 127.0.0.1. This should work for local processes, but will almost certainly not work if you have remote processes.Report to the disc-zmq development team to seek a fix. SITL COMMAND: "/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/bin/px4" "/Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default"/etc -s etc/init.d-posix/rcS -t "/Users/mengchaoheng/Downloads/PX4-Autopilot"/test_data Creating symlink /Users/mengchaoheng/Downloads/PX4-Autopilot/build/px4_sitl_default/etc -> /Users/mengchaoheng/Download _____ __ __ ___ | ___ \ \ \ / / / | | |_/ / \ V / / /| | | __/ / \ / /_| | | | / /^\ \ \___ | \_| \/ \/ |_/ px4 starting. INFO [px4] Calling startup script: /bin/sh etc/init.d-posix/rcS 0 INFO [init] found model autostart file as SYS_AUTOSTART=10016 INFO [param] selected parameter default file eeprom/parameters_10016 INFO [parameters] BSON document size 945 bytes, decoded 945 bytes (INT32:20, FLOAT:24) [param] Loaded: eeprom/parameters_10016 Gazebo multi-robot simulator, version 11.10.1 Copyright (C) 2012 Open Source Robotics Foundation. Released under the Apache 2 License. http://gazebosim.org [Msg] Waiting for master. [Msg] Connected to gazebo master @ http://127.0.0.1:11345 [Msg] Publicized address: 127.0.0.1 Couldn't find a preferred IP via the getifaddrs() call; I'm assuming that your IP address is 127.0.0.1. This should work for local processes, but will almost certainly not work if you have remote processes.Report to the disc-zmq development team to seek a fix. Couldn't find a preferred IP via the getifaddrs() call; I'm assuming that your IP address is 127.0.0.1. This should work for local processes, but will almost certainly not work if you have remote processes.Report to the disc-zmq development team to seek a fix. Couldn't find a preferred IP via the getifaddrs() call; I'm assuming that your IP address is 127.0.0.1. This should work for local processes, but will almost certainly not work if you have remote processes.Report to the disc-zmq development team to seek a fix. Couldn't find a preferred IP via the getifaddrs() call; I'm assuming that your IP address is 127.0.0.1. This should work for local processes, but will almost certainly not work if you have remote processes.Report to the disc-zmq development team to seek a fix. INFO [dataman] data manager file './dataman' size is 7866640 bytes PX4 SIM HOST: localhost INFO [simulator] Waiting for simulator to accept connection on TCP port 4560 INFO [simulator] Simulator connected on TCP port 4560. INFO [commander] LED: open /dev/led0 failed (22) INFO [navigator] Mission #3 loaded, 5 WPs INFO [init] Mixer: etc/mixers/quad_w.main.mix on /dev/pwm_output0 INFO [init] setting PWM_AUX_OUT none INFO [mavlink] mode: Normal, data rate: 4000000 B/s on udp port 18570 remote port 14550 [Wrn] [GuiIface.cc:120] Populating font family aliases took 185 ms. Replace uses of missing font family "Sans" with one that exists to avoid this cost. INFO [mavlink] mode: Onboard, data rate: 4000000 B/s on udp port 14580 remote port 14540 INFO [mavlink] mode: Onboard, data rate: 4000 B/s on udp port 14280 remote port 14030 INFO [mavlink] mode: Gimbal, data rate: 400000 B/s on udp port 13030 remote port 13280 INFO [logger] logger started (mode=all) INFO [logger] Start file log (type: full) INFO [logger] [logger] ./log/2022-03-03/07_21_39.ulg INFO [logger] Opened full log file: ./log/2022-03-03/07_21_39.ulg INFO [mavlink] MAVLink only on localhost (set param MAV_{i}_BROADCAST = 1 to enable network) INFO [mavlink] MAVLink only on localhost (set param MAV_{i}_BROADCAST = 1 to enable network) INFO [px4] Startup script returned successfully pxh> libcurl: (6) Could not resolve host: fuel.ignitionrobotics.org [Wrn] [ModelDatabase.cc:212] Unable to connect to model database using [http://models.gazebosim.org//database.config]. Only locally installed models will be available. INFO [mavlink] partner IP: 127.0.0.1 INFO [tone_alarm] home set INFO [tone_alarm] notify positive INFO [commander] Armed by external command INFO [navigator] Executing Mission INFO [navigator] Takeoff to 10.0 meters above home INFO [commander] Takeoff detected INFO [commander] Landing detected INFO [commander] Disarmed by landing ERROR [navigator] mission update failed WARN [navigator] mission check failed INFO [logger] closed logfile, bytes written: 19398863 INFO [commander] Armed by external command INFO [logger] Start file log (type: full) INFO [logger] [logger] ./log/2022-03-03/07_23_29.ulg INFO [logger] Opened full log file: ./log/2022-03-03/07_23_29.ulg INFO [commander] Takeoff detected INFO [tone_alarm] notify positive INFO [navigator] Mission finished, loitering INFO [navigator] RTL HOME activated INFO [navigator] RTL: landing at home position. INFO [navigator] RTL: climb to 499 m (10 m above destination) INFO [navigator] RTL: return at 499 m (10 m above destination) INFO [navigator] RTL: land at destination INFO [commander] Landing detected INFO [commander] Disarmed by landing INFO [vehicle_imu] ACC 2 (1311004) offset committed: [-0.064 0.028 -0.042]->[-0.080 0.033 0.011]) INFO [vehicle_imu] GYRO 2 (1311004) offset committed: [-0.011 -0.014 -0.012]->[-0.004 -0.005 -0.004]) INFO [vehicle_imu] ACC 0 (1310988) offset committed: [-0.052 0.034 -0.040]->[-0.066 0.037 0.013]) INFO [vehicle_imu] ACC 1 (1310996) offset committed: [-0.064 0.028 -0.042]->[-0.080 0.033 0.011]) INFO [vehicle_imu] GYRO 0 (1310988) offset committed: [-0.010 -0.013 -0.011]->[-0.003 -0.005 -0.004]) INFO [vehicle_imu] GYRO 1 (1310996) offset committed: [-0.011 -0.014 -0.012]->[-0.004 -0.005 -0.004]) INFO [tone_alarm] notify positive INFO [logger] closed logfile, bytes written: 192607596 INFO [tone_alarm] notify negative INFO [commander] Armed by external command INFO [logger] Start file log (type: full) INFO [logger] [logger] ./log/2022-03-03/07_39_56.ulg INFO [logger] Opened full log file: ./log/2022-03-03/07_39_56.ulg INFO [commander] Takeoff detected INFO [tone_alarm] notify positive INFO [navigator] Mission finished, loitering ```

mengchaoheng commented 2 years ago

But sometimes the error reappears, but it doesn't seem to affect the normal operation of the simulation. This error is also found on gazebo's issue

https://github.com/osrf/gazebo/issues/3173

ryanjAA commented 2 years ago

Here is a PR for this. It fixed it for me so I added it to update the Mac build instructions.