Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

BUG: Error when importing NumPy main (No module named 'numpy.core._multiarray_umath') #20335

Closed
asmeurer opened this issue Nov 9, 2021 · 14 comments

Comments

@asmeurer
Copy link
Member

asmeurer commented Nov 9, 2021

Describe the issue:

In NumPy main, when I do an inplace build, I can no longer import NumPy. I get

Traceback (most recent call last):
  File "./numpy/core/__init__.py", line 23, in <module>
    from . import multiarray
  File "./numpy/core/multiarray.py", line 10, in <module>
    from . import overrides
  File "./numpy/core/overrides.py", line 6, in <module>
    from numpy.core._multiarray_umath import (
ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'

I bisected it to 2ae7aeb.

There are several errors in the build log, which I've included here https://gist.github.com/asmeurer/40754d1a4429449e1d558e003caa1860.

There seem to be some issues with the build scripts with C++. Perhaps they were never tested with clang?

This is currently blocking my ability to properly test my PR #20066.

Reproduce the code example:

git clean -dfX
python setup.py build_ext --inplace
python -c 'import numpy'

Error message:

No response

NumPy/Python version information:

This is the latest NumPy main. I am using Python 3.9.2, on macOS.

@asmeurer asmeurer added this to the 1.22.0 release milestone Nov 9, 2021
@rgommers
Copy link
Member

rgommers commented Nov 9, 2021

Can you add the full build log @asmeurer?

Cc @serge-sans-paille

@serge-sans-paille
Copy link
Contributor

The main error seems to be error: invalid argument '-std=c++11' not allowed with 'C'
This flag is only passed through extra_cxx_compile_args and cxx.

My guess would be that the compiler used to compile C++ code is still clang and not clang++

$ echo 'int man() { return 0;}' | clang -std=c++11 -x c - -o/dev/null 
error: invalid argument '-std=c++11' not allowed with 'C'

Other errors:

clang-12: error: unknown argument: '-mavx5124fmaps'

That's pretty clear, this machine target is not supported (but -mavx512f``` , -mavx512vpopcntdq`` etc are )

 error: implicit declaration of function '_mm512_4fmadd_ps' is invalid in C99

That's a consequence of the above. The correct approach here would be to (use xsimd) make sure these are only used when the correct arch is available.

Hope it helps.

@serge-sans-paille
Copy link
Contributor

@asmeurer can you describe the minimal steps I should use to reproduce locally, I'd be happy to provide patches.

@asmeurer
Copy link
Member Author

asmeurer commented Nov 9, 2021

I did link the build log in the OP. The minimal steps are just do an inplace build from a fresh clone, as I noted. I'm happy to provide additional information on my environment (compiler versions or whatever), but you'll have to tell me what you want to know because I don't really know enough about the NumPy build process to guess know what is relevant.

@charris
Copy link
Member

charris commented Nov 9, 2021

invalid argument '-std=c++11' not allowed with 'C'

I saw that in the wheel builds, but it didn't abort anything. Maybe because they were release builds? Are you building on a mac? I'm curious about the clang version.

@asmeurer
Copy link
Member Author

asmeurer commented Nov 9, 2021

This is on Mac. I'm assuming these are the correct commands for the clang version

$ clang --version
clang version 12.0.1
Target: x86_64-apple-darwin20.6.0
Thread model: posix
InstalledDir: /Users/aaronmeurer/anaconda3/envs/array-apis/bin
$ clang++ --version
clang version 12.0.1
Target: x86_64-apple-darwin20.6.0
Thread model: posix
InstalledDir: /Users/aaronmeurer/anaconda3/envs/array-apis/bin

Apparently I have it installed via conda-forge (but I have no idea what the relevant conda packages are).

@asmeurer
Copy link
Member Author

asmeurer commented Nov 9, 2021

Just tried building in another environment using the system clang and it worked.

Apple clang version 13.0.0 (clang-1300.0.29.3)
Target: x86_64-apple-darwin20.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

@charris
Copy link
Member

charris commented Nov 10, 2021

Interesting. My understanding is that apple clang versioning differs from non-apple versioning so I don't know how the versions actually compare.

@serge-sans-paille
Copy link
Contributor

@asmeurer can you check if #20344 fixes your issue?

@rgommers
Copy link
Member

I'm having a look at this, and how the build

On Linux I see only a couple of warnings when building with conda compilers. One is about the compiler not being detected - not critical here (because the compiler is a GCC one), but should be fixed:

CCompilerOpt.__init__[982] : unable to detect compiler type which leads to treating it as GCC. this is a normal behavior if you're using gcc-like compiler such as MinGW or IBM/XLC
...
CCompilerOpt.generate_dispatch_header[2285] : generate CPU dispatch header: (build/src.linux-x86_64-3.9/numpy/distutils/include/npy_cpu_dispatch_config.h)
resetting extension 'numpy.core._multiarray_umath' language from 'c' to 'c++'.
Full build log - Linux, conda numpy-dev env:
rgommers@machine:~/code/numpy (main)$ conda activate numpy-dev
(numpy-dev) rgommers@machine:~/code/numpy (main)$ python setup.py develop
Running from numpy source directory.
Cythonizing sources
Processing numpy/random/_bounded_integers.pxd.in
Processing numpy/random/_common.pyx
Processing numpy/random/_philox.pyx
Processing numpy/random/mtrand.pyx
Processing numpy/random/_mt19937.pyx
Processing numpy/random/_sfc64.pyx
Processing numpy/random/_generator.pyx
Processing numpy/random/_pcg64.pyx
Processing numpy/random/bit_generator.pyx
Processing numpy/random/_bounded_integers.pyx.in
blas_opt_info:
blas_mkl_info:
customize UnixCCompiler
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating /tmp/tmp5xa0cp0r/tmp
creating /tmp/tmp5xa0cp0r/tmp/tmp5xa0cp0r
compile options: '-MMD -MF /tmp/tmp5xa0cp0r/file.c.d -c'
x86_64-conda-linux-gnu-cc: /tmp/tmp5xa0cp0r/file.c
  libraries mkl_rt not found in ['/home/rgommers/anaconda3/envs/numpy-dev/lib', '/usr/local/lib', '/usr/lib64', '/usr/lib', '/usr/lib/']
  NOT AVAILABLE

blis_info:
  libraries blis not found in ['/home/rgommers/anaconda3/envs/numpy-dev/lib', '/usr/local/lib', '/usr/lib64', '/usr/lib', '/usr/lib/']
  NOT AVAILABLE

openblas_info:
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating /tmp/tmpd_2dhtsm/tmp
creating /tmp/tmpd_2dhtsm/tmp/tmpd_2dhtsm
compile options: '-c'
x86_64-conda-linux-gnu-cc: /tmp/tmpd_2dhtsm/source.c
/home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc /tmp/tmpd_2dhtsm/tmp/tmpd_2dhtsm/source.o -L/home/rgommers/anaconda3/envs/numpy-dev/lib -lopenblas -o /tmp/tmpd_2dhtsm/a.out
  FOUND:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/home/rgommers/anaconda3/envs/numpy-dev/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

  FOUND:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/home/rgommers/anaconda3/envs/numpy-dev/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

non-existing path in 'numpy/distutils': 'site.cfg'
lapack_opt_info:
lapack_mkl_info:
  libraries mkl_rt not found in ['/home/rgommers/anaconda3/envs/numpy-dev/lib', '/usr/local/lib', '/usr/lib64', '/usr/lib', '/usr/lib/']
  NOT AVAILABLE

openblas_lapack_info:
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating /tmp/tmpx0n9f6pg/tmp
creating /tmp/tmpx0n9f6pg/tmp/tmpx0n9f6pg
compile options: '-c'
x86_64-conda-linux-gnu-cc: /tmp/tmpx0n9f6pg/source.c
/home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc /tmp/tmpx0n9f6pg/tmp/tmpx0n9f6pg/source.o -L/home/rgommers/anaconda3/envs/numpy-dev/lib -lopenblas -o /tmp/tmpx0n9f6pg/a.out
  FOUND:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/home/rgommers/anaconda3/envs/numpy-dev/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

  FOUND:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/home/rgommers/anaconda3/envs/numpy-dev/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

Warning: attempted relative import with no known parent package
/home/rgommers/anaconda3/envs/numpy-dev/lib/python3.9/distutils/dist.py:274: UserWarning: Unknown distribution option: 'define_macros'
  warnings.warn(msg)
running develop
/home/rgommers/anaconda3/envs/numpy-dev/lib/python3.9/site-packages/setuptools/command/easy_install.py:156: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
/home/rgommers/anaconda3/envs/numpy-dev/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
running build_scripts
running egg_info
running build_src
build_src
building py_modules sources
building library "npymath" sources
creating build
creating build/src.linux-x86_64-3.9
conv_template:> numpy/core/src/npymath/npy_math_internal.h
  adding 'numpy/core/src/npymath' to include_dirs.
conv_template:> numpy/core/src/npymath/ieee754.c
conv_template:> numpy/core/src/npymath/npy_math_complex.c
None - nothing done with h_files = ['numpy/core/src/npymath/npy_math_internal.h']
building library "npyrandom" sources
building extension "numpy.core._multiarray_tests" sources
conv_template:> numpy/core/src/multiarray/_multiarray_tests.c
building extension "numpy.core._multiarray_umath" sources
conv_template:> numpy/core/src/multiarray/arraytypes.c
conv_template:> numpy/core/src/multiarray/einsum.c
conv_template:> numpy/core/src/multiarray/einsum_sumprod.c
conv_template:> numpy/core/src/multiarray/lowlevel_strided_loops.c
conv_template:> numpy/core/src/multiarray/nditer_templ.c
conv_template:> numpy/core/src/multiarray/scalartypes.c
conv_template:> numpy/core/src/common/npy_sort.h
  adding 'numpy/core/src/common' to include_dirs.
conv_template:> numpy/core/src/npysort/quicksort.c
conv_template:> numpy/core/src/npysort/mergesort.c
conv_template:> numpy/core/src/npysort/timsort.c
conv_template:> numpy/core/src/npysort/heapsort.c
conv_template:> numpy/core/src/common/npy_partition.h
conv_template:> numpy/core/src/npysort/selection.c
conv_template:> numpy/core/src/common/npy_binsearch.h
conv_template:> numpy/core/src/npysort/binsearch.c
conv_template:> numpy/core/src/umath/funcs.inc
  adding 'numpy/core/src/umath' to include_dirs.
conv_template:> numpy/core/src/umath/simd.inc
conv_template:> numpy/core/src/umath/loops.h
conv_template:> numpy/core/src/umath/loops_utils.h
conv_template:> numpy/core/src/umath/loops.c
conv_template:> numpy/core/src/umath/loops_unary_fp.dispatch.c
conv_template:> numpy/core/src/umath/loops_arithm_fp.dispatch.c
conv_template:> numpy/core/src/umath/loops_arithmetic.dispatch.c
conv_template:> numpy/core/src/umath/loops_trigonometric.dispatch.c
conv_template:> numpy/core/src/umath/loops_umath_fp.dispatch.c
conv_template:> numpy/core/src/umath/loops_exponent_log.dispatch.c
conv_template:> numpy/core/src/umath/matmul.h
conv_template:> numpy/core/src/umath/matmul.c
conv_template:> numpy/core/src/umath/scalarmath.c
conv_template:> numpy/core/src/common/templ_common.h
conv_template:> numpy/core/src/common/npy_cpu_features.c
numpy.core - nothing done with h_files = ['numpy/core/src/common/npy_sort.h', 'numpy/core/src/common/npy_partition.h', 'numpy/core/src/common/npy_binsearch.h', 'numpy/core/src/umath/funcs.inc', 'numpy/core/src/umath/simd.inc', 'numpy/core/src/umath/loops.h', 'numpy/core/src/umath/loops_utils.h', 'numpy/core/src/umath/matmul.h', 'numpy/core/src/umath/clip.h', 'numpy/core/src/common/templ_common.h', 'numpy/core/include/numpy/config.h', 'numpy/core/include/numpy/_numpyconfig.h', 'numpy/core/include/numpy/__multiarray_api.h', 'numpy/core/include/numpy/__ufunc_api.h']
building extension "numpy.core._umath_tests" sources
conv_template:> numpy/core/src/umath/_umath_tests.c
building extension "numpy.core._rational_tests" sources
conv_template:> numpy/core/src/umath/_rational_tests.c
building extension "numpy.core._struct_ufunc_tests" sources
conv_template:> numpy/core/src/umath/_struct_ufunc_tests.c
building extension "numpy.core._operand_flag_tests" sources
conv_template:> numpy/core/src/umath/_operand_flag_tests.c
building extension "numpy.core._simd" sources
conv_template:> numpy/core/src/_simd/_simd_inc.h
  adding 'numpy/core/src/_simd' to include_dirs.
conv_template:> numpy/core/src/_simd/_simd_data.inc
conv_template:> numpy/core/src/_simd/_simd.dispatch.c
numpy.core - nothing done with h_files = ['numpy/core/src/_simd/_simd_inc.h', 'numpy/core/src/_simd/_simd_data.inc']
building extension "numpy.fft._pocketfft_internal" sources
building extension "numpy.linalg.lapack_lite" sources
building extension "numpy.linalg._umath_linalg" sources
conv_template:> numpy/linalg/umath_linalg.c
building extension "numpy.random._mt19937" sources
building extension "numpy.random._philox" sources
building extension "numpy.random._pcg64" sources
building extension "numpy.random._sfc64" sources
building extension "numpy.random._common" sources
building extension "numpy.random.bit_generator" sources
building extension "numpy.random._generator" sources
building extension "numpy.random._bounded_integers" sources
building extension "numpy.random.mtrand" sources
building data_files sources
build_src: building npy-pkg config files
creating numpy.egg-info
writing numpy.egg-info/PKG-INFO
writing dependency_links to numpy.egg-info/dependency_links.txt
writing entry points to numpy.egg-info/entry_points.txt
writing top-level names to numpy.egg-info/top_level.txt
writing manifest file 'numpy.egg-info/SOURCES.txt'
Custom 'build_py' does not implement 'get_data_files_without_manifest'.
Please extend command classes from setuptools instead of distutils.
reading manifest file 'numpy.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
no previously-included directories found matching 'doc/build'
no previously-included directories found matching 'doc/source/generated'
no previously-included directories found matching 'benchmarks/env'
no previously-included directories found matching 'benchmarks/results'
no previously-included directories found matching 'benchmarks/html'
no previously-included directories found matching 'benchmarks/numpy'
warning: no previously-included files matching '*.pyo' found anywhere in distribution
warning: no previously-included files matching '*.pyd' found anywhere in distribution
warning: no previously-included files matching '*.swp' found anywhere in distribution
warning: no previously-included files matching '*.bak' found anywhere in distribution
warning: no previously-included files matching '*~' found anywhere in distribution
adding license file 'LICENSE.txt'
adding license file 'LICENSES_bundled.txt'
writing manifest file 'numpy.egg-info/SOURCES.txt'
running build_ext
customize UnixCCompiler
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating /tmp/tmp6ezqvcfp/tmp
creating /tmp/tmp6ezqvcfp/tmp/tmp6ezqvcfp
compile options: '-MMD -MF /tmp/tmp6ezqvcfp/file.c.d -c'
x86_64-conda-linux-gnu-cc: /tmp/tmp6ezqvcfp/file.c
customize UnixCCompiler using new_build_clib
CCompilerOpt.__init__[982] : unable to detect compiler type which leads to treating it as GCC. this is a normal behavior if you're using gcc-like compiler such as MinGW or IBM/XLC.check dist_info:<<
('linux-x86_64', '/home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc', '-Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include')
>>
CCompilerOpt.cc_test_flags[1026] : testing flags (-march=native)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating /tmp/tmpux71bo1v/home
creating /tmp/tmpux71bo1v/home/rgommers
creating /tmp/tmpux71bo1v/home/rgommers/code
creating /tmp/tmpux71bo1v/home/rgommers/code/numpy
creating /tmp/tmpux71bo1v/home/rgommers/code/numpy/numpy
creating /tmp/tmpux71bo1v/home/rgommers/code/numpy/numpy/distutils
creating /tmp/tmpux71bo1v/home/rgommers/code/numpy/numpy/distutils/checks
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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-march=native'
CCompilerOpt.cc_test_flags[1026] : testing flags (-O3)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-O3'
CCompilerOpt.cc_test_flags[1026] : testing flags (-Werror)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-std=c++11)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-std=c++11'
CCompilerOpt.__init__[1714] : check requested baseline
CCompilerOpt.cc_test_flags[1026] : testing flags (-msse)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse'
CCompilerOpt.cc_test_flags[1026] : testing flags (-msse2)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse2'
CCompilerOpt.feature_test[1479] : testing feature 'SSE' with flags (-msse -msse2)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -Werror'
CCompilerOpt.feature_test[1479] : testing feature 'SSE2' with flags (-msse -msse2)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-msse3)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse3'
CCompilerOpt.feature_test[1479] : testing feature 'SSE3' with flags (-msse -msse2 -msse3)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -Werror'
CCompilerOpt.__init__[1723] : check requested dispatch-able features
CCompilerOpt.cc_test_flags[1026] : testing flags (-mssse3)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mssse3'
CCompilerOpt.feature_test[1479] : testing feature 'SSSE3' with flags (-msse -msse2 -msse3 -mssse3)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-msse4.1)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse4.1'
CCompilerOpt.feature_test[1479] : testing feature 'SSE41' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mpopcnt)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mpopcnt'
CCompilerOpt.cc_test_flags[1026] : testing flags (-msse4.2)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse4.2'
CCompilerOpt.feature_test[1479] : testing feature 'SSE42' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -Werror'
CCompilerOpt.feature_test[1479] : testing feature 'POPCNT' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx'
CCompilerOpt.feature_test[1479] : testing feature 'AVX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mf16c)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mf16c'
CCompilerOpt.feature_test[1479] : testing feature 'F16C' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mfma)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mfma'
CCompilerOpt.feature_test[1479] : testing feature 'FMA3' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx2)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx2'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx512f)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx512f'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx512cd)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx512cd'
CCompilerOpt.feature_test[1479] : testing feature 'AVX512CD' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx512er -mavx512pf)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx512er -mavx512pf'
CCompilerOpt.feature_test[1479] : testing feature 'AVX512_KNL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -Werror'
CCompilerOpt.feature_test[1479] : testing feature 'AVX512F' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -Werror'
CCompilerOpt.feature_test[1479] : testing feature 'AVX2' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2 -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq'
CCompilerOpt.feature_test[1479] : testing feature 'AVX512_KNM' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512er -mavx512pf -mavx5124fmaps -mavx5124vnniw -mavx512vpopcntdq -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx512vl -mavx512bw -mavx512dq)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx512vl -mavx512bw -mavx512dq'
CCompilerOpt.feature_test[1479] : testing feature 'AVX512_SKX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx512vnni)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx512vnni'
CCompilerOpt.feature_test[1479] : testing feature 'AVX512_CLX' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx512ifma -mavx512vbmi)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx512ifma -mavx512vbmi'
CCompilerOpt.feature_test[1479] : 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)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512ifma -mavx512vbmi -Werror'
CCompilerOpt.cc_test_flags[1026] : testing flags (-mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq'
CCompilerOpt.feature_test[1479] : testing feature 'AVX512_ICL' with flags (-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -mavx512ifma -mavx512vbmi -mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -mavx512vnni -mavx512ifma -mavx512vbmi -mavx512vbmi2 -mavx512bitalg -mavx512vpopcntdq -Werror'
CCompilerOpt.__init__[1735] : skip features (SSE3 SSE SSE2) since its part of baseline
CCompilerOpt.__init__[1739] : initialize targets groups
CCompilerOpt.__init__[1741] : parse target group simd_test
CCompilerOpt._parse_target_tokens[1952] : skip targets (XOP FMA4 VSX3 VSX VSX2 NEON ASIMD) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (SSE2)
CCompilerOpt.generate_dispatch_header[2285] : generate CPU dispatch header: (build/src.linux-x86_64-3.9/numpy/distutils/include/npy_cpu_dispatch_config.h)
CCompilerOpt.generate_dispatch_header[2294] : dispatch header dir build/src.linux-x86_64-3.9/numpy/distutils/include does not exist, creating it
CCompilerOpt.feature_extra_checks[1559] : Testing extra checks for feature 'AVX512F' (AVX512F_REDUCE)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -Werror'
CCompilerOpt.feature_extra_checks[1559] : Testing extra checks for feature 'AVX512_SKX' (AVX512BW_MASK AVX512DQ_MASK)
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq -Werror'
building 'npymath' library
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9
creating build/temp.linux-x86_64-3.9/numpy
creating build/temp.linux-x86_64-3.9/numpy/core
creating build/temp.linux-x86_64-3.9/numpy/core/src
creating build/temp.linux-x86_64-3.9/numpy/core/src/npymath
compile options: '-Inumpy/core/src/npymath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/npymath/npy_math.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npymath/ieee754.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npymath/npy_math_complex.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npymath/halffloat.c
x86_64-conda-linux-gnu-ar: adding 4 object files to build/temp.linux-x86_64-3.9/libnpymath.a
x86_64-conda-linux-gnu-ranlib:@ build/temp.linux-x86_64-3.9/libnpymath.a
building 'npyrandom' library
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/random
creating build/temp.linux-x86_64-3.9/numpy/random/src
creating build/temp.linux-x86_64-3.9/numpy/random/src/distributions
compile options: '-Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/src/distributions/logfactorial.c
x86_64-conda-linux-gnu-cc: numpy/random/src/distributions/distributions.c
x86_64-conda-linux-gnu-cc: numpy/random/src/distributions/random_mvhg_count.c
x86_64-conda-linux-gnu-cc: numpy/random/src/distributions/random_mvhg_marginals.c
x86_64-conda-linux-gnu-cc: numpy/random/src/distributions/random_hypergeometric.c
x86_64-conda-linux-gnu-ar: adding 5 object files to build/temp.linux-x86_64-3.9/libnpyrandom.a
x86_64-conda-linux-gnu-ranlib:@ build/temp.linux-x86_64-3.9/libnpyrandom.a
creating numpy/random/lib
customize UnixCCompiler
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating /tmp/tmpo6z6wbly/tmp
creating /tmp/tmpo6z6wbly/tmp/tmpo6z6wbly
compile options: '-MMD -MF /tmp/tmpo6z6wbly/file.c.d -c'
x86_64-conda-linux-gnu-cc: /tmp/tmpo6z6wbly/file.c
customize UnixCCompiler using new_build_ext
CCompilerOpt.__init__[799] : hit the memory cache
CCompilerOpt.generate_dispatch_header[2285] : generate CPU dispatch header: (build/src.linux-x86_64-3.9/numpy/distutils/include/npy_cpu_dispatch_config.h)
resetting extension 'numpy.core._multiarray_umath' language from 'c' to 'c++'.
customize UnixCCompiler
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating /tmp/tmpic0j5yu0/tmp
creating /tmp/tmpic0j5yu0/tmp/tmpic0j5yu0
compile options: '-MMD -MF /tmp/tmpic0j5yu0/file.c.d -c'
x86_64-conda-linux-gnu-cc: /tmp/tmpic0j5yu0/file.c
customize UnixCCompiler using new_build_ext
building 'numpy.core._multiarray_tests' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/core/src/multiarray
creating build/temp.linux-x86_64-3.9/numpy/core/src/common
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 -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/_multiarray_tests.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/mem_overlap.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/npy_argparse.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/npy_hashtable.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/_multiarray_tests.o build/temp.linux-x86_64-3.9/numpy/core/src/common/mem_overlap.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_argparse.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_hashtable.o -Lbuild/temp.linux-x86_64-3.9 -lnpymath -o numpy/core/_multiarray_tests.cpython-39-x86_64-linux-gnu.so
building 'numpy.core._multiarray_umath' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_unary_fp.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (ASIMD VSX2 NEON) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (SSE2)
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_unary_fp.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_unary_fp.dispatch.sse41.c
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_arithm_fp.dispatch.c
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (SSE2)
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_arithm_fp.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_arithm_fp.dispatch.avx512f.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_arithm_fp.dispatch.avx2.c
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_arithmetic.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (VSX2 NEON) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (SSE2)
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_arithmetic.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_arithmetic.dispatch.avx512_skx.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_arithmetic.dispatch.avx512f.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_arithmetic.dispatch.avx2.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_arithmetic.dispatch.sse41.c
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_trigonometric.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (VSX2 NEON_VFPV4) not part of baseline or dispatch-able features
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_trigonometric.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_trigonometric.dispatch.avx512f.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_trigonometric.dispatch.fma3.avx2.c
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_umath_fp.dispatch.c
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_umath_fp.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_umath_fp.dispatch.avx512_skx.c
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_exponent_log.dispatch.c
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_exponent_log.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_exponent_log.dispatch.avx512_skx.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_exponent_log.dispatch.avx512f.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/loops_exponent_log.dispatch.fma3.avx2.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/core/src/umath
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-O3 -msse -msse2 -msse3 -mssse3 -msse4.1'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_unary_fp.dispatch.sse41.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_arithmetic.dispatch.sse41.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-O3 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_unary_fp.dispatch.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_arithm_fp.dispatch.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_arithmetic.dispatch.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_trigonometric.dispatch.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_umath_fp.dispatch.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_exponent_log.dispatch.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-O3 -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_arithm_fp.dispatch.avx512f.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_arithmetic.dispatch.avx512f.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_trigonometric.dispatch.avx512f.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_exponent_log.dispatch.avx512f.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-O3 -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_arithm_fp.dispatch.avx2.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_arithmetic.dispatch.avx2.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-O3 -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_arithmetic.dispatch.avx512_skx.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_umath_fp.dispatch.avx512_skx.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_exponent_log.dispatch.avx512_skx.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-O3 -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_trigonometric.dispatch.fma3.avx2.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops_exponent_log.dispatch.fma3.avx2.c
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/core/src/npysort
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/abstractdtypes.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/array_assign_scalar.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/common.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/datetime.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/alloc.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/array_assign_array.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/common_dtype.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/arrayobject.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/convert.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/arrayfunction_override.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/buffer.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/convert_datatype.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/datetime_strings.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/calculation.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/arraytypes.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/datetime_busday.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/conversion_utils.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/compiled_base.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/datetime_busdaycal.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/ctors.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/descriptor.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/dtypemeta.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/dragon4.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/dlpack.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/flagsobject.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/lowlevel_strided_loops.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/getset.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/dtype_transfer.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/hashdescr.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/item_selection.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/einsum.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/einsum_sumprod.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/iterators.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/legacy_dtype_implementation.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/nditer_constr.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/nditer_pywrap.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/array_coercion.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/array_method.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/number.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/scalarapi.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/experimental_public_dtype_api.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/scalartypes.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/refcount.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/vdot.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/sequence.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npysort/quicksort.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/shape.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npysort/binsearch.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/umathmodule.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/strfuncs.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/temp_elide.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/reduction.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npysort/mergesort.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/typeinfo.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/loops.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/usertypes.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/legacy_array_method.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/ufunc_object.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npysort/timsort.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/extobj.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/scalarmath.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/mapping.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/methods.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/multiarraymodule.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/ufunc_type_resolution.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npysort/heapsort.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/override.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/_scaled_float_dtype.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/array_assign.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/mem_overlap.c
x86_64-conda-linux-gnu-cc: numpy/core/src/npysort/selection.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/nditer_templ.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/npy_argparse.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/npy_hashtable.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/npy_longdouble.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/ucsnarrow.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/ufunc_override.c
x86_64-conda-linux-gnu-cc: numpy/core/src/multiarray/nditer_api.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/numpyos.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/npy_cpu_features.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/cblasfuncs.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/python_xerbla.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/matmul.c
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/dispatching.c
compiling C++ sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-c++ -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -std=c++11 -D__STDC_VERSION__=0 -fno-exceptions -fno-rtti'
x86_64-conda-linux-gnu-c++: numpy/core/src/npysort/radixsort.cpp
x86_64-conda-linux-gnu-c++: numpy/core/src/umath/clip.cpp
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.sse41.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.sse41.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_umath_fp.dispatch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.avx512f.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.avx512f.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.avx512f.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.avx512f.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.avx2.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.avx2.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.avx512_skx.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_umath_fp.dispatch.avx512_skx.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.avx512_skx.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.fma3.avx2.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.fma3.avx2.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/abstractdtypes.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/alloc.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/arrayobject.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/arraytypes.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/array_coercion.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/array_method.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/array_assign_scalar.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/array_assign_array.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/arrayfunction_override.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/buffer.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/calculation.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/compiled_base.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/common.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/common_dtype.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/convert.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/convert_datatype.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/conversion_utils.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/ctors.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/datetime.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/datetime_strings.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/datetime_busday.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/datetime_busdaycal.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/descriptor.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/dlpack.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/dtypemeta.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/dragon4.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/dtype_transfer.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/einsum.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/einsum_sumprod.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/experimental_public_dtype_api.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/flagsobject.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/getset.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/hashdescr.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/item_selection.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/iterators.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/legacy_dtype_implementation.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/lowlevel_strided_loops.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/mapping.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/methods.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/multiarraymodule.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_templ.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_api.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_constr.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_pywrap.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/number.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/refcount.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/sequence.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/shape.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/scalarapi.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/scalartypes.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/strfuncs.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/temp_elide.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/typeinfo.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/usertypes.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/vdot.o build/temp.linux-x86_64-3.9/numpy/core/src/npysort/quicksort.o build/temp.linux-x86_64-3.9/numpy/core/src/npysort/mergesort.o build/temp.linux-x86_64-3.9/numpy/core/src/npysort/timsort.o build/temp.linux-x86_64-3.9/numpy/core/src/npysort/heapsort.o build/temp.linux-x86_64-3.9/numpy/core/src/npysort/selection.o build/temp.linux-x86_64-3.9/numpy/core/src/npysort/binsearch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/umathmodule.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/reduction.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/loops.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/matmul.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/dispatching.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/legacy_array_method.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/ufunc_object.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/extobj.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/scalarmath.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/ufunc_type_resolution.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/override.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/_scaled_float_dtype.o build/temp.linux-x86_64-3.9/numpy/core/src/common/array_assign.o build/temp.linux-x86_64-3.9/numpy/core/src/common/mem_overlap.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_argparse.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_hashtable.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_longdouble.o build/temp.linux-x86_64-3.9/numpy/core/src/common/ucsnarrow.o build/temp.linux-x86_64-3.9/numpy/core/src/common/ufunc_override.o build/temp.linux-x86_64-3.9/numpy/core/src/common/numpyos.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_cpu_features.o build/temp.linux-x86_64-3.9/numpy/core/src/common/cblasfuncs.o build/temp.linux-x86_64-3.9/numpy/core/src/common/python_xerbla.o build/temp.linux-x86_64-3.9/numpy/core/src/npysort/radixsort.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/clip.o numpy/core/src/umath/svml/linux/avx512/svml_z0_atanh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_pow_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_tanh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_sinh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_sin_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cosh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_expm1_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_acosh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atan2_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atan2_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_asinh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atanh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_asin_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cbrt_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log1p_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log10_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log10_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_exp_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_asinh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cbrt_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_tan_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_acosh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log2_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cos_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_exp2_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_exp_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log2_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atan_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_asin_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_expm1_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_sinh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cos_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cosh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_pow_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_exp2_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atan_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_tan_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_tanh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log1p_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_sin_d_la.s -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Lbuild/temp.linux-x86_64-3.9 -lnpymath -lopenblas -lopenblas -lm -o numpy/core/_multiarray_umath.cpython-39-x86_64-linux-gnu.so
building 'numpy.core._umath_tests' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/_umath_tests.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (ASIMDHP VSX3 VSX VSX2 NEON ASIMD) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (SSE2)
CCompilerOpt._parse_target_tokens[1976] : policy 'WERROR' is ON
CCompilerOpt._parse_policy_werror[2108] : compiler warnings are treated as errors
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/_umath_tests.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/_umath_tests.dispatch.avx2.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/_umath_tests.dispatch.sse41.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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 -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/_umath_tests.dispatch.avx2.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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 -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror -msse -msse2 -msse3 -mssse3 -msse4.1'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/_umath_tests.dispatch.sse41.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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 -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/_umath_tests.dispatch.c
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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 -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/_umath_tests.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/npy_cpu_features.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/core/src/umath/_umath_tests.dispatch.avx2.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/_umath_tests.dispatch.sse41.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/_umath_tests.dispatch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/_umath_tests.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_cpu_features.o -Lbuild/temp.linux-x86_64-3.9 -o numpy/core/_umath_tests.cpython-39-x86_64-linux-gnu.so
building 'numpy.core._rational_tests' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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 -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/_rational_tests.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/core/src/umath/_rational_tests.o -Lbuild/temp.linux-x86_64-3.9 -o numpy/core/_rational_tests.cpython-39-x86_64-linux-gnu.so
building 'numpy.core._struct_ufunc_tests' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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 -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/_struct_ufunc_tests.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/core/src/umath/_struct_ufunc_tests.o -Lbuild/temp.linux-x86_64-3.9 -o numpy/core/_struct_ufunc_tests.cpython-39-x86_64-linux-gnu.so
building 'numpy.core._operand_flag_tests' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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 -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/umath/_operand_flag_tests.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/core/src/umath/_operand_flag_tests.o -Lbuild/temp.linux-x86_64-3.9 -o numpy/core/_operand_flag_tests.cpython-39-x86_64-linux-gnu.so
building 'numpy.core._simd' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/_simd/_simd.dispatch.c
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/_simd/_simd.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/_simd/_simd.dispatch.avx512_skx.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/_simd/_simd.dispatch.avx512f.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/_simd/_simd.dispatch.fma3.avx2.c
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/_simd/_simd.dispatch.sse42.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/core/src/_simd
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/src/_simd -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq'
x86_64-conda-linux-gnu-cc: numpy/core/src/_simd/_simd.dispatch.avx512_skx.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/src/_simd -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f'
x86_64-conda-linux-gnu-cc: numpy/core/src/_simd/_simd.dispatch.avx512f.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/src/_simd -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2'
x86_64-conda-linux-gnu-cc: numpy/core/src/_simd/_simd.dispatch.fma3.avx2.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/src/_simd -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2'
x86_64-conda-linux-gnu-cc: numpy/core/src/_simd/_simd.dispatch.sse42.c
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/src/_simd -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/_simd/_simd.dispatch.c
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

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/src/_simd -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/core/src/_simd/_simd.c
x86_64-conda-linux-gnu-cc: numpy/core/src/common/npy_cpu_features.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.avx512_skx.o build/temp.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.avx512f.o build/temp.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.fma3.avx2.o build/temp.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.sse42.o build/temp.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_cpu_features.o build/temp.linux-x86_64-3.9/numpy/core/src/_simd/_simd.o -Lbuild/temp.linux-x86_64-3.9 -o numpy/core/_simd.cpython-39-x86_64-linux-gnu.so
building 'numpy.fft._pocketfft_internal' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/fft
compile options: '-Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/fft/_pocketfft.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/fft/_pocketfft.o -Lbuild/temp.linux-x86_64-3.9 -o numpy/fft/_pocketfft_internal.cpython-39-x86_64-linux-gnu.so
building 'numpy.linalg.lapack_lite' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/linalg
creating build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite
compile options: '-DHAVE_CBLAS -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/linalg/lapack_litemodule.c
x86_64-conda-linux-gnu-cc: numpy/linalg/lapack_lite/python_xerbla.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/linalg/lapack_litemodule.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/python_xerbla.o -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Lbuild/temp.linux-x86_64-3.9 -lopenblas -lopenblas -o numpy/linalg/lapack_lite.cpython-39-x86_64-linux-gnu.so
building 'numpy.linalg._umath_linalg' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-DHAVE_CBLAS -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/linalg/umath_linalg.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/linalg/umath_linalg.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/python_xerbla.o -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Lbuild/temp.linux-x86_64-3.9 -lnpymath -lopenblas -lopenblas -o numpy/linalg/_umath_linalg.cpython-39-x86_64-linux-gnu.so
building 'numpy.random._mt19937' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/random/src/mt19937
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/mt19937 -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/_mt19937.c
x86_64-conda-linux-gnu-cc: numpy/random/src/mt19937/mt19937.c
x86_64-conda-linux-gnu-cc: numpy/random/src/mt19937/mt19937-jump.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/_mt19937.o build/temp.linux-x86_64-3.9/numpy/random/src/mt19937/mt19937.o build/temp.linux-x86_64-3.9/numpy/random/src/mt19937/mt19937-jump.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o numpy/random/_mt19937.cpython-39-x86_64-linux-gnu.so
building 'numpy.random._philox' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/random/src/philox
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/philox -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/_philox.c
x86_64-conda-linux-gnu-cc: numpy/random/src/philox/philox.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/_philox.o build/temp.linux-x86_64-3.9/numpy/random/src/philox/philox.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o numpy/random/_philox.cpython-39-x86_64-linux-gnu.so
building 'numpy.random._pcg64' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/random/src/pcg64
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/pcg64 -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/_pcg64.c
x86_64-conda-linux-gnu-cc: numpy/random/src/pcg64/pcg64.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/_pcg64.o build/temp.linux-x86_64-3.9/numpy/random/src/pcg64/pcg64.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o numpy/random/_pcg64.cpython-39-x86_64-linux-gnu.so
building 'numpy.random._sfc64' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/random/src/sfc64
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/sfc64 -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/_sfc64.c
x86_64-conda-linux-gnu-cc: numpy/random/src/sfc64/sfc64.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/_sfc64.o build/temp.linux-x86_64-3.9/numpy/random/src/sfc64/sfc64.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o numpy/random/_sfc64.cpython-39-x86_64-linux-gnu.so
building 'numpy.random._common' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/_common.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/_common.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o numpy/random/_common.cpython-39-x86_64-linux-gnu.so
building 'numpy.random.bit_generator' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/bit_generator.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/bit_generator.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o numpy/random/bit_generator.cpython-39-x86_64-linux-gnu.so
building 'numpy.random._generator' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/_generator.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/_generator.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -lnpymath -o numpy/random/_generator.cpython-39-x86_64-linux-gnu.so
building 'numpy.random._bounded_integers' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/_bounded_integers.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/_bounded_integers.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -lnpymath -o numpy/random/_bounded_integers.cpython-39-x86_64-linux-gnu.so
building 'numpy.random.mtrand' extension
compiling C sources
C compiler: /home/rgommers/anaconda3/envs/numpy-dev/bin/x86_64-conda-linux-gnu-cc -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -fPIC

creating build/temp.linux-x86_64-3.9/numpy/random/src/legacy
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -DNP_RANDOM_LEGACY=1 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/legacy -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/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/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/home/rgommers/anaconda3/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
x86_64-conda-linux-gnu-cc: numpy/random/mtrand.c
x86_64-conda-linux-gnu-cc: numpy/random/src/legacy/legacy-distributions.c
x86_64-conda-linux-gnu-cc: numpy/random/src/distributions/distributions.c
x86_64-conda_cos6-linux-gnu-gcc -pthread -shared -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,-rpath,/home/rgommers/anaconda3/envs/numpy-dev/lib -Wl,-rpath-link,/home/rgommers/anaconda3/envs/numpy-dev/lib -L/home/rgommers/anaconda3/envs/numpy-dev/lib -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/rgommers/anaconda3/envs/numpy-dev/include -DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/rgommers/anaconda3/envs/numpy-dev/include build/temp.linux-x86_64-3.9/numpy/random/mtrand.o build/temp.linux-x86_64-3.9/numpy/random/src/legacy/legacy-distributions.o build/temp.linux-x86_64-3.9/numpy/random/src/distributions/distributions.o -Lbuild/temp.linux-x86_64-3.9 -lm -lnpymath -o numpy/random/mtrand.cpython-39-x86_64-linux-gnu.so
Creating /home/rgommers/anaconda3/envs/numpy-dev/lib/python3.9/site-packages/numpy.egg-link (link to .)
Adding numpy 1.22.0.dev0+1733.g8dbd507fb6 to easy-install.pth file
Installing f2py script to /home/rgommers/anaconda3/envs/numpy-dev/bin
Installing f2py3 script to /home/rgommers/anaconda3/envs/numpy-dev/bin
Installing f2py3.9 script to /home/rgommers/anaconda3/envs/numpy-dev/bin

Installed /home/rgommers/code/numpy
Processing dependencies for numpy==1.22.0.dev0+1733.g8dbd507fb6
Finished processing dependencies for numpy==1.22.0.dev0+1733.g8dbd507fb6

########### EXT COMPILER OPTIMIZATION ###########
Platform      : 
  Architecture: x64
  Compiler    : unix-like

CPU baseline  : 
  Requested   : 'min'
  Enabled     : SSE SSE2 SSE3
  Flags       : -msse -msse2 -msse3
  Extra checks: none

CPU dispatch  : 
  Requested   : 'max -xop -fma4'
  Enabled     : SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_KNL AVX512_KNM AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL
  Generated   : 
              : 
  SSE41       : SSE SSE2 SSE3 SSSE3
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1
  Extra checks: none
  Detect      : SSE SSE2 SSE3 SSSE3 SSE41
              : numpy/core/src/umath/loops_unary_fp.dispatch.c
              : numpy/core/src/umath/loops_arithmetic.dispatch.c
              : numpy/core/src/umath/_umath_tests.dispatch.c
              : 
  SSE42       : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2
  Extra checks: none
  Detect      : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42
              : numpy/core/src/_simd/_simd.dispatch.c
              : 
  AVX2        : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2
  Extra checks: none
  Detect      : AVX F16C AVX2
              : numpy/core/src/umath/loops_arithm_fp.dispatch.c
              : numpy/core/src/umath/loops_arithmetic.dispatch.c
              : numpy/core/src/umath/_umath_tests.dispatch.c
              : 
  (FMA3 AVX2) : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2
  Extra checks: none
  Detect      : AVX F16C FMA3 AVX2
              : numpy/core/src/umath/loops_trigonometric.dispatch.c
              : numpy/core/src/umath/loops_exponent_log.dispatch.c
              : numpy/core/src/_simd/_simd.dispatch.c
              : 
  AVX512F     : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f
  Extra checks: AVX512F_REDUCE
  Detect      : AVX512F
              : numpy/core/src/umath/loops_arithm_fp.dispatch.c
              : numpy/core/src/umath/loops_arithmetic.dispatch.c
              : numpy/core/src/umath/loops_trigonometric.dispatch.c
              : numpy/core/src/umath/loops_exponent_log.dispatch.c
              : numpy/core/src/_simd/_simd.dispatch.c
              : 
  AVX512_SKX  : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq
  Extra checks: AVX512BW_MASK AVX512DQ_MASK
  Detect      : AVX512_SKX
              : numpy/core/src/umath/loops_arithmetic.dispatch.c
              : numpy/core/src/umath/loops_umath_fp.dispatch.c
              : numpy/core/src/umath/loops_exponent_log.dispatch.c
              : numpy/core/src/_simd/_simd.dispatch.c
CCompilerOpt.cache_flush[822] : write cache to path -> /home/rgommers/code/numpy/build/temp.linux-x86_64-3.9/ccompiler_opt_cache_ext.py

########### CLIB COMPILER OPTIMIZATION ###########
Platform      : 
  Architecture: x64
  Compiler    : unix-like

CPU baseline  : 
  Requested   : 'min'
  Enabled     : SSE SSE2 SSE3
  Flags       : -msse -msse2 -msse3
  Extra checks: none

CPU dispatch  : 
  Requested   : 'max -xop -fma4'
  Enabled     : SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_KNL AVX512_KNM AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL
  Generated   : none
CCompilerOpt.cache_flush[822] : write cache to path -> /home/rgommers/code/numpy/build/temp.linux-x86_64-3.9/ccompiler_opt_cache_clib.py

(macOS to follow, posting from other machine)

@rgommers
Copy link
Member

On macOS (arm64) there are more warnings because we're passing some gcc-specific flags to clang, but the build does succeed and tests pass. This is with the clang_osx-arm64 11.1.0 compilers though; there's no 12.0 for arm64 yet.

Full build log - macOS arm64, conda-forge numpy-env:
(base) numpy/. main% conda activate numpy-dev
(numpy-dev) numpy/. main% which clang
/Users/rgommers/mambaforge/envs/numpy-dev/bin/clang
(numpy-dev) numpy/. main% which clang++
/Users/rgommers/mambaforge/envs/numpy-dev/bin/clang++
(numpy-dev) numpy/. main% clang++ --version
clang version 11.1.0
Target: arm64-apple-darwin20.6.0
Thread model: posix
InstalledDir: /Users/rgommers/mambaforge/envs/numpy-dev/bin

(numpy-dev) numpy/. main% python setup.py develop
Running from numpy source directory.
Cythonizing sources
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
blas_opt_info:
blas_mkl_info:
customize UnixCCompiler
  libraries mkl_rt not found in ['/Users/rgommers/mambaforge/envs/numpy-dev/lib', '/usr/lib']
  NOT AVAILABLE

blis_info:
  libraries blis not found in ['/Users/rgommers/mambaforge/envs/numpy-dev/lib', '/usr/lib']
  NOT AVAILABLE

openblas_info:
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include

creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/var
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/var/folders
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/var/folders/2m
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew
compile options: '-c'
arm64-apple-darwin20.0.0-clang: /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/source.c
arm64-apple-darwin20.0.0-clang -arch arm64 /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/source.o -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -lopenblas -o /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpc14ogaew/a.out
  FOUND:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/Users/rgommers/mambaforge/envs/numpy-dev/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

  FOUND:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/Users/rgommers/mambaforge/envs/numpy-dev/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

non-existing path in 'numpy/distutils': 'site.cfg'
lapack_opt_info:
lapack_mkl_info:
  libraries mkl_rt not found in ['/Users/rgommers/mambaforge/envs/numpy-dev/lib', '/usr/lib']
  NOT AVAILABLE

openblas_lapack_info:
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include

creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/var
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/var/folders
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/var/folders/2m
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg
compile options: '-c'
arm64-apple-darwin20.0.0-clang: /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/source.c
arm64-apple-darwin20.0.0-clang -arch arm64 /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/source.o -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -lopenblas -o /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmpd2k8pqhg/a.out
  FOUND:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/Users/rgommers/mambaforge/envs/numpy-dev/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

  FOUND:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/Users/rgommers/mambaforge/envs/numpy-dev/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

Warning: attempted relative import with no known parent package
/Users/rgommers/mambaforge/envs/numpy-dev/lib/python3.9/distutils/dist.py:274: UserWarning: Unknown distribution option: 'define_macros'
  warnings.warn(msg)
running develop
running build_scripts
running egg_info
running build_src
build_src
building py_modules sources
building library "npymath" sources
creating build
creating build/src.macosx-11.0-arm64-3.9
conv_template:> numpy/core/src/npymath/npy_math_internal.h
  adding 'numpy/core/src/npymath' to include_dirs.
conv_template:> numpy/core/src/npymath/ieee754.c
conv_template:> numpy/core/src/npymath/npy_math_complex.c
None - nothing done with h_files = ['numpy/core/src/npymath/npy_math_internal.h']
building library "npyrandom" sources
building extension "numpy.core._multiarray_tests" sources
conv_template:> numpy/core/src/multiarray/_multiarray_tests.c
building extension "numpy.core._multiarray_umath" sources
conv_template:> numpy/core/src/multiarray/arraytypes.c
conv_template:> numpy/core/src/multiarray/einsum.c
conv_template:> numpy/core/src/multiarray/einsum_sumprod.c
conv_template:> numpy/core/src/multiarray/lowlevel_strided_loops.c
conv_template:> numpy/core/src/multiarray/nditer_templ.c
conv_template:> numpy/core/src/multiarray/scalartypes.c
conv_template:> numpy/core/src/common/npy_sort.h
  adding 'numpy/core/src/common' to include_dirs.
conv_template:> numpy/core/src/npysort/quicksort.c
conv_template:> numpy/core/src/npysort/mergesort.c
conv_template:> numpy/core/src/npysort/timsort.c
conv_template:> numpy/core/src/npysort/heapsort.c
conv_template:> numpy/core/src/common/npy_partition.h
conv_template:> numpy/core/src/npysort/selection.c
conv_template:> numpy/core/src/common/npy_binsearch.h
conv_template:> numpy/core/src/npysort/binsearch.c
conv_template:> numpy/core/src/umath/funcs.inc
  adding 'numpy/core/src/umath' to include_dirs.
conv_template:> numpy/core/src/umath/simd.inc
conv_template:> numpy/core/src/umath/loops.h
conv_template:> numpy/core/src/umath/loops_utils.h
conv_template:> numpy/core/src/umath/loops.c
conv_template:> numpy/core/src/umath/loops_unary_fp.dispatch.c
conv_template:> numpy/core/src/umath/loops_arithm_fp.dispatch.c
conv_template:> numpy/core/src/umath/loops_arithmetic.dispatch.c
conv_template:> numpy/core/src/umath/loops_trigonometric.dispatch.c
conv_template:> numpy/core/src/umath/loops_umath_fp.dispatch.c
conv_template:> numpy/core/src/umath/loops_exponent_log.dispatch.c
conv_template:> numpy/core/src/umath/matmul.h
conv_template:> numpy/core/src/umath/matmul.c
conv_template:> numpy/core/src/umath/scalarmath.c
conv_template:> numpy/core/src/common/templ_common.h
conv_template:> numpy/core/src/common/npy_cpu_features.c
numpy.core - nothing done with h_files = ['numpy/core/src/common/npy_sort.h', 'numpy/core/src/common/npy_partition.h', 'numpy/core/src/common/npy_binsearch.h', 'numpy/core/src/umath/funcs.inc', 'numpy/core/src/umath/simd.inc', 'numpy/core/src/umath/loops.h', 'numpy/core/src/umath/loops_utils.h', 'numpy/core/src/umath/matmul.h', 'numpy/core/src/umath/clip.h', 'numpy/core/src/common/templ_common.h', 'numpy/core/include/numpy/config.h', 'numpy/core/include/numpy/_numpyconfig.h', 'numpy/core/include/numpy/__multiarray_api.h', 'numpy/core/include/numpy/__ufunc_api.h']
building extension "numpy.core._umath_tests" sources
conv_template:> numpy/core/src/umath/_umath_tests.c
building extension "numpy.core._rational_tests" sources
conv_template:> numpy/core/src/umath/_rational_tests.c
building extension "numpy.core._struct_ufunc_tests" sources
conv_template:> numpy/core/src/umath/_struct_ufunc_tests.c
building extension "numpy.core._operand_flag_tests" sources
conv_template:> numpy/core/src/umath/_operand_flag_tests.c
building extension "numpy.core._simd" sources
conv_template:> numpy/core/src/_simd/_simd_inc.h
  adding 'numpy/core/src/_simd' to include_dirs.
conv_template:> numpy/core/src/_simd/_simd_data.inc
conv_template:> numpy/core/src/_simd/_simd.dispatch.c
numpy.core - nothing done with h_files = ['numpy/core/src/_simd/_simd_inc.h', 'numpy/core/src/_simd/_simd_data.inc']
building extension "numpy.fft._pocketfft_internal" sources
building extension "numpy.linalg.lapack_lite" sources
building extension "numpy.linalg._umath_linalg" sources
conv_template:> numpy/linalg/umath_linalg.c
building extension "numpy.random._mt19937" sources
building extension "numpy.random._philox" sources
building extension "numpy.random._pcg64" sources
building extension "numpy.random._sfc64" sources
building extension "numpy.random._common" sources
building extension "numpy.random.bit_generator" sources
building extension "numpy.random._generator" sources
building extension "numpy.random._bounded_integers" sources
building extension "numpy.random.mtrand" sources
building data_files sources
build_src: building npy-pkg config files
creating numpy.egg-info
writing numpy.egg-info/PKG-INFO
writing dependency_links to numpy.egg-info/dependency_links.txt
writing entry points to numpy.egg-info/entry_points.txt
writing top-level names to numpy.egg-info/top_level.txt
writing manifest file 'numpy.egg-info/SOURCES.txt'
reading manifest file 'numpy.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
no previously-included directories found matching 'doc/build'
no previously-included directories found matching 'doc/source/generated'
no previously-included directories found matching 'benchmarks/env'
no previously-included directories found matching 'benchmarks/results'
no previously-included directories found matching 'benchmarks/html'
no previously-included directories found matching 'benchmarks/numpy'
warning: no previously-included files matching '*.pyo' found anywhere in distribution
warning: no previously-included files matching '*.pyd' found anywhere in distribution
warning: no previously-included files matching '*.swp' found anywhere in distribution
warning: no previously-included files matching '*.bak' found anywhere in distribution
warning: no previously-included files matching '*~' found anywhere in distribution
adding license file 'LICENSE.txt'
adding license file 'LICENSES_bundled.txt'
writing manifest file 'numpy.egg-info/SOURCES.txt'
running build_ext
customize UnixCCompiler
customize UnixCCompiler using new_build_clib
CCompilerOpt.cc_test_flags[1026] : testing flags (-march=native)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils
creating /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils/checks
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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-march=native'
CCompilerOpt.dist_test[595] : CCompilerOpt._dist_test_spawn[729] : Command (arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c /Users/rgommers/code/numpy/numpy/distutils/checks/test_flags.c -o /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils/checks/test_flags.o -MMD -MF /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils/checks/test_flags.o.d -march=native) failed with exit status 1 output -> 
clang-11: error: the clang compiler does not support '-march=native'

CCompilerOpt.cc_test_flags[1030] : testing failed
CCompilerOpt.cc_test_flags[1026] : testing flags (-O3)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-O3'
CCompilerOpt.cc_test_flags[1026] : testing flags (-Werror=switch)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror=switch'
CCompilerOpt.cc_test_flags[1026] : testing flags (-Werror)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror'
CCompilerOpt.dist_test[595] : CCompilerOpt._dist_test_spawn[729] : Command (arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c /Users/rgommers/code/numpy/numpy/distutils/checks/test_flags.c -o /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils/checks/test_flags.o -MMD -MF /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/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.

CCompilerOpt.cc_test_flags[1030] : testing failed
CCompilerOpt.cc_test_flags[1026] : testing flags (-std=c++11)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-std=c++11'
CCompilerOpt.dist_test[595] : CCompilerOpt._dist_test_spawn[729] : Command (arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c /Users/rgommers/code/numpy/numpy/distutils/checks/test_flags.c -o /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils/checks/test_flags.o -MMD -MF /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils/checks/test_flags.o.d -std=c++11) failed with exit status 1 output -> 
error: invalid argument '-std=c++11' not allowed with 'C'

CCompilerOpt.cc_test_flags[1030] : testing failed
CCompilerOpt.__init__[1714] : check requested baseline
CCompilerOpt.feature_test[1479] : testing feature 'NEON_FP16' with flags ()
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror=switch'
CCompilerOpt.feature_test[1479] : testing feature 'NEON_VFPV4' with flags ()
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror=switch'
CCompilerOpt.feature_test[1479] : testing feature 'ASIMD' with flags ()
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror=switch'
CCompilerOpt.feature_test[1479] : testing feature 'NEON' with flags ()
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror=switch'
CCompilerOpt.__init__[1723] : check requested dispatch-able features
CCompilerOpt.cc_test_flags[1026] : testing flags (-march=armv8.2-a+dotprod)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-march=armv8.2-a+dotprod'
CCompilerOpt.feature_test[1479] : testing feature 'ASIMDDP' with flags (-march=armv8.2-a+dotprod)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-march=armv8.2-a+dotprod -Werror=switch'
CCompilerOpt.cc_test_flags[1026] : testing flags (-march=armv8.2-a+fp16)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-march=armv8.2-a+fp16'
CCompilerOpt.feature_test[1479] : testing feature 'ASIMDHP' with flags (-march=armv8.2-a+fp16)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-march=armv8.2-a+fp16 -Werror=switch'
CCompilerOpt.cc_test_flags[1026] : testing flags (-march=armv8.2-a+fp16fml)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-march=armv8.2-a+fp16fml'
CCompilerOpt.feature_test[1479] : testing feature 'ASIMDFHM' with flags (-march=armv8.2-a+fp16+fp16fml)
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-march=armv8.2-a+fp16+fp16fml -Werror=switch'
CCompilerOpt.dist_test[595] : CCompilerOpt._dist_test_spawn[729] : Command (arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c /Users/rgommers/code/numpy/numpy/distutils/checks/cpu_asimdfhm.c -o /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils/checks/cpu_asimdfhm.o -MMD -MF /var/folders/2m/dk_4hyc90xd2drkbqsbsjfqw0000gn/T/tmp2w3lk4c0/Users/rgommers/code/numpy/numpy/distutils/checks/cpu_asimdfhm.o.d -march=armv8.2-a+fp16+fp16fml -Werror=switch) failed with exit status 1 output -> 
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
/Users/rgommers/code/numpy/numpy/distutils/checks/cpu_asimdfhm.c:13:35: warning: implicit declaration of function 'vfmlal_low_u32' is invalid in C99 [-Wimplicit-function-declaration]
    int ret  = (int)vget_lane_f32(vfmlal_low_u32(vlf, vlhp, vlhp), 0);
                                  ^
/Users/rgommers/code/numpy/numpy/distutils/checks/cpu_asimdfhm.c:13:21: error: initializing 'float32x2_t' (vector of 2 'float32_t' values) with an expression of incompatible type 'int'
    int ret  = (int)vget_lane_f32(vfmlal_low_u32(vlf, vlhp, vlhp), 0);
                    ^             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/rgommers/mambaforge/envs/numpy-dev/lib/clang/11.1.0/include/arm_neon.h:7791:15: note: expanded from macro 'vget_lane_f32'
  float32x2_t __s0 = __p0; \
              ^      ~~~~
/Users/rgommers/code/numpy/numpy/distutils/checks/cpu_asimdfhm.c:14:36: warning: implicit declaration of function 'vfmlslq_high_u32' is invalid in C99 [-Wimplicit-function-declaration]
        ret += (int)vgetq_lane_f32(vfmlslq_high_u32(vf, vhp, vhp), 0);
                                   ^
/Users/rgommers/code/numpy/numpy/distutils/checks/cpu_asimdfhm.c:14:21: error: initializing 'float32x4_t' (vector of 4 'float32_t' values) with an expression of incompatible type 'int'
        ret += (int)vgetq_lane_f32(vfmlslq_high_u32(vf, vhp, vhp), 0);
                    ^              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/rgommers/mambaforge/envs/numpy-dev/lib/clang/11.1.0/include/arm_neon.h:7601:15: note: expanded from macro 'vgetq_lane_f32'
  float32x4_t __s0 = __p0; \
              ^      ~~~~
3 warnings and 2 errors generated.

CCompilerOpt.feature_test[1495] : testing failed
CCompilerOpt.__init__[1735] : skip features (NEON NEON_VFPV4 NEON_FP16 ASIMD) since its part of baseline
CCompilerOpt.__init__[1739] : initialize targets groups
CCompilerOpt.__init__[1741] : parse target group simd_test
CCompilerOpt._parse_target_tokens[1952] : skip targets (VSX2 VSX SSE42 SSE2 AVX512F VSX3 FMA4 XOP AVX512_SKX (FMA3 AVX2)) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (ASIMD)
CCompilerOpt.generate_dispatch_header[2285] : generate CPU dispatch header: (build/src.macosx-11.0-arm64-3.9/numpy/distutils/include/npy_cpu_dispatch_config.h)
CCompilerOpt.generate_dispatch_header[2294] : dispatch header dir build/src.macosx-11.0-arm64-3.9/numpy/distutils/include does not exist, creating it
building 'npymath' library
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9
creating build/temp.macosx-11.0-arm64-3.9/numpy
creating build/temp.macosx-11.0-arm64-3.9/numpy/core
creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src
creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npymath
compile options: '-Inumpy/core/src/npymath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/npymath/ieee754.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/npymath/npy_math_complex.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/npymath/halffloat.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/npymath/npy_math.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.
arm64-apple-darwin20.0.0-ar: adding 4 object files to build/temp.macosx-11.0-arm64-3.9/libnpymath.a
arm64-apple-darwin20.0.0-ranlib:@ build/temp.macosx-11.0-arm64-3.9/libnpymath.a
building 'npyrandom' library
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/random
creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src
creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src/distributions
compile options: '-Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/random/src/distributions/logfactorial.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/distributions/distributions.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/distributions/random_hypergeometric.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/distributions/random_mvhg_count.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/distributions/random_mvhg_marginals.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]
1 warning generated.
1 warning generated.
1 warning generated.
1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-ar: adding 5 object files to build/temp.macosx-11.0-arm64-3.9/libnpyrandom.a
arm64-apple-darwin20.0.0-ranlib:@ build/temp.macosx-11.0-arm64-3.9/libnpyrandom.a
creating numpy/random/lib
customize UnixCCompiler
customize UnixCCompiler using new_build_ext
CCompilerOpt.__init__[799] : hit the memory cache
CCompilerOpt.generate_dispatch_header[2285] : generate CPU dispatch header: (build/src.macosx-11.0-arm64-3.9/numpy/distutils/include/npy_cpu_dispatch_config.h)
customize UnixCCompiler using new_build_ext
building 'numpy.core._multiarray_tests' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray
creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common
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 -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/_multiarray_tests.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/mem_overlap.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/npy_argparse.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/npy_hashtable.c
warningwarning: : 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]
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.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/_multiarray_tests.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/mem_overlap.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_argparse.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_hashtable.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpymath -o numpy/core/_multiarray_tests.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.core._multiarray_umath' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_unary_fp.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (VSX2 SSE2 SSE41) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (ASIMD)
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._parse_policy_maxopt[2085] : debug mode is detected, policy 'maxopt' is skipped.
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_unary_fp.dispatch.h
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_arithm_fp.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (AVX2 SSE2 AVX512F) not part of baseline or dispatch-able features
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._parse_policy_maxopt[2085] : debug mode is detected, policy 'maxopt' is skipped.
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_arithm_fp.dispatch.h
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_arithmetic.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (VSX2 AVX2 SSE2 SSE41 AVX512_SKX AVX512F) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (NEON)
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._parse_policy_maxopt[2085] : debug mode is detected, policy 'maxopt' is skipped.
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_arithmetic.dispatch.h
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_trigonometric.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (VSX2 AVX512F (FMA3 AVX2)) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (NEON_VFPV4)
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._parse_policy_maxopt[2085] : debug mode is detected, policy 'maxopt' is skipped.
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_trigonometric.dispatch.h
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_umath_fp.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (AVX512_SKX) not part of baseline or dispatch-able features
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._parse_policy_maxopt[2085] : debug mode is detected, policy 'maxopt' is skipped.
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_umath_fp.dispatch.h
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/loops_exponent_log.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (AVX512_SKX AVX512F (FMA3 AVX2)) not part of baseline or dispatch-able features
CCompilerOpt._parse_target_tokens[1976] : policy 'MAXOPT' is ON
CCompilerOpt._parse_policy_maxopt[2085] : debug mode is detected, policy 'maxopt' is skipped.
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/loops_exponent_log.dispatch.h
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/loops_arithm_fp.dispatch.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/loops_arithmetic.dispatch.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/loops_unary_fp.dispatch.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/loops_umath_fp.dispatch.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/loops_trigonometric.dispatch.c
arm64-apple-darwin20.0.0-clang: 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_arithmetic.dispatch.c.src:45:1: warning: unused function 'simd_divide_by_scalar_contig_s64' [-Wunused-function]
simd_divide_by_scalar_contig_s64(char **args, npy_intp len)
^
numpy/core/src/umath/loops_arithmetic.dispatch.c.src:110:1: warning: unused function 'simd_divide_by_scalar_contig_u64' [-Wunused-function]
simd_divide_by_scalar_contig_u64(char **args, npy_intp len)
^
numpy/core/src/umath/loops_unary_fp.dispatch.c.src:225:32: warning: unused variable 'unused_but_workaround_bug' [-Wunused-variable]
             volatile npyv_f32 unused_but_workaround_bug = v_src0;
                               ^
numpy/core/src/umath/loops_unary_fp.dispatch.c.src:225:32: warning: unused variable 'unused_but_workaround_bug' [-Wunused-variable]
             volatile npyv_f32 unused_but_workaround_bug = v_src0;
                               ^
numpy/core/src/umath/loops_unary_fp.dispatch.c.src:225:32: warning: unused variable 'unused_but_workaround_bug' [-Wunused-variable]
             volatile npyv_f32 unused_but_workaround_bug = v_src0;
                               ^
numpy/core/src/umath/loops_unary_fp.dispatch.c.src:225:32: warning: unused variable 'unused_but_workaround_bug' [-Wunused-variable]
             volatile npyv_f32 unused_but_workaround_bug = v_src0;
                               ^
numpy/core/src/umath/loops_unary_fp.dispatch.c.src:225:32: warning: unused variable 'unused_but_workaround_bug' [-Wunused-variable]
             volatile npyv_f64 unused_but_workaround_bug = v_src0;
                               ^
numpy/core/src/umath/loops_unary_fp.dispatch.c.src:225:32: warning: unused variable 'unused_but_workaround_bug' [-Wunused-variable]
             volatile npyv_f64 unused_but_workaround_bug = v_src0;
                               ^
numpy/core/src/umath/loops_unary_fp.dispatch.c.src:225:32: warning: unused variable 'unused_but_workaround_bug' [-Wunused-variable]
             volatile npyv_f64 unused_but_workaround_bug = v_src0;
                               ^
numpy/core/src/umath/loops_unary_fp.dispatch.c.src:225:32: warning: unused variable 'unused_but_workaround_bug' [-Wunused-variable]
             volatile npyv_f64 unused_but_workaround_bug = v_src0;
                               ^
1 warning 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)
^
1 warning generated.
1 warning generated.
3 warnings generated.
9 warnings generated.
5 warnings generated.
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npysort
compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/abstractdtypes.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/arraytypes.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/array_assign_scalar.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/buffer.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/convert_datatype.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/common.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/datetime.c
arm64-apple-darwin20.0.0-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]
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) {
        ^~~~~    ~~~~
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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/alloc.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/array_assign_array.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/descriptor.c
1 warning generated.
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/common_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]
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/calculation.c
1 warning generated.
arm64-apple-darwin20.0.0-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]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/arrayfunction_override.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/arrayobject.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]
2 warnings generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/conversion_utils.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/datetime_strings.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/dtypemeta.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/einsum.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/compiled_base.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/dlpack.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/ctors.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/dragon4.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/datetime_busday.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/flagsobject.c
1 warning generated.
arm64-apple-darwin20.0.0-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]
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
numpy/core/src/multiarray/dragon4.c:3141:1: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'long double *') to parameter of type 'npy_float64 *' (aka 'double *') [-Wincompatible-pointer-types]
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:46: note: expanded from macro 'make_dragon4_typefuncs_inner'
    if (Dragon4_PrintFloat_##format(scratch, val, opt) < 0) {\
                                             ^~~
numpy/core/src/multiarray/dragon4.c:2386:48: note: passing argument to parameter 'value' here
        Dragon4_Scratch *scratch, npy_float64 *value, Dragon4_Options *opt)
                                               ^
numpy/core/src/multiarray/dragon4.c:3141:1: warning: incompatible pointer types passing 'npy_longdouble *' (aka 'long double *') to parameter of type 'npy_float64 *' (aka 'double *') [-Wincompatible-pointer-types]
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:46: note: expanded from macro 'make_dragon4_typefuncs_inner'
    if (Dragon4_PrintFloat_##format(scratch, val, opt) < 0) {\
                                             ^~~
numpy/core/src/multiarray/dragon4.c:2386:48: note: passing argument to parameter 'value' here
        Dragon4_Scratch *scratch, npy_float64 *value, Dragon4_Options *opt)
                                               ^
2 warnings generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/einsum_sumprod.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/getset.c
numpy/core/src/multiarray/item_selection.c:2117:1: warning: unused function 'count_nonzero_bytes_384' [-Wunused-function]
count_nonzero_bytes_384(const npy_uint64 * w)
^
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: 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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/multiarraymodule.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
3 warnings generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/dtype_transfer.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/nditer_constr.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-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.
2 warnings generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/refcount.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/iterators.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/sequence.c
1 warning generated.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/shape.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/nditer_pywrap.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/scalartypes.c
1 warning generated.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/temp_elide.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/vdot.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/number.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: 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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/typeinfo.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/npysort/quicksort.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/usertypes.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/npysort/timsort.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/npysort/binsearch.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/strfuncs.c
1 warning generated.
arm64-apple-darwin20.0.0-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]
1 warning generated.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-clang: 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.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/array_method.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/ufunc_object.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]
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/umathmodule.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: 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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/reduction.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: 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.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/npy_argparse.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/array_assign.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/ucsnarrow.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/npy_hashtable.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/ufunc_override.c
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/mem_overlap.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.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-clang: 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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/extobj.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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/cblasfuncs.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/multiarray/mapping.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-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.
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/override.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-clang: numpy/core/src/npysort/heapsort.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-clang: 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.
1 warning generated.
arm64-apple-darwin20.0.0-clang: 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.
arm64-apple-darwin20.0.0-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.
compiling C++ sources
C compiler: arm64-apple-darwin20.0.0-clang++ -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DHAVE_CBLAS -Inumpy/core/src/common -Inumpy/core/src/umath -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-std=c++11 -D__STDC_VERSION__=0 -fno-exceptions -fno-rtti'
arm64-apple-darwin20.0.0-clang++: numpy/core/src/npysort/radixsort.cpp
arm64-apple-darwin20.0.0-clang++: numpy/core/src/umath/clip.cpp
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.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_umath_fp.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/abstractdtypes.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/alloc.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/arrayobject.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/arraytypes.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/array_coercion.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/array_method.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/array_assign_scalar.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/array_assign_array.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/arrayfunction_override.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/buffer.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/calculation.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/compiled_base.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/common.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/common_dtype.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/convert.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/convert_datatype.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/conversion_utils.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/ctors.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/datetime.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/datetime_strings.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/datetime_busday.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/datetime_busdaycal.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/descriptor.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/dlpack.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/dtypemeta.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/dragon4.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/dtype_transfer.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/einsum.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/einsum_sumprod.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/experimental_public_dtype_api.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/flagsobject.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/getset.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/hashdescr.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/item_selection.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/iterators.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/legacy_dtype_implementation.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/lowlevel_strided_loops.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/mapping.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/methods.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/multiarraymodule.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_templ.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_api.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_constr.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/nditer_pywrap.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/number.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/refcount.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/sequence.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/shape.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/scalarapi.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/scalartypes.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/strfuncs.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/temp_elide.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/typeinfo.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/usertypes.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/multiarray/vdot.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npysort/quicksort.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npysort/mergesort.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npysort/timsort.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npysort/heapsort.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npysort/selection.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npysort/binsearch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/umathmodule.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/reduction.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/loops.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/matmul.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/dispatching.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/legacy_array_method.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/ufunc_object.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/extobj.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/scalarmath.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/ufunc_type_resolution.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/override.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/_scaled_float_dtype.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/array_assign.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/mem_overlap.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_argparse.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_hashtable.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_longdouble.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/ucsnarrow.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/ufunc_override.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/numpyos.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/cblasfuncs.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/python_xerbla.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/npysort/radixsort.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/clip.o -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpymath -lopenblas -lopenblas -o numpy/core/_multiarray_umath.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.core._umath_tests' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/umath/_umath_tests.dispatch.c
CCompilerOpt._parse_target_tokens[1952] : skip targets (VSX2 VSX AVX2 SSE2 VSX3 SSE41) not part of baseline or dispatch-able features
CCompilerOpt._parse_policy_not_keepbase[2064] : skip baseline features (ASIMD)
CCompilerOpt._parse_target_tokens[1976] : policy 'WERROR' is ON
CCompilerOpt._parse_policy_werror[2108] : compiler warnings are treated as errors
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/umath/_umath_tests.dispatch.h
CCompilerOpt._wrap_target[2481] : wrap dispatch-able target ->  numpy/core/src/umath/_umath_tests.dispatch.asimdhp.c
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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 -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror=switch -march=armv8.2-a+fp16'
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/_umath_tests.dispatch.asimdhp.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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 -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-Werror=switch'
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/_umath_tests.dispatch.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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 -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/_umath_tests.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/npy_cpu_features.c
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]

1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.dispatch.asimdhp.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/_umath_tests.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o numpy/core/_umath_tests.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.core._rational_tests' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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 -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/_rational_tests.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/_rational_tests.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o numpy/core/_rational_tests.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.core._struct_ufunc_tests' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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 -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/_struct_ufunc_tests.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/_struct_ufunc_tests.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o numpy/core/_struct_ufunc_tests.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.core._operand_flag_tests' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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 -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/umath/_operand_flag_tests.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/core/src/umath/_operand_flag_tests.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o numpy/core/_operand_flag_tests.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.core._simd' extension
compiling C dispatch-able sources
CCompilerOpt.parse_targets[1781] : looking for '@targets' inside ->  numpy/core/src/_simd/_simd.dispatch.c
CCompilerOpt._generate_config[2519] : generate dispatched config ->  numpy/core/src/_simd/_simd.dispatch.h
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/core/src/_simd
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/src/_simd -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/_simd/_simd.dispatch.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

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/src/_simd -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/core/src/common/npy_cpu_features.c
arm64-apple-darwin20.0.0-clang: numpy/core/src/_simd/_simd.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.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd.dispatch.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/common/npy_cpu_features.o build/temp.macosx-11.0-arm64-3.9/numpy/core/src/_simd/_simd.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o numpy/core/_simd.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.fft._pocketfft_internal' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/fft
compile options: '-Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/fft/_pocketfft.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/fft/_pocketfft.o -Lbuild/temp.macosx-11.0-arm64-3.9 -o numpy/fft/_pocketfft_internal.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.linalg.lapack_lite' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/linalg
creating build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite
compile options: '-DHAVE_CBLAS -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/linalg/lapack_litemodule.c
arm64-apple-darwin20.0.0-clang: numpy/linalg/lapack_lite/python_xerbla.c
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]

1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_litemodule.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/python_xerbla.o -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Lbuild/temp.macosx-11.0-arm64-3.9 -lopenblas -lopenblas -o numpy/linalg/lapack_lite.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.linalg._umath_linalg' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

compile options: '-DHAVE_CBLAS -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
arm64-apple-darwin20.0.0-clang: numpy/linalg/umath_linalg.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
numpy/linalg/umath_linalg.c.src:753:32: warning: unknown warning group '-Wmaybe-uninitialized', ignored [-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
                               ^
numpy/linalg/umath_linalg.c.src:559:1: warning: unused function 'dump_ufunc_object' [-Wunused-function]
dump_ufunc_object(PyUFuncObject* ufunc)
^
numpy/linalg/umath_linalg.c.src:584:1: warning: unused function 'dump_linearize_data' [-Wunused-function]
dump_linearize_data(const char* name, const LINEARIZE_DATA_t* params)
^
numpy/linalg/umath_linalg.c.src:620:1: warning: unused function 'dump_FLOAT_matrix' [-Wunused-function]
dump_FLOAT_matrix(const char* name,
^
numpy/linalg/umath_linalg.c.src:620:1: warning: unused function 'dump_DOUBLE_matrix' [-Wunused-function]
dump_DOUBLE_matrix(const char* name,
^
numpy/linalg/umath_linalg.c.src:620:1: warning: unused function 'dump_CFLOAT_matrix' [-Wunused-function]
dump_CFLOAT_matrix(const char* name,
^
numpy/linalg/umath_linalg.c.src:620:1: warning: unused function 'dump_CDOUBLE_matrix' [-Wunused-function]
dump_CDOUBLE_matrix(const char* name,
^
numpy/linalg/umath_linalg.c.src:883:1: warning: unused function 'zero_FLOAT_matrix' [-Wunused-function]
zero_FLOAT_matrix(void *dst_in, const LINEARIZE_DATA_t* data)
^
numpy/linalg/umath_linalg.c.src:883:1: warning: unused function 'zero_DOUBLE_matrix' [-Wunused-function]
zero_DOUBLE_matrix(void *dst_in, const LINEARIZE_DATA_t* data)
^
numpy/linalg/umath_linalg.c.src:883:1: warning: unused function 'zero_CFLOAT_matrix' [-Wunused-function]
zero_CFLOAT_matrix(void *dst_in, const LINEARIZE_DATA_t* data)
^
numpy/linalg/umath_linalg.c.src:883:1: warning: unused function 'zero_CDOUBLE_matrix' [-Wunused-function]
zero_CDOUBLE_matrix(void *dst_in, const LINEARIZE_DATA_t* data)
^
numpy/linalg/umath_linalg.c.src:1880:1: warning: unused function 'dump_geev_params' [-Wunused-function]
dump_geev_params(const char *name, GEEV_PARAMS_t* params)
^
numpy/linalg/umath_linalg.c.src:2150:1: warning: unused function 'init_cgeev' [-Wunused-function]
init_cgeev(GEEV_PARAMS_t* params,
^
numpy/linalg/umath_linalg.c.src:2231:1: warning: unused function 'process_cgeev_results' [-Wunused-function]
process_cgeev_results(GEEV_PARAMS_t *NPY_UNUSED(params))
^
numpy/linalg/umath_linalg.c.src:2394:1: warning: unused function 'dump_gesdd_params' [-Wunused-function]
dump_gesdd_params(const char *name,
^
numpy/linalg/umath_linalg.c.src:2872:1: warning: unused function 'dump_geqrf_params' [-Wunused-function]
dump_geqrf_params(const char *name,
^
numpy/linalg/umath_linalg.c.src:3344:1: warning: unused function 'dump_gqr_params' [-Wunused-function]
dump_gqr_params(const char *name,
^
numpy/linalg/umath_linalg.c.src:3544:1: warning: unused function 'dump_gelsd_params' [-Wunused-function]
dump_gelsd_params(const char *name,
^
19 warnings generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/linalg/umath_linalg.o build/temp.macosx-11.0-arm64-3.9/numpy/linalg/lapack_lite/python_xerbla.o -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpymath -lopenblas -lopenblas -o numpy/linalg/_umath_linalg.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random._mt19937' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src/mt19937
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/mt19937 -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/_mt19937.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/mt19937/mt19937.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/mt19937/mt19937-jump.c
warningwarningwarning: : : 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]overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]


1 warning generated.
1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/_mt19937.o build/temp.macosx-11.0-arm64-3.9/numpy/random/src/mt19937/mt19937.o build/temp.macosx-11.0-arm64-3.9/numpy/random/src/mt19937/mt19937-jump.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpyrandom -lm -o numpy/random/_mt19937.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random._philox' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src/philox
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/philox -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/_philox.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/philox/philox.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.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/_philox.o build/temp.macosx-11.0-arm64-3.9/numpy/random/src/philox/philox.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpyrandom -lm -o numpy/random/_philox.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random._pcg64' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src/pcg64
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/pcg64 -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/_pcg64.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/pcg64/pcg64.c
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]

1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/_pcg64.o build/temp.macosx-11.0-arm64-3.9/numpy/random/src/pcg64/pcg64.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpyrandom -lm -o numpy/random/_pcg64.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random._sfc64' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src/sfc64
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/sfc64 -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/_sfc64.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/sfc64/sfc64.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.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/_sfc64.o build/temp.macosx-11.0-arm64-3.9/numpy/random/src/sfc64/sfc64.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpyrandom -lm -o numpy/random/_sfc64.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random._common' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/_common.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/_common.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpyrandom -lm -o numpy/random/_common.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random.bit_generator' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/bit_generator.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/bit_generator.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpyrandom -lm -o numpy/random/bit_generator.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random._generator' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/_generator.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/_generator.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpyrandom -lm -lnpymath -o numpy/random/_generator.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random._bounded_integers' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/_bounded_integers.c
warning: overriding currently unsupported use of floating point exceptions on this target [-Wunsupported-floating-point-opt]
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/_bounded_integers.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lnpyrandom -lm -lnpymath -o numpy/random/_bounded_integers.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
building 'numpy.random.mtrand' extension
compiling C sources
C compiler: arm64-apple-darwin20.0.0-clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -ftrapping-math

creating build/temp.macosx-11.0-arm64-3.9/numpy/random/src/legacy
compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -DNP_RANDOM_LEGACY=1 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/legacy -Inumpy/core/include -Inumpy/core/include/numpy -Ibuild/src.macosx-11.0-arm64-3.9/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/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -Inumpy/core/src/common -Inumpy/core/src/npymath -I/Users/rgommers/mambaforge/envs/numpy-dev/include/python3.9 -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99'
arm64-apple-darwin20.0.0-clang: numpy/random/mtrand.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/legacy/legacy-distributions.c
arm64-apple-darwin20.0.0-clang: numpy/random/src/distributions/distributions.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]

1 warning generated.
1 warning generated.
1 warning generated.
arm64-apple-darwin20.0.0-clang -bundle -undefined dynamic_lookup -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -Wl,-pie -Wl,-headerpad_max_install_names -Wl,-dead_strip_dylibs -Wl,-rpath,/Users/rgommers/mambaforge/envs/numpy-dev/lib -L/Users/rgommers/mambaforge/envs/numpy-dev/lib -ftree-vectorize -fPIC -fPIE -fstack-protector-strong -O2 -pipe -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -D_FORTIFY_SOURCE=2 -isystem /Users/rgommers/mambaforge/envs/numpy-dev/include -arch arm64 build/temp.macosx-11.0-arm64-3.9/numpy/random/mtrand.o build/temp.macosx-11.0-arm64-3.9/numpy/random/src/legacy/legacy-distributions.o build/temp.macosx-11.0-arm64-3.9/numpy/random/src/distributions/distributions.o -Lbuild/temp.macosx-11.0-arm64-3.9 -lm -lnpymath -o numpy/random/mtrand.cpython-39-darwin.so
ld: warning: -pie being ignored. It is only used when linking a main executable
Creating /Users/rgommers/mambaforge/envs/numpy-dev/lib/python3.9/site-packages/numpy.egg-link (link to .)
Adding numpy 1.22.0.dev0+1733.g8dbd507fb to easy-install.pth file
Installing f2py script to /Users/rgommers/mambaforge/envs/numpy-dev/bin
Installing f2py3 script to /Users/rgommers/mambaforge/envs/numpy-dev/bin
Installing f2py3.9 script to /Users/rgommers/mambaforge/envs/numpy-dev/bin

Installed /Users/rgommers/code/numpy
Processing dependencies for numpy==1.22.0.dev0+1733.g8dbd507fb
Finished processing dependencies for numpy==1.22.0.dev0+1733.g8dbd507fb

########### EXT COMPILER OPTIMIZATION ###########
Platform      : 
  Architecture: aarch64
  Compiler    : clang

CPU baseline  : 
  Requested   : 'min'
  Enabled     : NEON NEON_FP16 NEON_VFPV4 ASIMD
  Flags       : none
  Extra checks: none

CPU dispatch  : 
  Requested   : 'max -xop -fma4'
  Enabled     : ASIMDHP ASIMDDP
  Generated   : 
              : 
  ASIMDHP     : NEON NEON_FP16 NEON_VFPV4 ASIMD
  Flags       : -march=armv8.2-a+fp16
  Extra checks: none
  Detect      : ASIMD ASIMDHP
              : numpy/core/src/umath/_umath_tests.dispatch.c
CCompilerOpt.cache_flush[822] : write cache to path -> /Users/rgommers/code/numpy/build/temp.macosx-11.0-arm64-3.9/ccompiler_opt_cache_ext.py

########### CLIB COMPILER OPTIMIZATION ###########
Platform      : 
  Architecture: aarch64
  Compiler    : clang

CPU baseline  : 
  Requested   : 'min'
  Enabled     : NEON NEON_FP16 NEON_VFPV4 ASIMD
  Flags       : none
  Extra checks: none

CPU dispatch  : 
  Requested   : 'max -xop -fma4'
  Enabled     : ASIMDHP ASIMDDP
  Generated   : none
CCompilerOpt.cache_flush[822] : write cache to path -> /Users/rgommers/code/numpy/build/temp.macosx-11.0-arm64-3.9/ccompiler_opt_cache_clib.py
(numpy-dev) numpy/. main% 

@rgommers
Copy link
Member

error: invalid argument '-std=c++11' not allowed with 'C' is present in the build log, but only in the CcompilerOpt testing stage - those test compiles should indeed not break the build.

@seiko2plus
Copy link
Member

seiko2plus commented Nov 12, 2021

@asmeurer, could you try #20353? It should confirm my #20344 (comment), we still need another patch for testing c++ compilation before the build starts.

@rgommers
Copy link
Member

This should give clear error messages now when the C++ is missing or somehow broken.

howjmay pushed a commit to howjmay/numpy that referenced this issue Nov 14, 2021
Otherwise it gets used for C source too, which is either useless or invalid (for
clang(family compiler)

Fix numpy#20335
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants