Building Sage 9.5 on macOS fails due to flint

590 views
Skip to first unread message

modp...@gmail.com

unread,
Feb 4, 2022, 1:14:48 PM2/4/22
to sage-devel
I'm building Sage 9.5 from source on macOS Monterey 12.2, however, it fails when installing flint. I attach here the top level config and log file for flint. Any ideas what the issue might be?


flint-2.7.1.p0.log
config.log

Dima Pasechnik

unread,
Feb 4, 2022, 1:27:40 PM2/4/22
to sage-devel
Try using flint from Homebrew instead:

brew install flint

(by the way, it seems that your gmp Homebrew installation is broken -
maybe try reinstalling it, from Homebrew?)
And don't forget executing

source .homebrew-build-env

before
./bootstrap && ./configure


On Fri, Feb 4, 2022 at 6:14 PM modp...@gmail.com <modp...@gmail.com> wrote:
>
> I'm building Sage 9.5 from source on macOS Monterey 12.2, however, it fails when installing flint. I attach here the top level config and log file for flint. Any ideas what the issue might be?
>
>
> --
> You received this message because you are subscribed to the Google Groups "sage-devel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/fba7b5fc-b0a2-42e4-b218-8be4e8aca141n%40googlegroups.com.

modp...@gmail.com

unread,
Feb 4, 2022, 3:37:40 PM2/4/22
to sage-devel
I actually had both gmp and flint manually installed before. Can I tell Sage somehow to use my local gmp and flint?
I had already issued: 
source .homebrew-build-env
However, I didn't issue ./bootstrap before doing ./configure.

modp...@gmail.com

unread,
Feb 7, 2022, 7:05:49 AM2/7/22
to sage-devel
So any ideas how to solve this without installing gmp and flint from Homebrew? As I have already manually compiled and built them in my machine.

Matthias Koeppe

unread,
Feb 7, 2022, 12:12:18 PM2/7/22
to sage-devel
Yes, you can clear out /usr/local and start the build from scratch.

Dima Pasechnik

unread,
Feb 7, 2022, 12:19:33 PM2/7/22
to sage-devel


On Mon, 7 Feb 2022, 17:12 Matthias Koeppe, <matthia...@gmail.com> wrote:
Yes, you can clear out /usr/local and start the build from scratch.


On Monday, February 7, 2022 at 4:05:49 AM UTC-8 modp...@gmail.com wrote:
So any ideas how to solve this without installing gmp and flint from Homebrew? As I have already manually compiled and built them in my machine.

On Friday, February 4, 2022 at 9:37:40 PM UTC+1 modp...@gmail.com wrote:
I actually had both gmp and flint manually installed before. Can I tell Sage somehow to use my local gmp and flint?

your gmp is missing C++ part,
which is a requirement for Sage.

I had already issued: 
source .homebrew-build-env
However, I didn't issue ./bootstrap before doing ./configure.

On Friday, February 4, 2022 at 7:27:40 PM UTC+1 dim...@gmail.com wrote:
Try using flint from Homebrew instead:

brew install flint

(by the way, it seems that your gmp Homebrew installation is broken -
maybe try reinstalling it, from Homebrew?)
And don't forget executing

source .homebrew-build-env

before
./bootstrap && ./configure


On Fri, Feb 4, 2022 at 6:14 PM modp...@gmail.com <modp...@gmail.com> wrote:
>
> I'm building Sage 9.5 from source on macOS Monterey 12.2, however, it fails when installing flint. I attach here the top level config and log file for flint. Any ideas what the issue might be?
>
>
> --
> You received this message because you are subscribed to the Google Groups "sage-devel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/fba7b5fc-b0a2-42e4-b218-8be4e8aca141n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+...@googlegroups.com.

Dima Pasechnik

unread,
Feb 7, 2022, 5:10:32 PM2/7/22
to sage-devel
On Mon, Feb 7, 2022 at 5:19 PM Dima Pasechnik <dim...@gmail.com> wrote:
>
>
>
> On Mon, 7 Feb 2022, 17:12 Matthias Koeppe, <matthia...@gmail.com> wrote:
>>
>> Yes, you can clear out /usr/local and start the build from scratch.
>>
>>
>> On Monday, February 7, 2022 at 4:05:49 AM UTC-8 modp...@gmail.com wrote:
>>>
>>> So any ideas how to solve this without installing gmp and flint from Homebrew? As I have already manually compiled and built them in my machine.
>>>
>>> On Friday, February 4, 2022 at 9:37:40 PM UTC+1 modp...@gmail.com wrote:
>>>>
>>>> I actually had both gmp and flint manually installed before. Can I tell Sage somehow to use my local gmp and flint?
>
>
> your gmp is missing C++ part,
> which is a requirement for Sage.

You can actually use Homebrew to build gmp (or any other package
there) from source, if that's what you must do,
using formula they provide for this.
(you already use gfortran from Homebrew, as far as one can see)
Namely, for gmp:

brew install --enable-bar gmp

modp...@gmail.com

unread,
Feb 8, 2022, 7:27:46 AM2/8/22
to sage-devel
If I run "brew install --enable-bar gmp" it throws error that --enable-bar does not exist.
Anyway, I installed the C++ part of gmp as well. But now it fails in building the arb package. 
I attach here the updated config and log.

arb-2.19.0.p0.log
config.log

Dima Pasechnik

unread,
Feb 8, 2022, 7:33:38 AM2/8/22
to sage-devel
You already have (or had) arb installed in /usr/local/, as the log
file tells you:


gamma.c:843:9: note: did you mean 'arb_rising_ui'?
/usr/local/include/arb.h:572:6: note: 'arb_rising_ui' declared here

Also, note that after re-installing gmp you might need to rebuild
other packages which depend on it: mpfr, flint, etc...
> To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/d0dd8eef-4a98-4622-8043-f5b2bc5c9261n%40googlegroups.com.

Dima Pasechnik

unread,
Feb 8, 2022, 7:38:16 AM2/8/22
to sage-devel
On Tue, Feb 8, 2022 at 12:27 PM modp...@gmail.com <modp...@gmail.com> wrote:
>
> If I run "brew install --enable-bar gmp" it throws error that --enable-bar does not exist.

I saw that in https://docs.brew.sh/FAQ - but never tried myself, sorry.
Perhaps the correct name for this option is --build-from-source

i.e.

brew install --build-from-source gmp
> To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/d0dd8eef-4a98-4622-8043-f5b2bc5c9261n%40googlegroups.com.

modp...@gmail.com

unread,
Feb 8, 2022, 1:43:35 PM2/8/22
to sage-devel
I don't recall installing arb before, maybe it was installed as part of some package.
How can I circumvent the error now? I tried to reinstall arb using brew, but did not help.
I still get this error when building Sage.

Dima Pasechnik

unread,
Feb 8, 2022, 1:46:51 PM2/8/22
to sage-devel
post the latest config.log, it should be clearer then.

modp...@gmail.com

unread,
Feb 8, 2022, 3:25:12 PM2/8/22
to sage-devel
Here are the logs again.
arb-2.19.0.p0.log
config.log

Dima Pasechnik

unread,
Feb 8, 2022, 3:41:10 PM2/8/22
to sage-devel
Your flint installation is broken. It should be linked to NTL (this is provided by Homebrew's NTL).

Well, I don't think I understand what you are trying to do.

If you want to use packages installed in /usr/local, they should not be broken.



modp...@gmail.com

unread,
Feb 9, 2022, 5:32:38 AM2/9/22
to sage-devel
I don't know what broken for Sage means and what you mean that "should be linked to NTL". 
I had manually built and installed gmp, flint and NTL before, and they work fine. But it seems Sage 
requires them to be configured with certain options in mind. For example, I recompiled gmp and flint 
by first configuring with --enable-cxx as Sage seems to require C++ part too. Anything else that's 
needed? I just don't want to use Homebrew for the packages like gmp, flint and NTL that I had 
already before built from source.

modp...@gmail.com

unread,
Feb 9, 2022, 5:36:13 AM2/9/22
to sage-devel
I think the issue might be MPIR actually, as I couldn't built it from source back then, it showed errors that 
it cannot find suitable compiler, and then I just installed it via Homebrew. But for example to my knowledge 
building flint requires to have built MPIR with --enable-gmpcompat option, which I do not know if the 
installation from Homebrew does or not by default.

Dima Pasechnik

unread,
Feb 9, 2022, 5:38:53 AM2/9/22
to sage-devel
On Wed, Feb 9, 2022 at 10:32 AM modp...@gmail.com <modp...@gmail.com> wrote:
>
> I don't know what broken for Sage means and what you mean that "should be linked to NTL".
> I had manually built and installed gmp, flint and NTL before, and they work fine. But it seems Sage
> requires them to be configured with certain options in mind. For example, I recompiled gmp and flint
> by first configuring with --enable-cxx as Sage seems to require C++ part too. Anything else that's
> needed? I just don't want to use Homebrew for the packages like gmp, flint and NTL that I had
> already before built from source.

well, yes, there are options. You might find them either in Homebrew
formulae, or in Sage installation scripts.
E.g. https://github.com/sagemath/sage/blob/develop/build/pkgs/flint/spkg-install.in
is for flint.
As you see, it needs --with-ntl.
A system flint package built without this option, i.e. not linked to
the NTL library, will be rejected by ./configure, as
you can duly see in config.log, as well as in the output of ./configure.
> To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/56901403-9cb5-4539-a8bc-f6275fbb8418n%40googlegroups.com.

Dima Pasechnik

unread,
Feb 9, 2022, 5:40:32 AM2/9/22
to sage-devel
MPIR has been removed from Sage, there is no MPIR in 9.5 at all.
> To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/3464016a-8595-4137-8fbc-52f3cdb9baa6n%40googlegroups.com.

Dima Pasechnik

unread,
Feb 9, 2022, 7:12:31 AM2/9/22
to sage-devel
On Wed, Feb 9, 2022 at 10:40 AM Dima Pasechnik <dim...@gmail.com> wrote:
>
> MPIR has been removed from Sage, there is no MPIR in 9.5 at all.

In the past, MPIR was a replacement for GMP in Sage, but it's a
largely abandoned project now.
No guarantee whether MPIR in GMP-compatible mode would work as a
replacement of GMP for Sage,
this is no longer tested and not recommended.

modp...@gmail.com

unread,
Feb 12, 2022, 9:46:10 AM2/12/22
to sage-devel
I managed to rebuild GMP, NTL and FLINT that seems to work to some extend, but now Sage build fails with docs.
I attached the new configs.

sagemath_doc_html-none.log
config.log

dim...@gmail.com

unread,
Feb 12, 2022, 3:50:57 PM2/12/22
to sage-...@googlegroups.com
On Sat, Feb 12, 2022 at 06:46:10AM -0800, modp...@gmail.com wrote:
> I managed to rebuild GMP, NTL and FLINT that seems to work to some extend,
> but now Sage build fails with docs.
> I attached the new configs.

You have Homebrew's pari/gp conflict with one built by Sage.
One of them should go.

E.g. you can use Homebrew's one by doing

brew install pari-galpol pari-seadata pari-elldata

and then runnnig

make pari-clean
./configure
make build


HTH
> > https://groups.google.com/d/msgid/sage-devel/7c9ac4ed-f32c-4982-90b7-8f284fa2b5efn%40googlegroups.com
> > .
> > > >>>>>>> >
> > > >>>>>>> > --
> > > >>>>>>> > You received this message because you are subscribed to the
> > Google Groups "sage-devel" group.
> > > >>>>>>> > To unsubscribe from this group and stop receiving emails from
> > it, send an email to sage-devel+...@googlegroups.com.
> > > >>>>>>> > To view this discussion on the web visit
> > https://groups.google.com/d/msgid/sage-devel/d0dd8eef-4a98-4622-8043-f5b2bc5c9261n%40googlegroups.com
> > .
> > > >>>>>>
> > > >>>>>> --
> > > >>>>>> You received this message because you are subscribed to the
> > Google Groups "sage-devel" group.
> > > >>>>>> To unsubscribe from this group and stop receiving emails from it,
> > send an email to sage-devel+...@googlegroups.com.
> > > >>>>>>
> > > >>>>>> To view this discussion on the web visit
> > https://groups.google.com/d/msgid/sage-devel/851c6388-fe81-4972-81cc-5b2f3a9e2193n%40googlegroups.com
> > .
> > > >>>>
> > > >>>> --
> > > >>>> You received this message because you are subscribed to the Google
> > Groups "sage-devel" group.
> > > >>>> To unsubscribe from this group and stop receiving emails from it,
> > send an email to sage-devel+...@googlegroups.com.
> > > >>>>
> > > >>>> To view this discussion on the web visit
> > https://groups.google.com/d/msgid/sage-devel/590c2ea5-4590-46af-89a8-ade7e77345afn%40googlegroups.com
> > .
> > > >
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups "sage-devel" group.
> > > > To unsubscribe from this group and stop receiving emails from it, send
> > an email to sage-devel+...@googlegroups.com.
> > > > To view this discussion on the web visit
> > https://groups.google.com/d/msgid/sage-devel/3464016a-8595-4137-8fbc-52f3cdb9baa6n%40googlegroups.com
> > .
> >
>
> --
> You received this message because you are subscribed to the Google Groups "sage-devel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/f7eef622-fcd9-4152-8cd3-ce460d275854n%40googlegroups.com.

> Traceback (most recent call last):
> File "/usr/local/Cellar/python@3.9/3.9.10/Frameworks/Python.framework/Versions/3.9/lib/python3.9/runpy.py", line 188, in _run_module_as_main
> mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
> File "/usr/local/Cellar/python@3.9/3.9.10/Frameworks/Python.framework/Versions/3.9/lib/python3.9/runpy.py", line 147, in _get_module_details
> return _get_module_details(pkg_main_name, error)
> File "/usr/local/Cellar/python@3.9/3.9.10/Frameworks/Python.framework/Versions/3.9/lib/python3.9/runpy.py", line 111, in _get_module_details
> __import__(pkg_name)
> File "/Users/myuser/app/sage-9.5/local/var/lib/sage/venv-python3.9/lib/python3.9/site-packages/sage_docbuild/__init__.py", line 55, in <module>
> import sage.all
> File "/Users/myuser/app/sage-9.5/local/var/lib/sage/venv-python3.9/lib/python3.9/site-packages/sage/all.py", line 120, in <module>
> from sage.misc.all import * # takes a while
> File "/Users/myuser/app/sage-9.5/local/var/lib/sage/venv-python3.9/lib/python3.9/site-packages/sage/misc/all.py", line 90, in <module>
> from .functional import (additive_order,
> File "/Users/myuser/app/sage-9.5/local/var/lib/sage/venv-python3.9/lib/python3.9/site-packages/sage/misc/functional.py", line 26, in <module>
> from sage.rings.complex_double import CDF
> File "sage/rings/complex_double.pyx", line 1, in init sage.rings.complex_double (build/cythonized/sage/rings/complex_double.c:24860)
> File "sage/rings/integer.pyx", line 1, in init sage.rings.integer (build/cythonized/sage/rings/integer.c:53723)
> File "sage/rings/rational.pyx", line 79, in init sage.rings.rational (build/cythonized/sage/rings/rational.cpp:40092)
> File "sage/rings/integer_ring.pyx", line 57, in init sage.rings.integer_ring (build/cythonized/sage/rings/integer_ring.c:18132)
> File "/Users/myuser/app/sage-9.5/local/var/lib/sage/venv-python3.9/lib/python3.9/site-packages/sage/libs/pari/__init__.py", line 205, in <module>
> pari = _get_pari_instance()
> File "/Users/myuser/app/sage-9.5/local/var/lib/sage/venv-python3.9/lib/python3.9/site-packages/sage/libs/pari/__init__.py", line 185, in _get_pari_instance
> P = Pari(stack_initial, stack_max)
> File "cypari2/pari_instance.pyx", line 618, in cypari2.pari_instance.Pari.__init__
> File "cypari2/stack.pyx", line 157, in cypari2.stack.set_pari_stack_size
> File "cypari2/stack.pyx", line 150, in cypari2.stack.before_resize
> RuntimeError: cannot resize PARI stack here
> Error: './sage --docbuild --all-documents' failed
> make[5]: *** [doc-inventory-reference] Error 1

> This file contains any messages produced by compilers while
> running configure, to aid debugging if configure makes a mistake.
>
> It was created by Sage configure 9.5, which was
> generated by GNU Autoconf 2.71. Invocation command line was
>
> $ ./configure
>
> ## --------- ##
> ## Platform. ##
> ## --------- ##
>
> hostname = tuwien
> uname -m = x86_64
> uname -r = 21.3.0
> uname -s = Darwin
> uname -v = Darwin Kernel Version 21.3.0: Wed Jan 5 21:37:58 PST 2022; root:xnu-8019.80.24~20/RELEASE_X86_64
>
> /usr/bin/uname -p = i386
> /bin/uname -X = unknown
>
> /bin/arch = unknown
> /usr/bin/arch -k = unknown
> /usr/convex/getsysinfo = unknown
> /usr/bin/hostinfo = Mach kernel version:
> Darwin Kernel Version 21.3.0: Wed Jan 5 21:37:58 PST 2022; root:xnu-8019.80.24~20/RELEASE_X86_64
> Kernel configured for up to 4 processors.
> 2 processors are physically available.
> 4 processors are logically available.
> Processor type: x86_64h (Intel x86-64h Haswell)
> Processors active: 0 1 2 3
> Primary memory available: 8.00 gigabytes
> Default processor set: 431 tasks, 2197 threads, 4 processors
> Load average: 3.85, Mach factor: 1.09
> /bin/machine = unknown
> /usr/bin/oslevel = unknown
> /bin/universe = unknown
>
> PATH: /Users/myuser/.opam/4.12.0/bin/
> PATH: /usr/local/opt/polymake/bin/
> PATH: /usr/local/opt/texinfo/bin/
> PATH: /usr/local/opt/bzip2/bin/
> PATH: /usr/local/opt/gettext/bin/
> PATH: /Users/myuser/.local/bin/
> PATH: /Users/myuser/.gvm/bin/
> PATH: /Users/myuser/.nvm/versions/node/v16.13.0/bin/
> PATH: /Users/myuser/.local/bin/
> PATH: /usr/local/bin/
> PATH: /usr/bin/
> PATH: /bin/
> PATH: /usr/sbin/
> PATH: /sbin/
> PATH: /usr/local/go/bin/
> PATH: /usr/local/share/dotnet/
> PATH: ~/.dotnet/tools/
> PATH: /Library/Apple/usr/bin/
> PATH: /Applications/Postgres.app/Contents/Versions/latest/bin/
> PATH: /Users/myuser/app/sage-9.5/local/bin/
> PATH: /usr/local/texlive/2021/bin/universal-darwin/
> PATH: /Users/myuser/.local/share/solana/install/activate_release/bin/
> PATH: /Users/myuser/.cargo/bin/
> PATH: /Users/myuser/sdk/jdk-12.0.1/Contents/Home/bin/
> PATH: /Users/myuser/tools/depot_tools/
> PATH: /Users/myuser/dev/go/bin/
> PATH: /usr/local/go/bin/
>
>
> ## ----------- ##
> ## Core tests. ##
> ## ----------- ##
>
> configure:4619: looking for aux files: config.guess config.sub compile config.rpath missing install-sh
> configure:4632: trying ./config/
> configure:4661: ./config/config.guess found
> configure:4661: ./config/config.sub found
> configure:4661: ./config/compile found
> configure:4661: ./config/config.rpath found
> configure:4661: ./config/missing found
> configure:4643: ./config/install-sh found
> configure:4798: checking for a BSD-compatible install
> configure:4871: result: /usr/local/bin/ginstall -c
> configure:4882: checking whether build environment is sane
> configure:4937: result: yes
> configure:5096: checking for a race-free mkdir -p
> configure:5140: result: /usr/local/bin/gmkdir -p
> configure:5147: checking for gawk
> configure:5182: result: no
> configure:5147: checking for mawk
> configure:5182: result: no
> configure:5147: checking for nawk
> configure:5182: result: no
> configure:5147: checking for awk
> configure:5168: found /usr/bin/awk
> configure:5179: result: awk
> configure:5190: checking whether make sets $(MAKE)
> configure:5213: result: yes
> configure:5243: checking whether make supports nested variables
> configure:5261: result: yes
> configure:5400: checking whether to enable maintainer-specific portions of Makefiles
> configure:5410: result: yes
> configure:5439: checking whether make supports the include directive
> configure:5454: make -f confmf.GNU && cat confinc.out
> this is the am__doit target
> configure:5457: $? = 0
> configure:5476: result: yes (GNU style)
> configure:5552: checking for gcc
> configure:5584: result: /usr/bin/cc
> configure:5937: checking for C compiler version
> configure:5946: /usr/bin/cc --version >&5
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> configure:5957: $? = 0
> configure:5946: /usr/bin/cc -v >&5
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> configure:5957: $? = 0
> configure:5946: /usr/bin/cc -V >&5
> clang: error: argument to '-V' is missing (expected 1 value)
> clang: error: no input files
> configure:5957: $? = 1
> configure:5946: /usr/bin/cc -qversion >&5
> clang: error: unknown argument '-qversion'; did you mean '--version'?
> clang: error: no input files
> configure:5957: $? = 1
> configure:5946: /usr/bin/cc -version >&5
> clang: error: unknown argument '-version'; did you mean '--version'?
> clang: error: no input files
> configure:5957: $? = 1
> configure:5977: checking whether the C compiler works
> configure:5999: /usr/bin/cc -I/usr/local/include -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c >&5
> configure:6003: $? = 0
> configure:6053: result: yes
> configure:6056: checking for C compiler default output file name
> configure:6058: result: a.out
> configure:6064: checking for suffix of executables
> configure:6071: /usr/bin/cc -o conftest -I/usr/local/include -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c >&5
> configure:6075: $? = 0
> configure:6098: result:
> configure:6120: checking whether we are cross compiling
> configure:6128: /usr/bin/cc -o conftest -I/usr/local/include -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c >&5
> configure:6132: $? = 0
> configure:6139: ./conftest
> configure:6143: $? = 0
> configure:6158: result: no
> configure:6163: checking for suffix of object files
> configure:6186: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include conftest.c >&5
> configure:6190: $? = 0
> configure:6212: result: o
> configure:6216: checking whether the compiler supports GNU C
> configure:6236: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include conftest.c >&5
> configure:6236: $? = 0
> configure:6246: result: yes
> configure:6257: checking whether /usr/bin/cc accepts -g
> configure:6278: /usr/bin/cc -c -g -I/usr/local/opt/readline/include conftest.c >&5
> configure:6278: $? = 0
> configure:6322: result: yes
> configure:6342: checking for /usr/bin/cc option to enable C11 features
> configure:6357: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include conftest.c >&5
> configure:6357: $? = 0
> configure:6375: result: none needed
> configure:6491: checking whether /usr/bin/cc understands -c and -o together
> configure:6514: /usr/bin/cc -c conftest.c -o conftest2.o
> configure:6517: $? = 0
> configure:6514: /usr/bin/cc -c conftest.c -o conftest2.o
> configure:6517: $? = 0
> configure:6529: result: yes
> configure:6548: checking dependency style of /usr/bin/cc
> configure:6660: result: none
> configure:6681: checking build system type
> configure:6696: result: x86_64-apple-darwin21.3.0
> configure:6716: checking host system type
> configure:6730: result: x86_64-apple-darwin21.3.0
> configure:6778: checking for ld used by /usr/bin/cc
> configure:6906: result: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
> configure:6913: checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld
> configure:6929: result: no
> configure:6937: checking for shared library run path origin
> configure:6951: result: done
> configure:7032: checking for root user
> configure:7041: result: no
> configure:7162: checking for a sed that does not truncate output
> configure:7232: result: /usr/bin/sed
> configure:7240: checking for ar
> configure:7261: found /usr/bin/ar
> configure:7273: result: yes
> configure:7294: checking for m4
> configure:7315: found /usr/bin/m4
> configure:7327: result: yes
> configure:7407: checking for pkg-config
> configure:7430: found /usr/local/bin/pkg-config
> configure:7442: result: /usr/local/bin/pkg-config
> configure:7467: checking pkg-config is at least version 0.29
> configure:7470: result: yes
> configure:7481: checking for ranlib
> configure:7502: found /usr/bin/ranlib
> configure:7514: result: yes
> configure:7535: checking for strip
> configure:7556: found /usr/bin/strip
> configure:7568: result: yes
> configure:7588: checking for GNU or BSD tar
> configure:7642: result: /usr/bin/tar
> configure:7654: checking for GNU make
> configure:7702: result: /usr/bin/make
> configure:7713: checking for Python
> configure:7716: result: /usr/local/opt/python@2/bin/python2.7
> configure:7727: checking for latex
> configure:7748: found /usr/local/texlive/2021/bin/universal-darwin/latex
> configure:7760: result: yes
> configure:7784: checking for perl
> configure:7807: found /usr/local/bin/perl
> configure:7819: result: /usr/local/bin/perl
> configure:7827: checking for Perl version 5.8.0 or later
> configure:7840: result: yes
> configure:7871: checking whether a conda environment is active
> configure:7879: result: no
> configure:7985: checking for gcc
> configure:8017: result: /usr/bin/cc
> configure:8370: checking for C compiler version
> configure:8379: /usr/bin/cc --version >&5
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> configure:8390: $? = 0
> configure:8379: /usr/bin/cc -v >&5
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> configure:8390: $? = 0
> configure:8379: /usr/bin/cc -V >&5
> clang: error: argument to '-V' is missing (expected 1 value)
> clang: error: no input files
> configure:8390: $? = 1
> configure:8379: /usr/bin/cc -qversion >&5
> clang: error: unknown argument '-qversion'; did you mean '--version'?
> clang: error: no input files
> configure:8390: $? = 1
> configure:8379: /usr/bin/cc -version >&5
> clang: error: unknown argument '-version'; did you mean '--version'?
> clang: error: no input files
> configure:8390: $? = 1
> configure:8394: checking whether the compiler supports GNU C
> configure:8424: result: yes
> configure:8435: checking whether /usr/bin/cc accepts -g
> configure:8500: result: yes
> configure:8520: checking for /usr/bin/cc option to enable C11 features
> configure:8553: result: none needed
> configure:8669: checking whether /usr/bin/cc understands -c and -o together
> configure:8707: result: yes
> configure:8726: checking dependency style of /usr/bin/cc
> configure:8838: result: none
> configure:8858: checking how to run the C preprocessor
> configure:8884: /usr/bin/cc -E -I/usr/local/opt/readline/include conftest.c
> configure:8884: $? = 0
> configure:8899: /usr/bin/cc -E -I/usr/local/opt/readline/include conftest.c
> conftest.c:11:10: fatal error: 'ac_nonexistent.h' file not found
> #include <ac_nonexistent.h>
> ^~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:8899: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | /* end confdefs.h. */
> | #include <ac_nonexistent.h>
> configure:8926: result: /usr/bin/cc -E
> configure:8940: /usr/bin/cc -E -I/usr/local/opt/readline/include conftest.c
> configure:8940: $? = 0
> configure:8955: /usr/bin/cc -E -I/usr/local/opt/readline/include conftest.c
> conftest.c:11:10: fatal error: 'ac_nonexistent.h' file not found
> #include <ac_nonexistent.h>
> ^~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:8955: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | /* end confdefs.h. */
> | #include <ac_nonexistent.h>
> configure:9054: checking for g++
> configure:9075: found /usr/bin/g++
> configure:9086: result: g++
> configure:9113: checking for C++ compiler version
> configure:9122: g++ --version >&5
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
> configure:9133: $? = 0
> configure:9122: g++ -v >&5
> Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> configure:9133: $? = 0
> configure:9122: g++ -V >&5
> clang: error: argument to '-V' is missing (expected 1 value)
> clang: error: no input files
> configure:9133: $? = 1
> configure:9122: g++ -qversion >&5
> clang: error: unknown argument '-qversion'; did you mean '--version'?
> clang: error: no input files
> configure:9133: $? = 1
> configure:9137: checking whether the compiler supports GNU C++
> configure:9157: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:9157: $? = 0
> configure:9167: result: yes
> configure:9178: checking whether g++ accepts -g
> configure:9199: g++ -c -g -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:9199: $? = 0
> configure:9243: result: yes
> configure:9263: checking for g++ option to enable C++11 features
> configure:9278: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> conftest.cpp:57:3: error: "Compiler does not advertise C++11 conformance"
> # error "Compiler does not advertise C++11 conformance"
> ^
> conftest.cpp:62:3: error: unknown type name 'constexpr'
> constexpr int get_val() { return 20; }
> ^
> conftest.cpp:74:17: error: delegating constructors are permitted only in C++11
> delegate(): delegate(2354) {}
> ^~~~~~~~
> conftest.cpp:85:26: warning: 'override' keyword is a C++11 extension [-Wc++11-extensions]
> virtual int getval() override final { return this->n * 2; }
> ^
> conftest.cpp:85:35: warning: 'final' keyword is a C++11 extension [-Wc++11-extensions]
> virtual int getval() override final { return this->n * 2; }
> ^
> conftest.cpp:92:16: warning: defaulted function definitions are a C++11 extension [-Wc++11-extensions]
> nocopy() = default;
> ^
> conftest.cpp:93:29: warning: deleted function definitions are a C++11 extension [-Wc++11-extensions]
> nocopy(const nocopy&) = delete;
> ^
> conftest.cpp:94:41: warning: deleted function definitions are a C++11 extension [-Wc++11-extensions]
> nocopy & operator=(const nocopy&) = delete;
> ^
> conftest.cpp:106:25: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> template <typename V> auto sum(V first) -> V
> ^
> conftest.cpp:106:25: error: 'auto' not allowed in function return type
> template <typename V> auto sum(V first) -> V
> ^~~~
> conftest.cpp:106:42: error: expected ';' at end of declaration
> template <typename V> auto sum(V first) -> V
> ^
> ;
> conftest.cpp:106:43: error: cannot use arrow operator on a type
> template <typename V> auto sum(V first) -> V
> ^
> conftest.cpp:110:33: warning: variadic templates are a C++11 extension [-Wc++11-extensions]
> template <typename V, typename... Args> auto sum(V first, Args... rest) -> V
> ^
> conftest.cpp:110:43: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> template <typename V, typename... Args> auto sum(V first, Args... rest) -> V
> ^
> conftest.cpp:110:43: error: 'auto' not allowed in function return type
> template <typename V, typename... Args> auto sum(V first, Args... rest) -> V
> ^~~~
> conftest.cpp:110:74: error: expected ';' at end of declaration
> template <typename V, typename... Args> auto sum(V first, Args... rest) -> V
> ^
> ;
> conftest.cpp:110:75: error: cannot use arrow operator on a type
> template <typename V, typename... Args> auto sum(V first, Args... rest) -> V
> ^
> conftest.cpp:134:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> auto a1 = 6538;
> ^
> conftest.cpp:135:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> auto a2 = 48573953.4;
> ^
> conftest.cpp:136:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> auto a3 = "String literal";
> ^
> conftest.cpp:139:8: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> for (auto i = a3; *i; ++i) { total += *i; }
> ^
> conftest.cpp:155:8: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> for (auto &x : array) { x += 23; }
> ^
> conftest.cpp:155:16: warning: range-based for loop is a C++11 extension [-Wc++11-extensions]
> for (auto &x : array) { x += 23; }
> ^
> conftest.cpp:160:17: error: expected expression
> assert (eval ([](int x) { return x*2; }, 21) == 42);
> ^
> conftest.cpp:162:17: error: expected expression
> assert (eval ([&](double x) { return d += x; }, 3.0) == 5.0);
> ^
> conftest.cpp:164:17: error: expected expression
> assert (eval ([=](double x) mutable { return d += x; }, 4.0) == 9.0);
> ^
> conftest.cpp:170:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> auto a = sum(1);
> ^
> conftest.cpp:170:12: error: no matching function for call to 'sum'
> auto a = sum(1);
> ^~~
> conftest.cpp:171:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> auto b = sum(1, 2);
> ^
> conftest.cpp:171:12: error: no matching function for call to 'sum'
> auto b = sum(1, 2);
> ^~~
> conftest.cpp:172:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions]
> auto c = sum(1.0, 2.0, 3.0);
> ^
> conftest.cpp:172:12: error: no matching function for call to 'sum'
> auto c = sum(1.0, 2.0, 3.0);
> ^~~
> conftest.cpp:177:25: warning: empty parentheses interpreted as a function declaration [-Wvexing-parse]
> cxx11test::delegate d2();
> ^~
> conftest.cpp:177:25: note: remove parentheses to declare a variable
> cxx11test::delegate d2();
> ^~
> conftest.cpp:190:16: error: found '<::' after a template name which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?
> test_template<::test_template<int>> v(test_template<int>(12));
> ^~~
> < ::
> conftest.cpp:190:36: error: a space is required between consecutive right angle brackets (use '> >')
> test_template<::test_template<int>> v(test_template<int>(12));
> ^~
> > >
> conftest.cpp:194:22: error: use of undeclared identifier 'u8'
> char const *utf8 = u8"UTF-8 string \u2500";
> ^
> conftest.cpp:194:24: error: expected ';' at end of declaration
> char const *utf8 = u8"UTF-8 string \u2500";
> ^
> ;
> fatal error: too many errors emitted, stopping now [-ferror-limit=]
> 18 warnings and 20 errors generated.
> configure:9278: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | /* end confdefs.h. */
> |
> | // Does the compiler advertise C++98 conformance?
> | #if !defined __cplusplus || __cplusplus < 199711L
> | # error "Compiler does not advertise C++98 conformance"
> | #endif
> |
> | // These inclusions are to reject old compilers that
> | // lack the unsuffixed header files.
> | #include <cstdlib>
> | #include <exception>
> |
> | // <cassert> and <cstring> are *not* freestanding headers in C++98.
> | extern void assert (int);
> | namespace std {
> | extern int strcmp (const char *, const char *);
> | }
> |
> | // Namespaces, exceptions, and templates were all added after "C++ 2.0".
> | using std::exception;
> | using std::strcmp;
> |
> | namespace {
> |
> | void test_exception_syntax()
> | {
> | try {
> | throw "test";
> | } catch (const char *s) {
> | // Extra parentheses suppress a warning when building autoconf itself,
> | // due to lint rules shared with more typical C programs.
> | assert (!(strcmp) (s, "test"));
> | }
> | }
> |
> | template <typename T> struct test_template
> | {
> | T const val;
> | explicit test_template(T t) : val(t) {}
> | template <typename U> T add(U u) { return static_cast<T>(u) + val; }
> | };
> |
> | } // anonymous namespace
> |
> |
> | // Does the compiler advertise C++ 2011 conformance?
> | #if !defined __cplusplus || __cplusplus < 201103L
> | # error "Compiler does not advertise C++11 conformance"
> | #endif
> |
> | namespace cxx11test
> | {
> | constexpr int get_val() { return 20; }
> |
> | struct testinit
> | {
> | int i;
> | double d;
> | };
> |
> | class delegate
> | {
> | public:
> | delegate(int n) : n(n) {}
> | delegate(): delegate(2354) {}
> |
> | virtual int getval() { return this->n; };
> | protected:
> | int n;
> | };
> |
> | class overridden : public delegate
> | {
> | public:
> | overridden(int n): delegate(n) {}
> | virtual int getval() override final { return this->n * 2; }
> | };
> |
> | class nocopy
> | {
> | public:
> | nocopy(int i): i(i) {}
> | nocopy() = default;
> | nocopy(const nocopy&) = delete;
> | nocopy & operator=(const nocopy&) = delete;
> | private:
> | int i;
> | };
> |
> | // for testing lambda expressions
> | template <typename Ret, typename Fn> Ret eval(Fn f, Ret v)
> | {
> | return f(v);
> | }
> |
> | // for testing variadic templates and trailing return types
> | template <typename V> auto sum(V first) -> V
> | {
> | return first;
> | }
> | template <typename V, typename... Args> auto sum(V first, Args... rest) -> V
> | {
> | return first + sum(rest...);
> | }
> | }
> |
> |
> | int
> | main (int argc, char **argv)
> | {
> | int ok = 0;
> |
> | assert (argc);
> | assert (! argv[0]);
> | {
> | test_exception_syntax ();
> | test_template<double> tt (2.0);
> | assert (tt.add (4) == 6.0);
> | assert (true && !false);
> | }
> |
> |
> | {
> | // Test auto and decltype
> | auto a1 = 6538;
> | auto a2 = 48573953.4;
> | auto a3 = "String literal";
> |
> | int total = 0;
> | for (auto i = a3; *i; ++i) { total += *i; }
> |
> | decltype(a2) a4 = 34895.034;
> | }
> | {
> | // Test constexpr
> | short sa[cxx11test::get_val()] = { 0 };
> | }
> | {
> | // Test initializer lists
> | cxx11test::testinit il = { 4323, 435234.23544 };
> | }
> | {
> | // Test range-based for
> | int array[] = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3,
> | 14, 19, 17, 8, 6, 20, 16, 2, 11, 1};
> | for (auto &x : array) { x += 23; }
> | }
> | {
> | // Test lambda expressions
> | using cxx11test::eval;
> | assert (eval ([](int x) { return x*2; }, 21) == 42);
> | double d = 2.0;
> | assert (eval ([&](double x) { return d += x; }, 3.0) == 5.0);
> | assert (d == 5.0);
> | assert (eval ([=](double x) mutable { return d += x; }, 4.0) == 9.0);
> | assert (d == 5.0);
> | }
> | {
> | // Test use of variadic templates
> | using cxx11test::sum;
> | auto a = sum(1);
> | auto b = sum(1, 2);
> | auto c = sum(1.0, 2.0, 3.0);
> | }
> | {
> | // Test constructor delegation
> | cxx11test::delegate d1;
> | cxx11test::delegate d2();
> | cxx11test::delegate d3(45);
> | }
> | {
> | // Test override and final
> | cxx11test::overridden o1(55464);
> | }
> | {
> | // Test nullptr
> | char *c = nullptr;
> | }
> | {
> | // Test template brackets
> | test_template<::test_template<int>> v(test_template<int>(12));
> | }
> | {
> | // Unicode literals
> | char const *utf8 = u8"UTF-8 string \u2500";
> | char16_t const *utf16 = u"UTF-8 string \u2500";
> | char32_t const *utf32 = U"UTF-32 string \u2500";
> | }
> |
> | return ok;
> | }
> |
> configure:9296: result: none needed
> configure:9362: checking dependency style of g++
> configure:9474: result: none
> configure:9547: checking for gfortran
> configure:9568: found /usr/local/bin/gfortran
> configure:9579: result: gfortran
> configure:9605: checking for Fortran compiler version
> configure:9614: gfortran --version >&5
> GNU Fortran (Homebrew GCC 11.2.0_3) 11.2.0
> Copyright (C) 2021 Free Software Foundation, Inc.
> This is free software; see the source for copying conditions. There is NO
> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
>
> configure:9625: $? = 0
> configure:9614: gfortran -v >&5
> Using built-in specs.
> COLLECT_GCC=gfortran
> COLLECT_LTO_WRAPPER=/usr/local/Cellar/gcc/11.2.0_3/libexec/gcc/x86_64-apple-darwin21/11/lto-wrapper
> Target: x86_64-apple-darwin21
> Configured with: ../configure --prefix=/usr/local/Cellar/gcc/11.2.0_3 --libdir=/usr/local/Cellar/gcc/11.2.0_3/lib/gcc/11 --disable-nls --enable-checking=release --with-gcc-major-version-only --enable-languages=c,c++,objc,obj-c++,fortran,d --program-suffix=-11 --with-gmp=/usr/local/opt/gmp --with-mpfr=/usr/local/opt/mpfr --with-mpc=/usr/local/opt/libmpc --with-isl=/usr/local/opt/isl --with-zstd=/usr/local/opt/zstd --with-pkgversion='Homebrew GCC 11.2.0_3' --with-bugurl=https://github.com/Homebrew/homebrew-core/issues --enable-libphobos --build=x86_64-apple-darwin21 --with-system-zlib --disable-multilib --without-build-config --with-native-system-header-dir=/usr/include --with-sysroot=/Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk
> Thread model: posix
> Supported LTO compression algorithms: zlib zstd
> gcc version 11.2.0 (Homebrew GCC 11.2.0_3)
> configure:9625: $? = 0
> configure:9614: gfortran -V >&5
> gfortran: error: unrecognized command-line option '-V'
> gfortran: fatal error: no input files
> compilation terminated.
> configure:9625: $? = 1
> configure:9614: gfortran -qversion >&5
> gfortran: error: unrecognized command-line option '-qversion'; did you mean '--version'?
> gfortran: fatal error: no input files
> compilation terminated.
> configure:9625: $? = 1
> configure:9634: checking whether the compiler supports GNU Fortran
> configure:9648: gfortran -c conftest.F >&5
> configure:9648: $? = 0
> configure:9658: result: yes
> configure:9666: checking whether gfortran accepts -g
> configure:9678: gfortran -c -g conftest.f >&5
> configure:9678: $? = 0
> configure:9687: result: yes
> configure:9782: checking for gcc
> configure:9803: found /usr/bin/gcc
> configure:9814: result: gcc
> configure:9839: checking for Objective C compiler version
> configure:9848: gcc --version >&5
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
> configure:9859: $? = 0
> configure:9848: gcc -v >&5
> Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> configure:9859: $? = 0
> configure:9848: gcc -V >&5
> clang: error: argument to '-V' is missing (expected 1 value)
> clang: error: no input files
> configure:9859: $? = 1
> configure:9848: gcc -qversion >&5
> clang: error: unknown argument '-qversion'; did you mean '--version'?
> clang: error: no input files
> configure:9859: $? = 1
> configure:9863: checking whether the compiler supports GNU Objective C
> configure:9883: gcc -c -I/usr/local/opt/readline/include conftest.m >&5
> configure:9883: $? = 0
> configure:9893: result: yes
> configure:9904: checking whether gcc accepts -g
> configure:9925: gcc -c -g -I/usr/local/opt/readline/include conftest.m >&5
> configure:9925: $? = 0
> configure:9969: result: yes
> configure:9994: checking dependency style of gcc
> configure:10104: result: none
> configure:10178: checking for g++
> configure:10199: found /usr/bin/g++
> configure:10210: result: g++
> configure:10235: checking for Objective C++ compiler version
> configure:10244: g++ --version >&5
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
> configure:10255: $? = 0
> configure:10244: g++ -v >&5
> Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
> Apple clang version 13.0.0 (clang-1300.0.29.30)
> Target: x86_64-apple-darwin21.3.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
> configure:10255: $? = 0
> configure:10244: g++ -V >&5
> clang: error: argument to '-V' is missing (expected 1 value)
> clang: error: no input files
> configure:10255: $? = 1
> configure:10244: g++ -qversion >&5
> clang: error: unknown argument '-qversion'; did you mean '--version'?
> clang: error: no input files
> configure:10255: $? = 1
> configure:10259: checking whether the compiler supports GNU Objective C++
> configure:10279: g++ -c -I/usr/local/opt/readline/include conftest.mm >&5
> configure:10279: $? = 0
> configure:10289: result: yes
> configure:10300: checking whether g++ accepts -g
> configure:10321: g++ -c -g -I/usr/local/opt/readline/include conftest.mm >&5
> configure:10321: $? = 0
> configure:10365: result: yes
> configure:10390: checking dependency style of g++
> configure:10500: result: none
> configure:10541: checking for stdio.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10541: checking for stdlib.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10541: checking for string.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10541: checking for inttypes.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10541: checking for stdint.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10541: checking for strings.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10541: checking for sys/stat.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10541: checking for sys/types.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10541: checking for unistd.h
> configure:10541: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10541: $? = 0
> configure:10541: result: yes
> configure:10566: checking for complex.h
> configure:10566: g++ -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:10566: $? = 0
> configure:10566: result: yes
> configure:10589: checking for sqrt in -lm
> configure:10611: g++ -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> configure:10611: $? = 0
> configure:10621: result: yes
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gcc... ##
> ## ---------------------------------------------------- ##
> configure:10986: checking for C compiler vendor
> configure:11034: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include conftest.c >&5
> conftest.c:28:9: error: use of undeclared identifier 'thisisanerror'
> thisisanerror;
> ^
> 1 error generated.
> configure:11034: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | /* end confdefs.h. */
> |
> | int
> | main (void)
> | {
> |
> | #if !(defined(__ICC) || defined(__ECC) || defined(__INTEL_COMPILER))
> | thisisanerror;
> | #endif
> |
> | ;
> | return 0;
> | }
> configure:11034: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include conftest.c >&5
> conftest.c:28:9: error: use of undeclared identifier 'thisisanerror'
> thisisanerror;
> ^
> 1 error generated.
> configure:11034: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | /* end confdefs.h. */
> |
> | int
> | main (void)
> | {
> |
> | #if !(defined(__xlc__) || defined(__xlC__) || defined(__IBMC__) || defined(__IBMCPP__))
> | thisisanerror;
> | #endif
> |
> | ;
> | return 0;
> | }
> configure:11034: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include conftest.c >&5
> conftest.c:28:9: error: use of undeclared identifier 'thisisanerror'
> thisisanerror;
> ^
> 1 error generated.
> configure:11034: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | /* end confdefs.h. */
> |
> | int
> | main (void)
> | {
> |
> | #if !(defined(__PATHCC__) || defined(__PATHSCALE__))
> | thisisanerror;
> | #endif
> |
> | ;
> | return 0;
> | }
> configure:11034: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include conftest.c >&5
> configure:11034: $? = 0
> configure:11043: result: clang
> configure:11073: checking whether g++ supports C++11 features with -std=gnu++11
> configure:11370: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:11370: $? = 0
> configure:11380: result: yes
> configure:11833: checking if gcc accepts -dumpversion option
> configure:11860: cat conftest.c 1>&5
> int main()
> {
> return 0;
> }
> configure:11863: $? = 0
> configure:11867: /usr/bin/cc -dumpversion -c conftest.c 1>&5
> 13.0.0
> configure:11870: $? = 0
> configure:11874: result: yes
> configure:11903: checking gcc version
> configure:11919: result: 13.0.0
> configure:11933: checking if g++ accepts -dumpversion option
> configure:11960: cat conftest.c 1>&5
> int main()
> {
> return 0;
> }
> configure:11963: $? = 0
> configure:11967: /usr/bin/cc -dumpversion -c conftest.c 1>&5
> 13.0.0
> configure:11970: $? = 0
> configure:11974: result: yes
> configure:12003: checking g++ version
> configure:12019: result: 13.0.0
> configure:12140: checking whether C++ compiler accepts "-march=native"
> configure:12160: g++ -std=gnu++11 -c -march=native -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:12160: $? = 0
> configure:12170: result: yes
> configure:12191: checking for OpenMP flag of C compiler
> configure:12237: /usr/bin/cc -o conftest -I/usr/local/include -fopenmp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c -lm >&5
> clang: error: unsupported option '-fopenmp'
> clang: error: unsupported option '-fopenmp'
> configure:12237: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12237: /usr/bin/cc -o conftest -I/usr/local/include -openmp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c -lm >&5
> Undefined symbols for architecture x86_64:
> "_omp_set_num_threads", referenced from:
> _main in conftest-6d68e0.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:12237: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12237: /usr/bin/cc -o conftest -I/usr/local/include -qopenmp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c -lm >&5
> clang: error: unknown argument '-qopenmp'; did you mean '-fopenmp'?
> configure:12237: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12237: /usr/bin/cc -o conftest -I/usr/local/include -mp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c -lm >&5
> clang: error: unknown argument: '-mp'
> configure:12237: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12237: /usr/bin/cc -o conftest -I/usr/local/include -xopenmp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c -lm >&5
> clang: error: language not recognized: 'openmp'
> configure:12237: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12237: /usr/bin/cc -o conftest -I/usr/local/include -omp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c -lm >&5
> Undefined symbols for architecture x86_64:
> "_omp_set_num_threads", referenced from:
> _main in conftest-1a8441.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:12237: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12237: /usr/bin/cc -o conftest -I/usr/local/include -qsmp=omp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c -lm >&5
> clang: error: unknown argument: '-qsmp=omp'
> configure:12237: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12237: /usr/bin/cc -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.c -lm >&5
> Undefined symbols for architecture x86_64:
> "_omp_set_num_threads", referenced from:
> _main in conftest-f06510.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:12237: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12247: result: unknown
> configure:12275: checking for OpenMP flag of C++ compiler
> configure:12321: g++ -std=gnu++11 -o conftest -fopenmp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> clang: error: unsupported option '-fopenmp'
> clang: error: unsupported option '-fopenmp'
> configure:12321: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12321: g++ -std=gnu++11 -o conftest -openmp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> Undefined symbols for architecture x86_64:
> "_omp_set_num_threads", referenced from:
> _main in conftest-f6f3ce.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:12321: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12321: g++ -std=gnu++11 -o conftest -qopenmp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> clang: error: unknown argument '-qopenmp'; did you mean '-fopenmp'?
> configure:12321: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12321: g++ -std=gnu++11 -o conftest -mp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> clang: error: unknown argument: '-mp'
> configure:12321: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12321: g++ -std=gnu++11 -o conftest -xopenmp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> clang: error: language not recognized: 'openmp'
> configure:12321: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12321: g++ -std=gnu++11 -o conftest -omp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> Undefined symbols for architecture x86_64:
> "_omp_set_num_threads", referenced from:
> _main in conftest-b0d2ae.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:12321: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12321: g++ -std=gnu++11 -o conftest -qsmp=omp -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> clang: error: unknown argument: '-qsmp=omp'
> configure:12321: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12321: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> Undefined symbols for architecture x86_64:
> "_omp_set_num_threads", referenced from:
> _main in conftest-b16aa4.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:12321: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | #include <omp.h>
> |
> | static void
> | parallel_fill(int * data, int n)
> | {
> | int i;
> | #pragma omp parallel for
> | for (i = 0; i < n; ++i)
> | data[i] = i;
> | }
> |
> | int
> | main()
> | {
> | int arr[100000];
> | omp_set_num_threads(2);
> | parallel_fill(arr, 100000);
> | return 0;
> | }
> |
> configure:12331: result: unknown
> configure:12357: will use system package and not install SPKG gcc
> configure:12388: checking for the location of crti.o
> configure:12398: result:
> configure:12413: checking how to run the C++ preprocessor
> configure:12435: g++ -std=gnu++11 -E -I/usr/local/opt/readline/include conftest.cpp
> configure:12435: $? = 0
> configure:12450: g++ -std=gnu++11 -E -I/usr/local/opt/readline/include conftest.cpp
> conftest.cpp:23:10: fatal error: 'ac_nonexistent.h' file not found
> #include <ac_nonexistent.h>
> ^~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:12450: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> | #include <ac_nonexistent.h>
> configure:12477: result: g++ -std=gnu++11 -E
> configure:12491: g++ -std=gnu++11 -E -I/usr/local/opt/readline/include conftest.cpp
> configure:12491: $? = 0
> configure:12506: g++ -std=gnu++11 -E -I/usr/local/opt/readline/include conftest.cpp
> conftest.cpp:23:10: fatal error: 'ac_nonexistent.h' file not found
> #include <ac_nonexistent.h>
> ^~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:12506: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> | #include <ac_nonexistent.h>
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gmp... ##
> ## ---------------------------------------------------- ##
> configure:12613: checking for gmp.h
> configure:12613: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:12613: $? = 0
> configure:12613: result: yes
> configure:12621: checking for gmpxx.h
> configure:12621: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:12621: $? = 0
> configure:12621: result: yes
> configure:12629: checking for library containing __gmpq_cmp_z
> configure:12658: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lm >&5
> Undefined symbols for architecture x86_64:
> "___gmpq_cmp_z", referenced from:
> _main in conftest-0c6be1.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:12658: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int __gmpq_cmp_z ();
> | }
> | int
> | main (void)
> | {
> | return conftest::__gmpq_cmp_z ();
> | ;
> | return 0;
> | }
> configure:12658: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lgmp -lm >&5
> configure:12658: $? = 0
> configure:12678: result: -lgmp
> configure:12694: will use system package and not install SPKG gmp
> configure:12730: checking absolute name of <gmp.h>
> configure:12736: checking for gmp.h
> configure:12736: result: yes
> configure:12757: result: ///usr/local/include/gmp.h
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG zlib... ##
> ## ----------------------------------------------------- ##
> configure:12875: checking for inflateEnd in -lz
> configure:12897: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lz -lgmp -lm >&5
> configure:12897: $? = 0
> configure:12907: result: yes
> configure:12916: checking for zlib.h
> configure:12916: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:12916: $? = 0
> configure:12916: result: yes
> configure:12927: checking for libpng >= 1.2
> configure:12934: $PKG_CONFIG --exists --print-errors "libpng >= 1.2"
> configure:12937: $? = 0
> configure:12951: $PKG_CONFIG --exists --print-errors "libpng >= 1.2"
> configure:12954: $? = 0
> configure:13082: result: yes
> configure:13094: will use system package and not install SPKG zlib
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG glpk... ##
> ## ----------------------------------------------------- ##
> configure:13211: checking whether any of gmp zlib is installed as or will be installed as SPKG
> configure:13221: result: no
> configure:13226: checking for glpsol
> configure:13249: found /usr/local/bin/glpsol
> configure:13261: result: /usr/local/bin/glpsol
> configure:13311: checking for glpk.h
> configure:13311: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:13311: $? = 0
> configure:13311: result: yes
> configure:13319: checking for library containing glp_config
> configure:13348: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lgmp -lm >&5
> Undefined symbols for architecture x86_64:
> "_glp_config", referenced from:
> _main in conftest-f52f2c.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:13348: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int glp_config ();
> | }
> | int
> | main (void)
> | {
> | return conftest::glp_config ();
> | ;
> | return 0;
> | }
> configure:13348: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lglpk -lgmp -lm >&5
> configure:13348: $? = 0
> configure:13368: result: -lglpk
> configure:13374: result: yes. Use system's glpk
> configure:13396: will use system package and not install SPKG glpk
> configure:13437: result: using glpk from the system
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG 4ti2... ##
> ## ----------------------------------------------------- ##
> configure:13528: checking whether any of gmp glpk zlib is installed as or will be installed as SPKG
> configure:13538: result: no
> configure:13546: checking for hilbert
> configure:13581: result: no
> configure:13546: checking for 4ti2-hilbert
> configure:13581: result: no
> configure:13546: checking for 4ti2_hilbert
> configure:13581: result: no
> configure:13599: checking for markov
> configure:13634: result: no
> configure:13599: checking for 4ti2-markov
> configure:13634: result: no
> configure:13599: checking for 4ti2_markov
> configure:13634: result: no
> configure:13652: checking for graver
> configure:13687: result: no
> configure:13652: checking for 4ti2-graver
> configure:13687: result: no
> configure:13652: checking for 4ti2_graver
> configure:13687: result: no
> configure:13705: checking for zsolve
> configure:13740: result: no
> configure:13705: checking for 4ti2-zsolve
> configure:13740: result: no
> configure:13705: checking for 4ti2_zsolve
> configure:13740: result: no
> configure:13758: checking for qsolve
> configure:13793: result: no
> configure:13758: checking for 4ti2-qsolve
> configure:13793: result: no
> configure:13758: checking for 4ti2_qsolve
> configure:13793: result: no
> configure:13811: checking for rays
> configure:13846: result: no
> configure:13811: checking for 4ti2-rays
> configure:13846: result: no
> configure:13811: checking for 4ti2_rays
> configure:13846: result: no
> configure:13864: checking for ppi
> configure:13899: result: no
> configure:13864: checking for 4ti2-ppi
> configure:13899: result: no
> configure:13864: checking for 4ti2_ppi
> configure:13899: result: no
> configure:13917: checking for circuits
> configure:13952: result: no
> configure:13917: checking for 4ti2-circuits
> configure:13952: result: no
> configure:13917: checking for 4ti2_circuits
> configure:13952: result: no
> configure:13970: checking for groebner
> configure:14005: result: no
> configure:13970: checking for 4ti2-groebner
> configure:14005: result: no
> configure:13970: checking for 4ti2_groebner
> configure:14005: result: no
> configure:14019: checking for library 4ti2gmp
> configure:14041: g++ -std=gnu++11 -o conftest -D__STDC_LIMIT_MACROS -D_4ti2_GMP_ -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lglpk -lgmp -lm -l4ti2gmp -lzsolve >&5
> conftest.cpp:26:10: fatal error: '4ti2/4ti2.h' file not found
> #include "4ti2/4ti2.h"
> ^~~~~~~~~~~~~
> 1 error generated.
> configure:14041: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | /* end confdefs.h. */
> |
> | #include "4ti2/4ti2.h"
> |
> | int
> | main (void)
> | {
> | _4ti2_rays_create_state(_4ti2_PREC_INT_ARB);
> |
> | ;
> | return 0;
> | }
> configure:14049: result: no
> configure:14082: no suitable system package found for SPKG 4ti2
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG _prereq... ##
> ## -------------------------------------------------------- ##
> configure:14185: will use system package and not install SPKG _prereq
> ## ------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG _recommended... ##
> ## ------------------------------------------------------------- ##
> configure:14318: no suitable system package found for SPKG _recommended
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG tox... ##
> ## ---------------------------------------------------- ##
> configure:14416: checking for tox >= 2.5.0
> configure:14500: result: /usr/local/bin/tox
> configure:14511: will use system package and not install SPKG tox
> ## ----------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG virtualenv... ##
> ## ----------------------------------------------------------- ##
> configure:14611: SPKG virtualenv is not required on this system
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG appdirs... ##
> ## -------------------------------------------------------- ##
> configure:14731: SPKG appdirs is not required on this system
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG mpfr... ##
> ## ----------------------------------------------------- ##
> configure:14866: checking whether any of gmp is installed as or will be installed as SPKG
> configure:14876: result: no
> configure:14879: checking for mpfr.h
> configure:14879: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:14879: $? = 0
> configure:14879: result: yes
> configure:14887: checking for library containing mpfr_free_pool
> configure:14916: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lglpk -lgmp -lm >&5
> Undefined symbols for architecture x86_64:
> "_mpfr_free_pool", referenced from:
> _main in conftest-5f6757.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:14916: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int mpfr_free_pool ();
> | }
> | int
> | main (void)
> | {
> | return conftest::mpfr_free_pool ();
> | ;
> | return 0;
> | }
> configure:14916: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lmpfr -lglpk -lgmp -lm >&5
> configure:14916: $? = 0
> configure:14936: result: -lmpfr
> configure:14956: will use system package and not install SPKG mpfr
> configure:14994: result: using mpfr library from the system
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG ntl... ##
> ## ---------------------------------------------------- ##
> configure:15086: checking whether any of gmp gcc is installed as or will be installed as SPKG
> configure:15096: result: no
> configure:15099: checking for NTL/ZZ.h
> configure:15099: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:15099: $? = 0
> configure:15099: result: yes
> configure:15107: checking whether we can link a program using NTL
> configure:15124: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:15124: $? = 0
> configure:15126: result: yes
> configure:15137: checking NTL version >= 10.3
> configure:15166: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:15166: $? = 0
> configure:15166: ./conftest
> 11.5.1
> configure:15166: $? = 0
> configure:15169: result: yes
> configure:15195: will use system package and not install SPKG ntl
> configure:15231: checking absolute name of <NTL/ZZ.h>
> configure:15237: checking for NTL/ZZ.h
> configure:15237: result: yes
> configure:15258: result: ///usr/local/opt/ntl/include/NTL/ZZ.h
> configure:15337: $PKG_CONFIG --exists --print-errors "ntl"
> Package ntl was not found in the pkg-config search path.
> Perhaps you should add the directory containing `ntl.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'ntl' found
> configure:15340: $? = 1
> configure:15370: $PKG_CONFIG --exists --print-errors "ntl"
> Package ntl was not found in the pkg-config search path.
> Perhaps you should add the directory containing `ntl.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'ntl' found
> configure:15373: $? = 1
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG flint... ##
> ## ------------------------------------------------------ ##
> configure:15486: checking whether any of mpfr ntl is installed as or will be installed as SPKG
> configure:15496: result: no
> configure:15499: checking for flint/flint.h
> configure:15499: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:15499: $? = 0
> configure:15499: result: yes
> configure:15503: checking for library containing fmpz_mod_ctx_init
> configure:15532: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_fmpz_mod_ctx_init", referenced from:
> _main in conftest-631940.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:15532: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int fmpz_mod_ctx_init ();
> | }
> | int
> | main (void)
> | {
> | return conftest::fmpz_mod_ctx_init ();
> | ;
> | return 0;
> | }
> configure:15532: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:15532: $? = 0
> configure:15552: result: -lflint
> configure:15559: checking for library containing fmpz_poly_get_ZZX
> configure:15588: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:15588: $? = 0
> configure:15608: result: none required
> configure:15616: checking that GC is not enabled in Flint...
> configure:15640: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:15640: $? = 0
> configure:15640: ./conftest
> configure:15640: $? = 0
> configure:15642: result: GC not enabled. Good.
> configure:15677: will use system package and not install SPKG flint
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG arb... ##
> ## ---------------------------------------------------- ##
> configure:15799: checking installing flint?
> configure:15806: checking for arb.h
> configure:15806: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:15806: $? = 0
> configure:15806: result: yes
> configure:15810: checking for acb_mat_eig_simple in -larb
> configure:15832: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:15832: $? = 0
> configure:15842: result: yes
> configure:15905: will use system package and not install SPKG arb
> ## -------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG boost_cropped... ##
> ## -------------------------------------------------------------- ##
> configure:16176: checking for boostlib >= 1.66.0 (106600)
> configure:16208: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -I/usr/local/include conftest.cpp >&5
> configure:16208: $? = 0
> configure:16211: result: yes
> configure:16377: will use system package and not install SPKG boost_cropped
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG libpng... ##
> ## ------------------------------------------------------- ##
> configure:16490: checking installing zlib?
> configure:16497: result: no
> configure:16501: checking for libpng >= 1.2
> configure:16570: result: yes
> configure:16580: will use system package and not install SPKG libpng
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG m4ri... ##
> ## ----------------------------------------------------- ##
> configure:16695: checking whether any of libpng is installed as or will be installed as SPKG
> configure:16705: result: no
> configure:16710: checking for m4ri >= 20140914
> configure:16717: $PKG_CONFIG --exists --print-errors "m4ri >= 20140914"
> Package m4ri was not found in the pkg-config search path.
> Perhaps you should add the directory containing `m4ri.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'm4ri' found
> configure:16720: $? = 1
> configure:16734: $PKG_CONFIG --exists --print-errors "m4ri >= 20140914"
> Package m4ri was not found in the pkg-config search path.
> Perhaps you should add the directory containing `m4ri.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'm4ri' found
> configure:16737: $? = 1
> configure:16751: result: no
> No package 'm4ri' found
> configure:16805: no suitable system package found for SPKG m4ri
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG brial... ##
> ## ------------------------------------------------------ ##
> configure:16907: checking whether any of gcc boost_cropped m4ri is installed as or will be installed as SPKG
> configure:16912: result: yes; install brial as well
> configure:17112: no suitable system package found for SPKG brial
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG bzip2... ##
> ## ------------------------------------------------------ ##
> configure:17209: checking for bzlib.h
> configure:17209: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> configure:17209: $? = 0
> configure:17209: result: yes
> configure:17213: checking for library containing BZ2_bzCompress
> configure:17242: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_BZ2_bzCompress", referenced from:
> _main in conftest-b94453.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:17242: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int BZ2_bzCompress ();
> | }
> | int
> | main (void)
> | {
> | return conftest::BZ2_bzCompress ();
> | ;
> | return 0;
> | }
> configure:17242: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:17242: $? = 0
> configure:17262: result: -lbz2
> configure:17271: checking for bzip2
> configure:17294: found /usr/local/opt/bzip2/bin/bzip2
> configure:17306: result: /usr/local/opt/bzip2/bin/bzip2
> configure:17333: will use system package and not install SPKG bzip2
> configure:17378: checking for Fortran flag needed to accept free-form source
> configure:17398: gfortran -c conftest.f >&5
> conftest.f:2:4:
>
> 2 | program freeform
> | 1
> Error: Non-numeric character in statement label at (1)
> conftest.f:4:27:
>
> 4 | print *, 'Hello ', &
> | 1
> Error: Expected expression in PRINT statement at (1)
> conftest.f:5:12:
>
> 5 | 'world.'
> | 1
> Error: Invalid character in name at (1)
> configure:17398: $? = 1
> configure: failed program was:
> |
> | program freeform
> | ! FIXME: how to best confuse non-freeform compilers?
> | print *, 'Hello ', &
> | 'world.'
> | end
> configure:17398: gfortran -c -ffree-form conftest.f >&5
> configure:17398: $? = 0
> configure:17408: result: -ffree-form
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gfortran... ##
> ## --------------------------------------------------------- ##
> configure:17542: checking the version of gfortran
> configure:17545: result: 11
> configure:17597: will use system package and not install SPKG gfortran
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG openblas... ##
> ## --------------------------------------------------------- ##
> configure:17712: checking whether any of gfortran is installed as or will be installed as SPKG
> configure:17722: result: no
> configure:17733: checking for openblas >= 0.2.20
> configure:17740: $PKG_CONFIG --exists --print-errors "openblas >= 0.2.20"
> configure:17743: $? = 0
> configure:17757: $PKG_CONFIG --exists --print-errors "openblas >= 0.2.20"
> configure:17760: $? = 0
> configure:18774: result: yes
> configure:18784: $PKG_CONFIG --exists --print-errors "openblas"
> configure:18787: $? = 0
> configure:18809: checking for cblas_dgemm
> configure:18809: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -L/usr/local/Cellar/openblas/0.3.19/lib -lopenblas -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:18809: $? = 0
> configure:18809: result: yes
> configure:18891: checking for dgeqrf
> configure:18891: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -L/usr/local/Cellar/openblas/0.3.19/lib -lopenblas -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_dgeqrf", referenced from:
> _main in conftest-5bd6a0.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:18891: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> | /* Define dgeqrf to an innocuous variant, in case <limits.h> declares dgeqrf.
> | For example, HP-UX 11i <limits.h> declares gettimeofday. */
> | #define dgeqrf innocuous_dgeqrf
> |
> | /* System header to define __stub macros and hopefully few prototypes,
> | which can conflict with char dgeqrf (); below. */
> |
> | #include <limits.h>
> | #undef dgeqrf
> |
> | /* Override any GCC internal prototype to avoid an error.
> | Use char because int might match the return type of a GCC
> | builtin and then its argument prototype would still apply. */
> | #ifdef __cplusplus
> | extern "C"
> | #endif
> | char dgeqrf ();
> | /* The GNU C library defines this for functions which it implements
> | to always fail with ENOSYS. Some functions are actually named
> | something starting with __ and the normal name is an alias. */
> | #if defined __stub_dgeqrf || defined __stub___dgeqrf
> | choke me
> | #endif
> |
> | int
> | main (void)
> | {
> | return dgeqrf ();
> | ;
> | return 0;
> | }
> configure:18891: result: no
> configure:18900: checking for dgeqrf_
> configure:18900: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -L/usr/local/Cellar/openblas/0.3.19/lib -lopenblas -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:18900: $? = 0
> configure:18900: result: yes
> configure:18909: checking for DGEQRF
> configure:18909: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -L/usr/local/Cellar/openblas/0.3.19/lib -lopenblas -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_DGEQRF", referenced from:
> _main in conftest-8e6323.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:18909: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> | /* Define DGEQRF to an innocuous variant, in case <limits.h> declares DGEQRF.
> | For example, HP-UX 11i <limits.h> declares gettimeofday. */
> | #define DGEQRF innocuous_DGEQRF
> |
> | /* System header to define __stub macros and hopefully few prototypes,
> | which can conflict with char DGEQRF (); below. */
> |
> | #include <limits.h>
> | #undef DGEQRF
> |
> | /* Override any GCC internal prototype to avoid an error.
> | Use char because int might match the return type of a GCC
> | builtin and then its argument prototype would still apply. */
> | #ifdef __cplusplus
> | extern "C"
> | #endif
> | char DGEQRF ();
> | /* The GNU C library defines this for functions which it implements
> | to always fail with ENOSYS. Some functions are actually named
> | something starting with __ and the normal name is an alias. */
> | #if defined __stub_DGEQRF || defined __stub___DGEQRF
> | choke me
> | #endif
> |
> | int
> | main (void)
> | {
> | return DGEQRF ();
> | ;
> | return 0;
> | }
> configure:18909: result: no
> configure:18918: checking for DGEQRF_
> configure:18918: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -L/usr/local/Cellar/openblas/0.3.19/lib -lopenblas -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_DGEQRF_", referenced from:
> _main in conftest-5bb690.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:18918: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> | /* Define DGEQRF_ to an innocuous variant, in case <limits.h> declares DGEQRF_.
> | For example, HP-UX 11i <limits.h> declares gettimeofday. */
> | #define DGEQRF_ innocuous_DGEQRF_
> |
> | /* System header to define __stub macros and hopefully few prototypes,
> | which can conflict with char DGEQRF_ (); below. */
> |
> | #include <limits.h>
> | #undef DGEQRF_
> |
> | /* Override any GCC internal prototype to avoid an error.
> | Use char because int might match the return type of a GCC
> | builtin and then its argument prototype would still apply. */
> | #ifdef __cplusplus
> | extern "C"
> | #endif
> | char DGEQRF_ ();
> | /* The GNU C library defines this for functions which it implements
> | to always fail with ENOSYS. Some functions are actually named
> | something starting with __ and the normal name is an alias. */
> | #if defined __stub_DGEQRF_ || defined __stub___DGEQRF_
> | choke me
> | #endif
> |
> | int
> | main (void)
> | {
> | return DGEQRF_ ();
> | ;
> | return 0;
> | }
> configure:18918: result: no
> configure:19052: will use system package and not install SPKG openblas
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG cbc... ##
> ## ---------------------------------------------------- ##
> configure:19169: checking whether any of openblas zlib bzip2 is installed as or will be installed as SPKG
> configure:19179: result: no
> configure:19184: checking for cbc >= 2.9.4
> configure:19191: $PKG_CONFIG --exists --print-errors "cbc >= 2.9.4"
> configure:19194: $? = 0
> configure:19208: $PKG_CONFIG --exists --print-errors "cbc >= 2.9.4"
> configure:19211: $? = 0
> configure:19249: result: yes
> configure:19262: will use system package and not install SPKG cbc
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG cddlib... ##
> ## ------------------------------------------------------- ##
> configure:19377: checking whether any of gmp is installed as or will be installed as SPKG
> configure:19387: result: no
> configure:19394: checking for cddexec
> configure:19429: result: no
> configure:19446: checking for cddexec_gmp
> configure:19481: result: no
> configure:19498: checking for redcheck_gmp
> configure:19533: result: no
> configure:19550: checking for scdd_gmp
> configure:19585: result: no
> configure:19550: checking for scdd
> configure:19585: result: no
> configure:19632: checking for cddlib/cdd.h
> configure:19632: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include conftest.cpp >&5
> conftest.cpp:30:16: fatal error: 'cddlib/setoper.h' file not found
> #include <cddlib/setoper.h>
> ^~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:19632: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> |
> | #include <cddlib/setoper.h>
> | #include <cddlib/cddmp.h>
> |
> |
> | #include <cddlib/cdd.h>
> configure:19632: result: no
> configure:19645: checking for library containing dd_abs
> configure:19674: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_dd_abs", referenced from:
> _main in conftest-6cb2f9.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:19674: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int dd_abs ();
> | }
> | int
> | main (void)
> | {
> | return conftest::dd_abs ();
> | ;
> | return 0;
> | }
> configure:19674: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lcddgmp -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> ld: library not found for -lcddgmp
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:19674: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int dd_abs ();
> | }
> | int
> | main (void)
> | {
> | return conftest::dd_abs ();
> | ;
> | return 0;
> | }
> configure:19694: result: no
> configure:19729: no suitable system package found for SPKG cddlib
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG cliquer... ##
> ## -------------------------------------------------------- ##
> configure:19826: checking for library containing clique_unweighted_max_weight
> configure:19855: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_clique_unweighted_max_weight", referenced from:
> _main in conftest-3b2170.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:19855: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int clique_unweighted_max_weight ();
> | }
> | int
> | main (void)
> | {
> | return conftest::clique_unweighted_max_weight ();
> | ;
> | return 0;
> | }
> configure:19855: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lcliquer -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> ld: library not found for -lcliquer
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:19855: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int clique_unweighted_max_weight ();
> | }
> | int
> | main (void)
> | {
> | return conftest::clique_unweighted_max_weight ();
> | ;
> | return 0;
> | }
> configure:19875: result: no
> configure:19982: no suitable system package found for SPKG cliquer
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG cmake... ##
> ## ------------------------------------------------------ ##
> configure:20079: checking for cmake >= 3.4
> configure:20164: result: /usr/local/bin/cmake
> configure:20175: will use system package and not install SPKG cmake
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG coxeter3... ##
> ## --------------------------------------------------------- ##
> configure:20293: checking for library coxeter3
> configure:20315: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lcoxeter3 >&5
> conftest.cpp:31:22: fatal error: 'coxeter/sage.h' file not found
> #include <coxeter/sage.h>
> ^~~~~~~~~~~~~~~~
> 1 error generated.
> configure:20315: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | /* end confdefs.h. */
> |
> |
> | #include <coxeter/sage.h>
> | #include <coxeter/interactive.h>
> |
> | int
> | main (void)
> | {
> |
> | coxeter::CoxGroup *g = interactive::coxeterGroup("B", 2);
> |
> | ;
> | return 0;
> | }
> |
> configure:20323: result: no
> configure:20357: no suitable system package found for SPKG coxeter3
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG curl... ##
> ## ----------------------------------------------------- ##
> configure:20456: checking for curl 7.22
> configure:20499: result: /usr/bin/curl
> configure:20545: checking for gawk
> configure:20577: result: awk
> configure:20644: checking for curl-config
> configure:20667: found /usr/bin/curl-config
> configure:20679: result: /usr/bin/curl-config
> configure:20690: checking for the version of libcurl
> configure:20698: result: 7.77.0
> configure:20705: checking for libcurl >= version 7.22
> configure:20719: result: yes
> configure:20760: checking whether libcurl is usable
> configure:20795: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:20795: $? = 0
> configure:20810: result: yes
> configure:20823: checking for curl_free
> configure:20823: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lcurl >&5
> configure:20823: $? = 0
> configure:20823: result: yes
> configure:20912: checking whether programs linking to libcurl can be executed
> configure:20963: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib conftest.cpp -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:20963: $? = 0
> configure:20963: ./conftest
> configure:20963: $? = 0
> configure:20975: result: yes
> configure:20986: will use system package and not install SPKG curl
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG distlib... ##
> ## -------------------------------------------------------- ##
> configure:21085: SPKG distlib is not required on this system
> ## -------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG libatomic_ops... ##
> ## -------------------------------------------------------------- ##
> configure:21220: checking for atomic_ops >= 7.6.2
> configure:21227: $PKG_CONFIG --exists --print-errors "atomic_ops >= 7.6.2"
> configure:21230: $? = 0
> configure:21244: $PKG_CONFIG --exists --print-errors "atomic_ops >= 7.6.2"
> configure:21247: $? = 0
> configure:21285: result: yes
> configure:21294: will use system package and not install SPKG libatomic_ops
> ## --------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gc... ##
> ## --------------------------------------------------- ##
> configure:21409: checking whether any of libatomic_ops is installed as or will be installed as SPKG
> configure:21419: result: no
> configure:21422: checking whether we run on WSL
> configure:21433: result: no
> configure:21437: checking for bdw-gc-threaded >= 7.6.4
> configure:21444: $PKG_CONFIG --exists --print-errors "bdw-gc-threaded >= 7.6.4"
> Package bdw-gc-threaded was not found in the pkg-config search path.
> Perhaps you should add the directory containing `bdw-gc-threaded.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'bdw-gc-threaded' found
> configure:21447: $? = 1
> configure:21461: $PKG_CONFIG --exists --print-errors "bdw-gc-threaded >= 7.6.4"
> Package bdw-gc-threaded was not found in the pkg-config search path.
> Perhaps you should add the directory containing `bdw-gc-threaded.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'bdw-gc-threaded' found
> configure:21464: $? = 1
> configure:21478: result: no
> No package 'bdw-gc-threaded' found
> configure:21497: checking for bdw-gc >= 7.6.4
> configure:21504: $PKG_CONFIG --exists --print-errors "bdw-gc >= 7.6.4"
> configure:21507: $? = 0
> configure:21521: $PKG_CONFIG --exists --print-errors "bdw-gc >= 7.6.4"
> configure:21524: $? = 0
> configure:21564: result: yes
> configure:21663: will use system package and not install SPKG gc
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG ecl... ##
> ## ---------------------------------------------------- ##
> configure:21784: checking whether any of gcc gc gmp is installed as or will be installed as SPKG
> configure:21794: result: no
> configure:21799: checking for ecl-config
> configure:21822: found /usr/local/bin/ecl-config
> configure:21834: result: /usr/local/bin/ecl-config
> configure:21878: /usr/bin/cc -o conftest -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.c -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:21878: $? = 0
> configure:21878: ./conftest
> configure:21878: $? = 0
> configure:21911: will use system package and not install SPKG ecl
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG ncurses... ##
> ## -------------------------------------------------------- ##
> configure:22043: checking for ncurses >= 6.0
> configure:22050: $PKG_CONFIG --exists --print-errors "ncurses >= 6.0"
> Requested 'ncurses >= 6.0' but version of ncurses is 5.7.20081102
> configure:22053: $? = 1
> configure:22067: $PKG_CONFIG --exists --print-errors "ncurses >= 6.0"
> Requested 'ncurses >= 6.0' but version of ncurses is 5.7.20081102
> configure:22070: $? = 1
> configure:22084: result: no
> Requested 'ncurses >= 6.0' but version of ncurses is 5.7.20081102
> configure:22102: checking for ncurses.h
> configure:22102: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:22102: $? = 0
> configure:22102: result: yes
> configure:22106: checking for library containing wresize
> configure:22135: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_wresize", referenced from:
> _main in conftest-7be1d9.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:22135: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int wresize ();
> | }
> | int
> | main (void)
> | {
> | return conftest::wresize ();
> | ;
> | return 0;
> | }
> configure:22135: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:22135: $? = 0
> configure:22155: result: -lncurses
> configure:22257: will use system package and not install SPKG ncurses
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG readline... ##
> ## --------------------------------------------------------- ##
> configure:22370: checking Installing ncurses?
> configure:22377: result: No.
> configure:22381: checking for readline >= 6.0
> configure:22388: $PKG_CONFIG --exists --print-errors "readline >= 6.0"
> configure:22391: $? = 0
> configure:22405: $PKG_CONFIG --exists --print-errors "readline >= 6.0"
> configure:22408: $? = 0
> configure:22586: result: yes
> configure:22596: will use system package and not install SPKG readline
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pari... ##
> ## ----------------------------------------------------- ##
> configure:22713: checking whether any of gmp readline is installed as or will be installed as SPKG
> configure:22723: result: no
> configure:22728: checking for gp
> configure:22751: found /usr/local/bin/gp
> configure:22763: result: /usr/local/bin/gp
> configure:22777: checking for gphelp
> configure:22800: found /usr/local/bin/gphelp
> configure:22812: result: /usr/local/bin/gphelp
> configure:22829: checking whether gphelp has access to the documentation
> configure:22832: result: yes
> configure:22844: checking is pari_elldata installed?
> *** at top-level: r=ellinit("11a1");r[11]
> *** ^---------------------
> *** ellinit: error opening elldata file: `/usr/local/share/pari/elldata/ell0'.
> configure:22851: result: no; cannot use system pari/GP without elldata package
> configure:22853: Install elldata package and reconfigure.
> configure:22855: Otherwise Sage will build its own pari/GP.
> configure:22859: checking is pari_galdata installed?
> *** at top-level: polgalois(x^8-2)[1]
> *** ^-------------------
> *** polgalois: error opening galois file: `/usr/local/share/pari/galdata/COS8_50_47'.
> configure:22866: result: no; cannot use system pari/GP without galdata package
> configure:22868: Install galdata package and reconfigure.
> configure:22870: Otherwise Sage will build its own pari/GP.
> configure:22874: checking is pari_galpol installed?
> *** at top-level: galoisgetname(12,1)=="C3 : C4"
> *** ^------------------------------
> *** galoisgetname: error opening galpol file: `/usr/local/share/pari/galpol/12/nb'.
> configure:22881: result: no; cannot use system pari/GP without galpol package
> configure:22883: Install galpol package and reconfigure.
> configure:22885: Otherwise Sage will build its own pari/GP.
> configure:22889: checking is pari_seadata installed?
> *** at top-level: poldegree(ellmodulareqn(211)[1])
> *** ^----------------------
> *** ellmodulareqn: error opening seadata file: `/usr/local/share/pari/seadata/sea211'.
> configure:22896: result: no; cannot use system pari/GP without seadata package
> configure:22898: Install seadata package and reconfigure.
> configure:22900: Otherwise Sage will build its own pari/GP.
> configure:22904: checking whether rnfdisc bug of pari 2.13.1 is fixed
> configure:22909: result: yes
> configure:23187: no suitable system package found for SPKG pari
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG eclib... ##
> ## ------------------------------------------------------ ##
> configure:23297: checking whether any of ntl pari flint is installed as or will be installed as SPKG
> configure:23302: result: yes; install eclib as well
> configure:23503: no suitable system package found for SPKG eclib
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG ecm... ##
> ## ---------------------------------------------------- ##
> configure:23604: checking whether any of gmp is installed as or will be installed as SPKG
> configure:23614: result: no
> configure:23617: checking for ecm.h
> configure:23617: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:95:10: fatal error: 'ecm.h' file not found
> #include <ecm.h>
> ^~~~~~~
> 1 error generated.
> configure:23617: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <ecm.h>
> configure:23617: result: no
> configure:23891: no suitable system package found for SPKG ecm
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG givaro... ##
> ## ------------------------------------------------------- ##
> configure:23993: checking whether any of gmp is installed as or will be installed as SPKG
> configure:24003: result: no
> configure:24008: checking for givaro-config
> configure:24046: result: no
> configure:24054: givaro-config not found. Installing givaro
> configure:24173: no suitable system package found for SPKG givaro
> ## ------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG fflas_ffpack... ##
> ## ------------------------------------------------------------- ##
> configure:24275: checking whether any of givaro gmp openblas is installed as or will be installed as SPKG
> configure:24280: result: yes; install fflas_ffpack as well
> configure:24386: no suitable system package found for SPKG fflas_ffpack
> configure:24408: checking whether C++ compiler accepts -mavx512f -mavx512vl -mavx512dq
> configure:24428: g++ -std=gnu++11 -c -mavx512f -mavx512vl -mavx512dq -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:24428: $? = 0
> configure:24437: result: yes
> configure:24449: checking whether C++ compiler accepts -mfma
> configure:24469: g++ -std=gnu++11 -c -mfma -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:24469: $? = 0
> configure:24478: result: yes
> configure:24488: checking whether C++ compiler accepts -mfma4
> configure:24508: g++ -std=gnu++11 -c -mfma4 -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:24508: $? = 0
> configure:24517: result: yes
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG ffmpeg... ##
> ## ------------------------------------------------------- ##
> configure:24615: checking for ffmpeg
> configure:24638: found /usr/local/bin/ffmpeg
> configure:24650: result: /usr/local/bin/ffmpeg
> configure:24667: will use system package and not install SPKG ffmpeg
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG filelock... ##
> ## --------------------------------------------------------- ##
> configure:24771: SPKG filelock is not required on this system
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG flintqs... ##
> ## -------------------------------------------------------- ##
> configure:24908: checking for QuadraticSieve
> configure:24941: result: no
> configure:24983: no suitable system package found for SPKG flintqs
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG fplll... ##
> ## ------------------------------------------------------ ##
> configure:25084: checking whether any of gcc mpfr is installed as or will be installed as SPKG
> configure:25094: result: no
> configure:25099: checking for fplll >= 5.4.0 fplll <= 5.4.1
> configure:25106: $PKG_CONFIG --exists --print-errors "fplll >= 5.4.0 fplll <= 5.4.1"
> configure:25109: $? = 0
> configure:25123: $PKG_CONFIG --exists --print-errors "fplll >= 5.4.0 fplll <= 5.4.1"
> configure:25126: $? = 0
> configure:25164: result: yes
> configure:25177: will use system package and not install SPKG fplll
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG freetype... ##
> ## --------------------------------------------------------- ##
> configure:25293: checking whether any of gcc libpng is installed as or will be installed as SPKG
> configure:25303: result: no
> configure:25308: checking for freetype2 >= 16.1
> configure:25315: $PKG_CONFIG --exists --print-errors "freetype2 >= 16.1"
> configure:25318: $? = 0
> configure:25332: $PKG_CONFIG --exists --print-errors "freetype2 >= 16.1"
> configure:25335: $? = 0
> configure:25373: result: yes
> configure:25386: will use system package and not install SPKG freetype
> ## ---------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gengetopt... ##
> ## ---------------------------------------------------------- ##
> configure:25508: checking for gengetopt
> configure:25531: found /usr/local/bin/gengetopt
> configure:25543: result: /usr/local/bin/gengetopt
> configure:25560: will use system package and not install SPKG gengetopt
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gf2x... ##
> ## ----------------------------------------------------- ##
> configure:25674: checking for gf2x >= 1.2
> configure:25681: $PKG_CONFIG --exists --print-errors "gf2x >= 1.2"
> Package gf2x was not found in the pkg-config search path.
> Perhaps you should add the directory containing `gf2x.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'gf2x' found
> configure:25684: $? = 1
> configure:25698: $PKG_CONFIG --exists --print-errors "gf2x >= 1.2"
> Package gf2x was not found in the pkg-config search path.
> Perhaps you should add the directory containing `gf2x.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'gf2x' found
> configure:25701: $? = 1
> configure:25715: result: no
> No package 'gf2x' found
> configure:25731: checking for gf2x.h
> configure:25731: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:95:10: fatal error: 'gf2x.h' file not found
> #include <gf2x.h>
> ^~~~~~~~
> 1 error generated.
> configure:25731: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <gf2x.h>
> configure:25731: result: no
> configure:25739: checking for library containing gf2x_mul_r
> configure:25768: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_gf2x_mul_r", referenced from:
> _main in conftest-75e0b4.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:25768: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int gf2x_mul_r ();
> | }
> | int
> | main (void)
> | {
> | return conftest::gf2x_mul_r ();
> | ;
> | return 0;
> | }
> configure:25768: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lgf2x -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> ld: library not found for -lgf2x
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:25768: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int gf2x_mul_r ();
> | }
> | int
> | main (void)
> | {
> | return conftest::gf2x_mul_r ();
> | ;
> | return 0;
> | }
> configure:25788: result: no
> configure:25991: no suitable system package found for SPKG gf2x
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gfan... ##
> ## ----------------------------------------------------- ##
> configure:26088: checking for gfan >= 0.6.2
> configure:26172: result:
> configure:26198: no suitable system package found for SPKG gfan
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG giac... ##
> ## ----------------------------------------------------- ##
> configure:26298: checking whether any of pari is installed as or will be installed as SPKG
> configure:26303: result: yes; install giac as well
> configure:26534: no suitable system package found for SPKG giac
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG git... ##
> ## ---------------------------------------------------- ##
> configure:26632: checking for git
> configure:26673: result: /usr/local/bin/git
> configure:26680: will use system package and not install SPKG git
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gp2c... ##
> ## ----------------------------------------------------- ##
> configure:26763: checking whether any of pari is installed as or will be installed as SPKG
> configure:26768: result: yes; install gp2c as well
> configure:27029: pari.cfg is $SAGE_LOCAL/lib/pari/pari.cfg
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG graphviz... ##
> ## --------------------------------------------------------- ##
> configure:27122: checking for dot
> configure:27143: found /usr/local/bin/dot
> configure:27154: result: dot
> configure:27173: checking for neato
> configure:27194: found /usr/local/bin/neato
> configure:27205: result: neato
> configure:27224: checking for twopi
> configure:27245: found /usr/local/bin/twopi
> configure:27256: result: twopi
> configure:27276: will use system package and not install SPKG graphviz
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG gsl... ##
> ## ---------------------------------------------------- ##
> configure:27392: checking whether any of openblas is installed as or will be installed as SPKG
> configure:27402: result: no
> configure:27407: checking for gsl >= $2.4
> configure:27414: $PKG_CONFIG --exists --print-errors "gsl >= $2.4"
> configure:27417: $? = 0
> configure:27431: $PKG_CONFIG --exists --print-errors "gsl >= $2.4"
> configure:27434: $? = 0
> configure:27472: result: yes
> configure:27480: $PKG_CONFIG --exists --print-errors "gsl"
> configure:27483: $? = 0
> configure:27523: will use system package and not install SPKG gsl
> configure:27578: checking 32-bit host C ABI
> configure:27645: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:27645: $? = 0
> configure:27841: result: no
> configure:27846: checking for grep that handles long lines and -e
> configure:27910: result: /usr/bin/grep
> configure:27915: checking for egrep
> configure:27983: result: /usr/bin/grep -E
> configure:27992: checking for ELF binary format
> configure:28016: result: no
> configure:28065: checking for the common suffixes of directories in the library search path
> configure:28134: result: lib,lib,lib
> configure:28659: checking for iconv
> configure:28684: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_iconv", referenced from:
> _main in conftest-a31406.o
> "_iconv_close", referenced from:
> _main in conftest-a31406.o
> "_iconv_open", referenced from:
> _main in conftest-a31406.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:28684: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | /* end confdefs.h. */
> |
> | #include <stdlib.h>
> | #include <iconv.h>
> |
> | int
> | main (void)
> | {
> | iconv_t cd = iconv_open("","");
> | iconv(cd,NULL,NULL,NULL,NULL);
> | iconv_close(cd);
> | ;
> | return 0;
> | }
> configure:28709: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -liconv >&5
> configure:28709: $? = 0
> configure:28720: result: yes
> configure:28723: checking for working iconv
> configure:28866: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -liconv >&5
> configure:28866: $? = 0
> configure:28866: ./conftest
> configure:28866: $? = 0
> configure:28879: result: yes
> configure:28894: checking how to link with libiconv
> configure:28896: result: -liconv
> configure:28907: checking for iconv declaration
> configure:28937: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:28937: $? = 0
> configure:28948: result:
> extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG iconv... ##
> ## ------------------------------------------------------ ##
> configure:29044: will use system package and not install SPKG iconv
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG igraph... ##
> ## ------------------------------------------------------- ##
> configure:29161: checking whether any of glpk openblas gmp is installed as or will be installed as SPKG
> configure:29171: result: no
> configure:29176: checking for igraph >= 0.8.3
> configure:29183: $PKG_CONFIG --exists --print-errors "igraph >= 0.8.3"
> configure:29186: $? = 0
> configure:29200: $PKG_CONFIG --exists --print-errors "igraph >= 0.8.3"
> configure:29203: $? = 0
> configure:29243: result: yes
> configure:29256: will use system package and not install SPKG igraph
> ## ------------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG imagemagick... ##
> ## ------------------------------------------------------------ ##
> configure:29370: checking for convert
> configure:29393: found /usr/local/bin/convert
> configure:29405: result: /usr/local/bin/convert
> configure:29422: will use system package and not install SPKG imagemagick
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG iml... ##
> ## ---------------------------------------------------- ##
> configure:29538: checking whether any of gmp openblas is installed as or will be installed as SPKG
> configure:29548: result: no
> configure:29551: checking for iml.h
> configure:29551: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:75:10: fatal error: 'iml.h' file not found
> #include <iml.h>
> ^~~~~~~
> 1 error generated.
> configure:29551: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | #ifdef HAVE_GMP_H
> | #include <gmp.h>
> | #endif
> |
> |
> | #include <iml.h>
> configure:29551: result: no
> configure:29651: no suitable system package found for SPKG iml
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG info... ##
> ## ----------------------------------------------------- ##
> configure:29750: checking for info
> configure:29773: found /usr/local/opt/texinfo/bin/info
> configure:29785: result: /usr/local/opt/texinfo/bin/info
> configure:29802: will use system package and not install SPKG info
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG isl... ##
> ## ---------------------------------------------------- ##
> configure:29917: checking whether any of gmp is installed as or will be installed as SPKG
> configure:29927: result: no
> configure:29932: checking for isl >= 0.20
> configure:29939: $PKG_CONFIG --exists --print-errors "isl >= 0.20"
> configure:29942: $? = 0
> configure:29956: $PKG_CONFIG --exists --print-errors "isl >= 0.20"
> configure:29959: $? = 0
> configure:29999: result: yes
> configure:30012: will use system package and not install SPKG isl
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG lcalc... ##
> ## ------------------------------------------------------ ##
> configure:30127: checking whether any of pari is installed as or will be installed as SPKG
> configure:30132: result: yes; install lcalc as well
> configure:30279: no suitable system package found for SPKG lcalc
> ## ------------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG libbraiding... ##
> ## ------------------------------------------------------------ ##
> configure:30387: checking if we can link against libbraiding
> configure:30452: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lbraiding >&5
> conftest.cpp:71:16: fatal error: 'braiding.h' file not found
> #include <braiding.h>
> ^~~~~~~~~~~~
> 1 error generated.
> configure:30452: $? = 1
> configure: program exited with status 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> |
> | #include <braiding.h>
> | #include <list>
> | using namespace Braiding;
> |
> | int
> | main (void)
> | {
> |
> | // Mimic BraidGroup(2)(1,1).thurston_type() in SageMath.
> | // thurstontype == 1 corresponds to "periodic"
> | if (thurstontype(2, {1,1}) == 1) { return 0; } else { return 1; }
> |
> | ;
> | return 0;
> | }
> |
> configure:30461: result: no
> configure:30497: no suitable system package found for SPKG libbraiding
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG libffi... ##
> ## ------------------------------------------------------- ##
> configure:30596: checking for libffi
> configure:30603: $PKG_CONFIG --exists --print-errors "libffi"
> configure:30606: $? = 0
> configure:30620: $PKG_CONFIG --exists --print-errors "libffi"
> configure:30623: $? = 0
> configure:30813: result: yes
> configure:30822: will use system package and not install SPKG libffi
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG libgd... ##
> ## ------------------------------------------------------ ##
> configure:30939: checking whether any of gcc libpng freetype is installed as or will be installed as SPKG
> configure:30949: result: no
> configure:30954: checking for gdlib >= 2.1
> configure:30961: $PKG_CONFIG --exists --print-errors "gdlib >= 2.1"
> configure:30964: $? = 0
> configure:30978: $PKG_CONFIG --exists --print-errors "gdlib >= 2.1"
> configure:30981: $? = 0
> configure:31019: result: yes
> configure:31032: will use system package and not install SPKG libgd
> ## ------------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG libgraphviz... ##
> ## ------------------------------------------------------------ ##
> configure:31144: checking for graphviz/cgraph.h
> configure:31144: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:31144: $? = 0
> configure:31144: result: yes
> configure:31157: will use system package and not install SPKG libgraphviz
> ## ---------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG libhomfly... ##
> ## ---------------------------------------------------------- ##
> configure:31272: checking whether any of gc is installed as or will be installed as SPKG
> configure:31282: result: no
> configure:31285: checking for homfly.h
> configure:31285: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:97:10: fatal error: 'homfly.h' file not found
> #include <homfly.h>
> ^~~~~~~~~~
> 1 error generated.
> configure:31285: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <homfly.h>
> configure:31285: result: no
> configure:31379: no suitable system package found for SPKG libhomfly
> ## --------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG xz... ##
> ## --------------------------------------------------- ##
> configure:31482: checking for xz >= 4.999.0
> configure:31570: result: /usr/local/bin/xz
> configure:31577: will use system package and not install SPKG xz
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG liblzma... ##
> ## -------------------------------------------------------- ##
> configure:31692: checking whether any of xz is installed as or will be installed as SPKG
> configure:31702: result: no
> configure:31705: checking for lzma_raw_decoder in -llzma
> configure:31727: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -llzma -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:31727: $? = 0
> configure:31737: result: yes
> configure:31746: checking for lzma.h
> configure:31746: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:31746: $? = 0
> configure:31746: result: yes
> configure:31766: will use system package and not install SPKG liblzma
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG nauty... ##
> ## ------------------------------------------------------ ##
> configure:31880: checking for geng
> configure:31903: found /usr/local/bin/geng
> configure:31915: result: /usr/local/bin/geng
> configure:32237: checking for directg
> configure:32260: found /usr/local/bin/directg
> configure:32272: result: /usr/local/bin/directg
> configure:32287: checking for gentourng
> configure:32310: found /usr/local/bin/gentourng
> configure:32322: result: /usr/local/bin/gentourng
> configure:32337: checking for geng
> configure:32360: found /usr/local/bin/geng
> configure:32372: result: /usr/local/bin/geng
> configure:32387: checking for genbg
> configure:32410: found /usr/local/bin/genbg
> configure:32422: result: /usr/local/bin/genbg
> configure:32437: checking for converseg
> configure:32460: found /usr/local/bin/converseg
> configure:32472: result: /usr/local/bin/converseg
> configure:32494: will use system package and not install SPKG nauty
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG libnauty... ##
> ## --------------------------------------------------------- ##
> configure:32617: checking whether any of nauty is installed as or will be installed as SPKG
> configure:32627: result: no
> configure:32630: checking for nauty/nauty.h
> configure:32630: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:32630: $? = 0
> configure:32630: result: yes
> configure:32638: checking for library containing densenauty
> configure:32667: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_densenauty", referenced from:
> _main in conftest-9b9668.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:32667: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int densenauty ();
> | }
> | int
> | main (void)
> | {
> | return conftest::densenauty ();
> | ;
> | return 0;
> | }
> configure:32667: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:32667: $? = 0
> configure:32687: result: -lnauty
> configure:32707: will use system package and not install SPKG libnauty
> ## -------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG libsemigroups... ##
> ## -------------------------------------------------------------- ##
> configure:32821: checking for libsemigroups >= 0.6.7
> configure:32828: $PKG_CONFIG --exists --print-errors "libsemigroups >= 0.6.7"
> Package libsemigroups was not found in the pkg-config search path.
> Perhaps you should add the directory containing `libsemigroups.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'libsemigroups' found
> configure:32831: $? = 1
> configure:32845: $PKG_CONFIG --exists --print-errors "libsemigroups >= 0.6.7"
> Package libsemigroups was not found in the pkg-config search path.
> Perhaps you should add the directory containing `libsemigroups.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'libsemigroups' found
> configure:32848: $? = 1
> configure:32862: result: no
> No package 'libsemigroups' found
> configure:32910: no suitable system package found for SPKG libsemigroups
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG libxml2... ##
> ## -------------------------------------------------------- ##
> configure:33009: checking for xml2-config
> configure:33032: found /usr/bin/xml2-config
> configure:33045: result: /usr/bin/xml2-config
> configure:33062: will use system package and not install SPKG libxml2
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG llvm... ##
> ## ----------------------------------------------------- ##
> configure:33180: will use system package and not install SPKG llvm
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG lrcalc... ##
> ## ------------------------------------------------------- ##
> configure:33294: checking for lrcalc/schublib.h
> configure:33294: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:70:16: fatal error: 'lrcalc/hashtab.h' file not found
> #include <lrcalc/hashtab.h>
> ^~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:33294: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> | #ifndef _HASHTAB_H
> | #include <lrcalc/hashtab.h>
> | #include <lrcalc/vector.h>
> | #endif
> |
> | #include <lrcalc/schublib.h>
> configure:33294: result: no
> configure:33389: no suitable system package found for SPKG lrcalc
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG lrslib... ##
> ## ------------------------------------------------------- ##
> configure:33490: checking whether any of gmp flint is installed as or will be installed as SPKG
> configure:33500: result: no
> configure:33507: checking for lrsnash
> configure:33542: result: no
> configure:33606: no suitable system package found for SPKG lrslib
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG m4rie... ##
> ## ------------------------------------------------------ ##
> configure:33706: checking whether any of m4ri is installed as or will be installed as SPKG
> configure:33711: result: yes; install m4rie as well
> configure:33813: no suitable system package found for SPKG m4rie
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG mpc... ##
> ## ---------------------------------------------------- ##
> configure:33913: checking whether any of mpfr is installed as or will be installed as SPKG
> configure:33923: result: no
> configure:33926: checking for mpc.h
> configure:33926: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:33926: $? = 0
> configure:33926: result: yes
> configure:33934: checking for library containing mpc_cmp_abs
> configure:33963: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_mpc_cmp_abs", referenced from:
> _main in conftest-2ae70c.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:33963: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int mpc_cmp_abs ();
> | }
> | int
> | main (void)
> | {
> | return conftest::mpc_cmp_abs ();
> | ;
> | return 0;
> | }
> configure:33963: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:33963: $? = 0
> configure:33983: result: -lmpc
> configure:34003: will use system package and not install SPKG mpc
> configure:34041: result: using mpc library from the system
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG mpfi... ##
> ## ----------------------------------------------------- ##
> configure:34132: checking whether any of mpfr is installed as or will be installed as SPKG
> configure:34142: result: no
> configure:34145: checking for mpfi.h
> configure:34145: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:34145: $? = 0
> configure:34145: result: yes
> configure:34153: checking for library containing mpfi_diam_abs
> configure:34182: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> Undefined symbols for architecture x86_64:
> "_mpfi_diam_abs", referenced from:
> _main in conftest-acdbef.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:34182: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int mpfi_diam_abs ();
> | }
> | int
> | main (void)
> | {
> | return conftest::mpfi_diam_abs ();
> | ;
> | return 0;
> | }
> configure:34182: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:34182: $? = 0
> configure:34202: result: -lmpfi
> configure:34215: checking MPFI version >= 1.5
> configure:34242: /usr/bin/cc -o conftest -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.c -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:34242: $? = 0
> configure:34242: ./conftest
> 1.5.3
> configure:34242: $? = 0
> configure:34244: result: yes
> configure:34278: will use system package and not install SPKG mpfi
> ## ------------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG ninja_build... ##
> ## ------------------------------------------------------------ ##
> configure:34390: checking for ninja >= 1.7.2
> configure:34475: result: /usr/local/bin/ninja
> configure:34486: will use system package and not install SPKG ninja_build
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG python3... ##
> ## -------------------------------------------------------- ##
> configure:34633: checking whether any of bzip2 liblzma libffi is installed as or will be installed as SPKG
> configure:34643: result: no
> configure:34647: checking for python3 >= 3.7.0, < 3.11.0 with modules sqlite3, ctypes, math, hashlib, crypt, socket, zlib, distutils.core, ssl
> configure:35332: result:
> configure:35361: checking ... whether /usr/local/bin/python3 is good
> CC=/usr/bin/cc CXX=g++ -std=gnu++11 conftest_venv/bin/python3 conftest.py --verbose build --build-base=conftest.dir
> running build
> running build_ext
> building 'config_check_distutils' extension
> creating conftest.dir
> creating conftest.dir/temp.macosx-12-x86_64-3.9
> /usr/bin/cc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -I/usr/local/include -I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/sqlite/include -I/Users/myuser/app/sage-9.5/conftest_venv/include -I/usr/local/opt/python@3.9/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c conftest.c -o conftest.dir/temp.macosx-12-x86_64-3.9/conftest.o
> creating conftest.dir/lib.macosx-12-x86_64-3.9
> /usr/bin/cc -bundle -undefined dynamic_lookup -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk -L/usr/local/opt/readline/lib -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.dir/temp.macosx-12-x86_64-3.9/conftest.o -L/usr/local/lib -L/usr/local/opt/openssl@1.1/lib -L/usr/local/opt/sqlite/lib -o conftest.dir/lib.macosx-12-x86_64-3.9/config_check_distutils.cpython-39-darwin.so
> CC=/usr/bin/cc CXX=g++ -std=gnu++11 conftest_venv/bin/python3 conftest.py --verbose build --build-base=conftest.dir
> running build
> running build_ext
> building 'config_check_distutils_cxx' extension
> creating conftest.dir
> creating conftest.dir/temp.macosx-12-x86_64-3.9
> /usr/bin/cc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -I/usr/local/include -I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/sqlite/include -I/Users/myuser/app/sage-9.5/conftest_venv/include -I/usr/local/opt/python@3.9/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c conftest.cpp -o conftest.dir/temp.macosx-12-x86_64-3.9/conftest.o -std=c++11
> creating conftest.dir/lib.macosx-12-x86_64-3.9
> g++ -bundle -undefined dynamic_lookup -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk -L/usr/local/opt/readline/lib -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.dir/temp.macosx-12-x86_64-3.9/conftest.o -L/usr/local/lib -L/usr/local/opt/openssl@1.1/lib -L/usr/local/opt/sqlite/lib -o conftest.dir/lib.macosx-12-x86_64-3.9/config_check_distutils_cxx.cpython-39-darwin.so
> configure:35925: result: yes
> configure:35927: checking for python3 >= 3.7.0, < 3.11.0 with modules sqlite3, ctypes, math, hashlib, crypt, socket, zlib, distutils.core, ssl
> configure:35993: result: /usr/local/bin/python3
> configure:36012: will use system package and not install SPKG python3
> configure:36049: checking whether /usr/local/bin/python3 is configured to build multiarch extensions
> configure:36060: result: no
> configure:36076: checking whether "-march=native" works with the C/C++ compilers configured for building extensions for /usr/local/bin/python3
> CC=/usr/bin/cc CXX=g++ -std=gnu++11 CFLAGS=-march=native conftest_venv/bin/python3 conftest.py --verbose build --build-base=conftest.dir
> running build
> running build_ext
> building 'config_check_distutils' extension
> creating conftest.dir
> creating conftest.dir/temp.macosx-12-x86_64-3.9
> /usr/bin/cc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk -march=native -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -I/usr/local/include -I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/sqlite/include -I/Users/myuser/app/sage-9.5/conftest_venv/include -I/usr/local/opt/python@3.9/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c conftest.c -o conftest.dir/temp.macosx-12-x86_64-3.9/conftest.o
> creating conftest.dir/lib.macosx-12-x86_64-3.9
> /usr/bin/cc -bundle -undefined dynamic_lookup -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk -L/usr/local/opt/readline/lib -march=native -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.dir/temp.macosx-12-x86_64-3.9/conftest.o -L/usr/local/lib -L/usr/local/opt/openssl@1.1/lib -L/usr/local/opt/sqlite/lib -o conftest.dir/lib.macosx-12-x86_64-3.9/config_check_distutils.cpython-39-darwin.so
> CC=/usr/bin/cc CXX=g++ -std=gnu++11 CFLAGS=-march=native conftest_venv/bin/python3 conftest.py --verbose build --build-base=conftest.dir
> running build
> running build_ext
> building 'config_check_distutils_cxx' extension
> creating conftest.dir
> creating conftest.dir/temp.macosx-12-x86_64-3.9
> /usr/bin/cc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk -march=native -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -I/usr/local/include -I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/sqlite/include -I/Users/myuser/app/sage-9.5/conftest_venv/include -I/usr/local/opt/python@3.9/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c conftest.cpp -o conftest.dir/temp.macosx-12-x86_64-3.9/conftest.o -std=c++11
> creating conftest.dir/lib.macosx-12-x86_64-3.9
> g++ -bundle -undefined dynamic_lookup -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk -L/usr/local/opt/readline/lib -march=native -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.dir/temp.macosx-12-x86_64-3.9/conftest.o -L/usr/local/lib -L/usr/local/opt/openssl@1.1/lib -L/usr/local/opt/sqlite/lib -o conftest.dir/lib.macosx-12-x86_64-3.9/config_check_distutils_cxx.cpython-39-darwin.so
> configure:36207: result: yes
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG openssl... ##
> ## -------------------------------------------------------- ##
> configure:36598: SPKG openssl is not required on this system
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG palp... ##
> ## ----------------------------------------------------- ##
> configure:36982: checking for poly.x
> configure:37020: result: no
> configure:37032: checking for poly-4d.x
> configure:37070: result: no
> configure:37082: checking for poly-5d.x
> configure:37120: result: no
> configure:37132: checking for poly-6d.x
> configure:37170: result: no
> configure:37182: checking for poly-11d.x
> configure:37220: result: no
> configure:37233: checking for class.x
> configure:37271: result: no
> configure:37283: checking for class-4d.x
> configure:37321: result: no
> configure:37333: checking for class-5d.x
> configure:37371: result: no
> configure:37383: checking for class-6d.x
> configure:37421: result: no
> configure:37433: checking for class-11d.x
> configure:37471: result: no
> configure:37484: checking for nef.x
> configure:37522: result: no
> configure:37534: checking for nef-4d.x
> configure:37572: result: no
> configure:37584: checking for nef-5d.x
> configure:37622: result: no
> configure:37634: checking for nef-6d.x
> configure:37672: result: no
> configure:37684: checking for nef-11d.x
> configure:37722: result: no
> configure:37735: checking for cws.x
> configure:37773: result: no
> configure:37785: checking for cws-4d.x
> configure:37823: result: no
> configure:37835: checking for cws-5d.x
> configure:37873: result: no
> configure:37885: checking for cws-6d.x
> configure:37923: result: no
> configure:37935: checking for cws-11d.x
> configure:37973: result: no
> configure:38004: no suitable system package found for SPKG palp
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pandoc... ##
> ## ------------------------------------------------------- ##
> configure:38103: checking for pandoc
> configure:38126: found /usr/local/bin/pandoc
> configure:38138: result: /usr/local/bin/pandoc
> configure:38155: will use system package and not install SPKG pandoc
> ## ------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pari_elldata... ##
> ## ------------------------------------------------------------- ##
> configure:38269: checking installing pari?
> configure:38272: result: yes; install pari_elldata as well
> configure:38300: no suitable system package found for SPKG pari_elldata
> ## ------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pari_galdata... ##
> ## ------------------------------------------------------------- ##
> configure:38399: checking installing pari?
> configure:38402: result: yes; install pari_galdata as well
> configure:38430: no suitable system package found for SPKG pari_galdata
> ## ------------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG pari_galpol... ##
> ## ------------------------------------------------------------ ##
> configure:38529: checking installing pari?
> configure:38532: result: yes; install pari_galpol as well
> configure:38560: no suitable system package found for SPKG pari_galpol
> ## -------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pari_nftables... ##
> ## -------------------------------------------------------------- ##
> configure:38658: checking installing pari?
> configure:38661: result: yes; install pari_nftables as well
> configure:38692: no suitable system package found for SPKG pari_nftables
> ## ------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pari_seadata... ##
> ## ------------------------------------------------------------- ##
> configure:38791: checking installing pari?
> configure:38794: result: yes; install pari_seadata as well
> configure:38822: no suitable system package found for SPKG pari_seadata
> ## ------------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pari_seadata_small... ##
> ## ------------------------------------------------------------------- ##
> configure:38921: checking installing pari?
> configure:38924: result: yes; install pari_seadata_small as well
> configure:38952: no suitable system package found for SPKG pari_seadata_small
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG patch... ##
> ## ------------------------------------------------------ ##
> configure:39049: checking for GNU patch >= 2.7.0
> configure:39134: result: /usr/local/bin/patch
> configure:39145: will use system package and not install SPKG patch
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pcre... ##
> ## ----------------------------------------------------- ##
> configure:39258: checking installing bzip2?
> configure:39265: result: no
> configure:39269: checking for libpcre >= 8.39 libpcreposix libpcrecpp
> configure:39276: $PKG_CONFIG --exists --print-errors "libpcre >= 8.39 libpcreposix libpcrecpp"
> configure:39279: $? = 0
> configure:39293: $PKG_CONFIG --exists --print-errors "libpcre >= 8.39 libpcreposix libpcrecpp"
> configure:39296: $? = 0
> configure:39486: result: yes
> configure:39496: will use system package and not install SPKG pcre
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pdf2svg... ##
> ## -------------------------------------------------------- ##
> configure:39610: checking for pdf2svg
> configure:39633: found /usr/local/bin/pdf2svg
> configure:39645: result: /usr/local/bin/pdf2svg
> configure:39662: will use system package and not install SPKG pdf2svg
> ## -------------------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG perl_cpan_polymake_prereq... ##
> ## -------------------------------------------------------------------------- ##
> configure:39842: checking for perl module XML::Writer
> configure:39848: result: no
> configure:39842: checking for perl module XML::LibXML
> configure:39848: result: no
> configure:39842: checking for perl module XML::LibXSLT
> configure:39848: result: no
> configure:39842: checking for perl module File::Slurp
> configure:39848: result: no
> configure:39842: checking for perl module JSON
> configure:39848: result: no
> configure:39842: checking for perl module SVG
> configure:39848: result: no
> configure:39842: checking for perl module Term::ReadKey
> configure:39848: result: no
> configure:39891: no suitable system package found for SPKG perl_cpan_polymake_prereq
> ## ------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG perl_mongodb... ##
> ## ------------------------------------------------------------- ##
> configure:40044: checking for perl module MongoDB
> configure:40050: result: no
> configure:40093: no suitable system package found for SPKG perl_mongodb
> ## ----------------------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG perl_term_readline_gnu... ##
> ## ----------------------------------------------------------------------- ##
> configure:40244: checking for perl module Term::ReadLine
> configure:40254: result: ok
> configure:40262: checking Term::ReadLine module...
> configure:40267: result: non-GNU
> configure:40303: no suitable system package found for SPKG perl_term_readline_gnu
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG pkgconf... ##
> ## -------------------------------------------------------- ##
> configure:40412: result: using pkg-config from the system
> configure:40421: will use system package and not install SPKG pkgconf
> ## ---------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG planarity... ##
> ## ---------------------------------------------------------- ##
> configure:40539: checking for planarity/planarity.h
> configure:40539: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.c >&5
> conftest.c:97:10: fatal error: 'planarity/planarity.h' file not found
> #include <planarity/planarity.h>
> ^~~~~~~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:40539: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <planarity/planarity.h>
> configure:40539: result: no
> configure:40646: no suitable system package found for SPKG planarity
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG polymake... ##
> ## --------------------------------------------------------- ##
> configure:40744: checking for polymake-config >= 3.5
> configure:40827: result: /usr/local/bin/polymake-config
> configure:40833: checking whether libpolymake works
> configure:40872: clang++ -o conftest -I/usr/local/Cellar/polymake/4.6/include -I/usr/local/Cellar/polymake/4.6/include/polymake/external -DPOLYMAKE_VERSION=406 -fPIC -pipe -std=c++14 -Wno-logical-op-parentheses -Wno-shift-op-parentheses -Wno-mismatched-tags -Wno-unused-local-typedef -Wno-error=unneeded-internal-declaration -Wshadow -Wconversion -Wno-sign-conversion -Wzero-as-null-pointer-constant -DPOLYMAKE_WITH_FLINT -O3 -DPOLYMAKE_DEBUG=0 -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -lpolymake -L/usr/local/Cellar/polymake/4.6/lib -flat_namespace -L/usr/local/opt/readline/lib conftest.cpp -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl >&5
> configure:40872: $? = 0
> configure:40872: ./conftest
> configure:40872: $? = 0
> configure:40875: result: yes
> configure:40908: will use system package and not install SPKG polymake
> ## ---------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG ppl... ##
> ## ---------------------------------------------------- ##
> configure:41025: checking whether any of gcc glpk gmp is installed as or will be installed as SPKG
> configure:41035: result: no
> configure:41093: checking for ppl-config
> configure:41116: found /usr/local/bin/ppl-config
> configure:41129: result: /usr/local/bin/ppl-config
> configure:41143: checking for the Parma Polyhedra Library, version >= 1.2
> configure:41313: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -I/usr/local/Cellar/ppl/1.2_1/include -I/usr/local/opt/gmp/include -L/usr/local/opt/readline/lib conftest.cpp -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> configure:41313: $? = 0
> configure:41313: ./conftest
> configure:41313: $? = 0
> configure:41338: result: yes
> configure:41426: will use system package and not install SPKG ppl
> ## ----------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG primesieve... ##
> ## ----------------------------------------------------------- ##
> configure:41541: checking for primesieve >= 7.6
> configure:41548: $PKG_CONFIG --exists --print-errors "primesieve >= 7.6"
> Package primesieve was not found in the pkg-config search path.
> Perhaps you should add the directory containing `primesieve.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'primesieve' found
> configure:41551: $? = 1
> configure:41565: $PKG_CONFIG --exists --print-errors "primesieve >= 7.6"
> Package primesieve was not found in the pkg-config search path.
> Perhaps you should add the directory containing `primesieve.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'primesieve' found
> configure:41568: $? = 1
> configure:41582: result: no
> No package 'primesieve' found
> configure:41633: no suitable system package found for SPKG primesieve
> ## ----------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG primecount... ##
> ## ----------------------------------------------------------- ##
> configure:41736: checking whether any of primesieve is installed as or will be installed as SPKG
> configure:41741: result: yes; install primecount as well
> configure:42067: no suitable system package found for SPKG primecount
> ## ------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG qhull... ##
> ## ------------------------------------------------------ ##
> configure:42167: checking for qhull
> configure:42205: result: no
> configure:42213: qhull not found. Installing qhull
> configure:42365: no suitable system package found for SPKG qhull
> ## -------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG r... ##
> ## -------------------------------------------------- ##
> configure:42472: checking whether any of openblas iconv readline bzip2 liblzma pcre curl is installed as or will be installed as SPKG
> configure:42482: result: no
> configure:42494: checking for libR >= 3.4.4
> configure:42501: $PKG_CONFIG --exists --print-errors "libR >= 3.4.4"
> configure:42504: $? = 0
> configure:42518: $PKG_CONFIG --exists --print-errors "libR >= 3.4.4"
> configure:42521: $? = 0
> configure:42559: result: yes
> configure:42564: checking for R
> configure:42587: found /usr/local/bin/R
> configure:42599: result: /usr/local/bin/R
> configure:42633: will use system package and not install SPKG r
> ## --------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG rw... ##
> ## --------------------------------------------------- ##
> configure:42746: checking for rw.h
> configure:42746: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:97:10: fatal error: 'rw.h' file not found
> #include <rw.h>
> ^~~~~~
> 1 error generated.
> configure:42746: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <rw.h>
> configure:42746: result: no
> configure:42760: checking for library containing calculate_level
> configure:42789: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> Undefined symbols for architecture x86_64:
> "_calculate_level", referenced from:
> _main in conftest-bf9509.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:42789: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int calculate_level ();
> | }
> | int
> | main (void)
> | {
> | return conftest::calculate_level ();
> | ;
> | return 0;
> | }
> configure:42789: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lrw -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> ld: library not found for -lrw
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:42789: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int calculate_level ();
> | }
> | int
> | main (void)
> | {
> | return conftest::calculate_level ();
> | ;
> | return 0;
> | }
> configure:42809: result: no
> configure:42840: no suitable system package found for SPKG rw
> ## --------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG singular... ##
> ## --------------------------------------------------------- ##
> configure:42945: checking whether any of gmp ntl flint readline mpfr cddlib is installed as or will be installed as SPKG
> configure:42950: result: yes; install singular as well
> configure:43197: no suitable system package found for SPKG singular
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG sqlite... ##
> ## ------------------------------------------------------- ##
> configure:43314: SPKG sqlite is not required on this system
> ## ------------------------------------------------------------ ##
> ## Checking whether SageMath should install SPKG suitesparse... ##
> ## ------------------------------------------------------------ ##
> configure:43503: checking whether any of openblas is installed as or will be installed as SPKG
> configure:43513: result: no
> configure:43516: checking for library containing cholmod_speye
> configure:43545: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> Undefined symbols for architecture x86_64:
> "_cholmod_speye", referenced from:
> _main in conftest-f40eed.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:43545: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int cholmod_speye ();
> | }
> | int
> | main (void)
> | {
> | return conftest::cholmod_speye ();
> | ;
> | return 0;
> | }
> configure:43545: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lcholmod -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> configure:43545: $? = 0
> configure:43565: result: -lcholmod
> configure:43572: checking for library containing umfpack_di_solve
> configure:43601: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lcholmod -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> Undefined symbols for architecture x86_64:
> "_umfpack_di_solve", referenced from:
> _main in conftest-023482.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:43601: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int umfpack_di_solve ();
> | }
> | int
> | main (void)
> | {
> | return conftest::umfpack_di_solve ();
> | ;
> | return 0;
> | }
> configure:43601: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lumfpack -lcholmod -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> configure:43601: $? = 0
> configure:43621: result: -lumfpack
> configure:43628: checking for library containing SuiteSparse_version
> configure:43657: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lumfpack -lcholmod -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> Undefined symbols for architecture x86_64:
> "_SuiteSparse_version", referenced from:
> _main in conftest-f7410e.o
> ld: symbol(s) not found for architecture x86_64
> clang: error: linker command failed with exit code 1 (use -v to see invocation)
> configure:43657: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> |
> | namespace conftest {
> | extern "C" int SuiteSparse_version ();
> | }
> | int
> | main (void)
> | {
> | return conftest::SuiteSparse_version ();
> | ;
> | return 0;
> | }
> configure:43657: g++ -std=gnu++11 -o conftest -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include -L/usr/local/opt/readline/lib conftest.cpp -lsuitesparseconfig -lumfpack -lcholmod -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp >&5
> configure:43657: $? = 0
> configure:43677: result: -lsuitesparseconfig
> configure:43687: checking for suitesparse/SuiteSparse_config.h
> configure:43687: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:97:10: fatal error: 'suitesparse/SuiteSparse_config.h' file not found
> #include <suitesparse/SuiteSparse_config.h>
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:43687: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <suitesparse/SuiteSparse_config.h>
> configure:43687: result: no
> configure:43687: checking for SuiteSparse_config.h
> configure:43687: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:43687: $? = 0
> configure:43687: result: yes
> configure:43697: checking for suitesparse/amd.h
> configure:43697: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:98:10: fatal error: 'suitesparse/amd.h' file not found
> #include <suitesparse/amd.h>
> ^~~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:43697: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | #define HAVE_SUITESPARSE_CONFIG_H 1
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <suitesparse/amd.h>
> configure:43697: result: no
> configure:43697: checking for amd.h
> configure:43697: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> configure:43697: $? = 0
> configure:43697: result: yes
> configure:43742: will use system package and not install SPKG suitesparse
> ## ----------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG symmetrica... ##
> ## ----------------------------------------------------------- ##
> configure:43873: checking for symmetrica/def.h
> configure:43873: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.c >&5
> conftest.c:99:10: fatal error: 'symmetrica/def.h' file not found
> #include <symmetrica/def.h>
> ^~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:43873: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | #define HAVE_SUITESPARSE_CONFIG_H 1
> | #define HAVE_AMD_H 1
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <symmetrica/def.h>
> configure:43873: result: no
> configure:44013: no suitable system package found for SPKG symmetrica
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG sympow... ##
> ## ------------------------------------------------------- ##
> configure:44112: checking for sympow
> configure:44150: result: no
> configure:44201: no suitable system package found for SPKG sympow
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG tachyon... ##
> ## -------------------------------------------------------- ##
> configure:44300: checking for tachyon
> configure:44338: result: no
> configure:44346: tachyon not found. Installing tachyon
> configure:44370: no suitable system package found for SPKG tachyon
> ## ----------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG toml... ##
> ## ----------------------------------------------------- ##
> configure:44455: SPKG toml is not required on this system
> ## ------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG zeromq... ##
> ## ------------------------------------------------------- ##
> configure:44590: checking whether any of gcc is installed as or will be installed as SPKG
> configure:44600: result: no
> configure:44627: checking for zmq.h
> configure:44627: /usr/bin/cc -c -I/usr/local/include -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.c >&5
> configure:44627: $? = 0
> configure:44627: result: yes
> configure:44644: checking for ZMQ version >= 4.2.5
> configure:44660: result: yes
> configure:44704: will use system package and not install SPKG zeromq
> ## -------------------------------------------------------- ##
> ## Checking whether SageMath should install SPKG zn_poly... ##
> ## -------------------------------------------------------- ##
> configure:44819: checking whether any of gmp is installed as or will be installed as SPKG
> configure:44829: result: no
> configure:44832: checking for zn_poly/zn_poly.h
> configure:44832: g++ -std=gnu++11 -c -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include conftest.cpp >&5
> conftest.cpp:100:10: fatal error: 'zn_poly/zn_poly.h' file not found
> #include <zn_poly/zn_poly.h>
> ^~~~~~~~~~~~~~~~~~~
> 1 error generated.
> configure:44832: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "Sage"
> | #define PACKAGE_TARNAME "sage"
> | #define PACKAGE_VERSION "9.5"
> | #define PACKAGE_STRING "Sage 9.5"
> | #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> | #define PACKAGE_URL ""
> | #define PACKAGE "sage"
> | #define VERSION "9.5"
> | #define HAVE_STDIO_H 1
> | #define HAVE_STDLIB_H 1
> | #define HAVE_STRING_H 1
> | #define HAVE_INTTYPES_H 1
> | #define HAVE_STDINT_H 1
> | #define HAVE_STRINGS_H 1
> | #define HAVE_SYS_STAT_H 1
> | #define HAVE_SYS_TYPES_H 1
> | #define HAVE_UNISTD_H 1
> | #define STDC_HEADERS 1
> | #define HAVE_LIBM 1
> | #define HAVE_CXX11 1
> | #define HAVE_GMP_H 1
> | #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> | #define HAVE_NTL_ZZ_H 1
> | #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> | #define HAVE_LIBARB 1
> | #define HAVE_BOOST /**/
> | #define HAVE_LIBCURL 1
> | #define LIBCURL_FEATURE_ASYNCHDNS 1
> | #define LIBCURL_FEATURE_GSS_API 1
> | #define LIBCURL_FEATURE_HTTPS_PROXY 1
> | #define LIBCURL_FEATURE_IPV6 1
> | #define LIBCURL_FEATURE_KERBEROS 1
> | #define LIBCURL_FEATURE_LARGEFILE 1
> | #define LIBCURL_FEATURE_MULTISSL 1
> | #define LIBCURL_FEATURE_NTLM 1
> | #define LIBCURL_FEATURE_NTLM_WB 1
> | #define LIBCURL_FEATURE_SPNEGO 1
> | #define LIBCURL_FEATURE_SSL 1
> | #define LIBCURL_FEATURE_UNIXSOCKETS 1
> | #define LIBCURL_FEATURE_ALT_SVC 1
> | #define LIBCURL_FEATURE_LIBZ 1
> | #define LIBCURL_PROTOCOL_DICT 1
> | #define LIBCURL_PROTOCOL_FILE 1
> | #define LIBCURL_PROTOCOL_FTP 1
> | #define LIBCURL_PROTOCOL_FTPS 1
> | #define LIBCURL_PROTOCOL_GOPHER 1
> | #define LIBCURL_PROTOCOL_GOPHERS 1
> | #define LIBCURL_PROTOCOL_HTTP 1
> | #define LIBCURL_PROTOCOL_HTTPS 1
> | #define LIBCURL_PROTOCOL_IMAP 1
> | #define LIBCURL_PROTOCOL_IMAPS 1
> | #define LIBCURL_PROTOCOL_LDAP 1
> | #define LIBCURL_PROTOCOL_LDAPS 1
> | #define LIBCURL_PROTOCOL_MQTT 1
> | #define LIBCURL_PROTOCOL_POP3 1
> | #define LIBCURL_PROTOCOL_POP3S 1
> | #define LIBCURL_PROTOCOL_RTSP 1
> | #define LIBCURL_PROTOCOL_SMB 1
> | #define LIBCURL_PROTOCOL_SMBS 1
> | #define LIBCURL_PROTOCOL_SMTP 1
> | #define LIBCURL_PROTOCOL_SMTPS 1
> | #define LIBCURL_PROTOCOL_TELNET 1
> | #define LIBCURL_PROTOCOL_TFTP 1
> | #define HAVE_NCURSES_H 1
> | #define HAVE_ICONV 1
> | #define ICONV_CONST
> | #define HAVE_SUITESPARSE_CONFIG_H 1
> | #define HAVE_AMD_H 1
> | #define HAVE_ZMQ /**/
> | /* end confdefs.h. */
> | #include <stddef.h>
> | #ifdef HAVE_STDIO_H
> | # include <stdio.h>
> | #endif
> | #ifdef HAVE_STDLIB_H
> | # include <stdlib.h>
> | #endif
> | #ifdef HAVE_STRING_H
> | # include <string.h>
> | #endif
> | #ifdef HAVE_INTTYPES_H
> | # include <inttypes.h>
> | #endif
> | #ifdef HAVE_STDINT_H
> | # include <stdint.h>
> | #endif
> | #ifdef HAVE_STRINGS_H
> | # include <strings.h>
> | #endif
> | #ifdef HAVE_SYS_TYPES_H
> | # include <sys/types.h>
> | #endif
> | #ifdef HAVE_SYS_STAT_H
> | # include <sys/stat.h>
> | #endif
> | #ifdef HAVE_UNISTD_H
> | # include <unistd.h>
> | #endif
> | #include <zn_poly/zn_poly.h>
> configure:44832: result: no
> configure:44926: no suitable system package found for SPKG zn_poly
> ## ----------------------------------------------------------------------- ##
> ## Build status for each package: ##
> ## ----------------------------------------------------------------------- ##
> configure:48409: result: 4ti2-1.6.7.p0: no suitable system package; optional, use "./configure --enable-4ti2" to install
> configure:48409: result: admcycles-none: optional pip package; use "./sage -i admcycles" to install
> configure:48409: result: alabaster-0.7.12: standard, will be installed as an SPKG
> configure:48409: result: appdirs-1.4.4: not required on your platform; SPKG will not be installed
> configure:48409: result: appnope-0.1.2: standard, will be installed as an SPKG
> configure:48409: result: arb-2.19.0.p0: using system package; SPKG will not be installed
> configure:48409: result: argcomplete-1.12.3: standard, will be installed as an SPKG
> configure:48409: result: argon2_cffi-20.1.0: standard, will be installed as an SPKG
> configure:48409: result: attrs-21.2.0: standard, will be installed as an SPKG
> configure:48409: result: awali-1.0.2-190218: experimental, use "./configure --enable-awali" to install
> configure:48409: result: babel-2.9.1: standard, will be installed as an SPKG
> configure:48409: result: backcall-0.2.0: standard, will be installed as an SPKG
> configure:48409: result: barvinok-0.41.1: optional, use "./configure --enable-barvinok" to install
> configure:48409: result: beautifulsoup4-none: optional pip package; use "./sage -i beautifulsoup4" to install
> configure:48409: result: beniget-0.4.1: standard, will be installed as an SPKG
> configure:48409: result: benzene-20130630: optional, use "./configure --enable-benzene" to install
> configure:48409: result: biopython-none: optional pip package; use "./sage -i biopython" to install
> configure:48409: result: bleach-4.1.0: standard, will be installed as an SPKG
> configure:48409: result: bliss-0.73+debian-1+sage-2016-08-02.p0: optional, use "./configure --enable-bliss" to install
> configure:48409: result: boost_cropped-1.66.0.p0: using system package; SPKG will not be installed
> configure:48409: result: brial-1.2.8: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: buckygen-1.1: optional, use "./configure --enable-buckygen" to install
> configure:48409: result: bzip2-1.0.6-20150304.p0: using system package; SPKG will not be installed
> configure:48409: result: cbc-2.9.4.p0: using system package; SPKG will not be installed
> configure:48409: result: ccache-3.3.4: optional, use "./configure --enable-ccache" to install
> configure:48409: result: cddlib-0.94m: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: certifi-2021.10.8: standard, will be installed as an SPKG
> configure:48409: result: cffi-1.15.0: standard, will be installed as an SPKG
> configure:48409: result: charset_normalizer-2.0.4: standard, will be installed as an SPKG
> configure:48409: result: cliquer-1.22: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: cmake-3.21.0: using system package; SPKG will not be installed
> configure:48409: result: cocoalib-0.99564: experimental, use "./configure --enable-cocoalib" to install
> configure:48409: result: combinatorial_designs-20140630.p0: standard, will be installed as an SPKG
> configure:48409: result: configure-2e5d421a71304586f059863c84e61e5d0de00be9:came preinstalled with the SageMath tarball
> configure:48409: result: conway_polynomials-0.5: standard, will be installed as an SPKG
> configure:48409: result: coxeter3-8ac9c71723c8ca57a836d6381aed125261e44e9e.p0:no suitable system package; optional, use "./configure --enable-coxeter3" to install
> configure:48409: result: cppy-1.1.0: standard, will be installed as an SPKG
> configure:48409: result: cryptominisat-5.6.8: optional, use "./configure --enable-cryptominisat" to install
> configure:48409: result: csdp-6.2.p1: optional, use "./configure --enable-csdp" to install
> configure:48409: result: cunningham_tables-1.0: optional, use "./configure --enable-cunningham_tables" to install
> configure:48409: result: curl-7.62.0.p0: using system package; SPKG will not be installed
> configure:48409: result: cvxopt-1.2.7: standard, will be installed as an SPKG
> configure:48409: result: cycler-0.11.0: standard, will be installed as an SPKG
> configure:48409: result: cypari-2.1.2: standard, will be installed as an SPKG
> configure:48409: result: cysignals-1.11.2: standard, will be installed as an SPKG
> configure:48409: result: cython-0.29.24: standard, will be installed as an SPKG
> configure:48409: result: d3js-3.4.8: optional, use "./configure --enable-d3js" to install
> configure:48409: result: database_cremona_ellcurve-20190911: optional, use "./configure --enable-database_cremona_ellcurve" to install
> configure:48409: result: database_jones_numfield-4: optional, use "./configure --enable-database_jones_numfield" to install
> configure:48409: result: database_knotinfo-2021.10.1: optional, use "./configure --enable-database_knotinfo" to install
> configure:48409: result: database_kohel-20160724: optional, use "./configure --enable-database_kohel" to install
> configure:48409: result: database_mutation_class-1.0: optional, use "./configure --enable-database_mutation_class" to install
> configure:48409: result: database_odlyzko_zeta-20061209: optional, use "./configure --enable-database_odlyzko_zeta" to install
> configure:48409: result: database_stein_watkins-20110713: optional, use "./configure --enable-database_stein_watkins" to install
> configure:48409: result: database_stein_watkins_mini-20070827: optional, use "./configure --enable-database_stein_watkins_mini" to install
> configure:48409: result: database_symbolic_data-20070206: optional, use "./configure --enable-database_symbolic_data" to install
> configure:48409: result: dateutil-2.8.2: standard, will be installed as an SPKG
> configure:48409: result: debugpy-1.4.1: optional, use "./configure --enable-debugpy" to install
> configure:48409: result: decorator-4.4.2: standard, will be installed as an SPKG
> configure:48409: result: deformation-20210503: experimental, use "./configure --enable-deformation" to install
> configure:48409: result: defusedxml-0.6.0: standard, will be installed as an SPKG
> configure:48409: result: distlib-0.3.3: not required on your platform; SPKG will not be installed
> configure:48409: result: docutils-0.17.1: standard, will be installed as an SPKG
> configure:48409: result: dot2tex-2.11.3.p0: optional, use "./configure --enable-dot2tex" to install
> configure:48409: result: e_antic-0.1.9: optional, use "./configure --enable-e_antic" to install
> configure:48409: result: ecl-21.2.1: using system package; SPKG will not be installed
> configure:48409: result: eclib-20210625: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: ecm-7.0.4.p2: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: elliptic_curves-0.8.1: standard, will be installed as an SPKG
> configure:48409: result: entrypoints-0.3: standard, will be installed as an SPKG
> configure:48409: result: fflas_ffpack-2.4.3.p0: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: ffmpeg-none: using system package
> configure:48409: result: filelock-3.0.12: not required on your platform; SPKG will not be installed
> configure:48409: result: flint-2.7.1.p0: using system package; SPKG will not be installed
> configure:48409: result: flintqs-1.0.p0: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: flit_core-3.4.0: standard, will be installed as an SPKG
> configure:48409: result: fonttools-4.28.4: standard, will be installed as an SPKG
> configure:48409: result: fplll-5.4.1: using system package; SPKG will not be installed
> configure:48409: result: fpylll-0.5.6: standard, will be installed as an SPKG
> configure:48409: result: freetype-2.10.4: using system package; SPKG will not be installed
> configure:48409: result: fricas-1.3.7.p1: optional, use "./configure --enable-fricas" to install
> configure:48409: result: frobby-0.9.0.p2: optional, use "./configure --enable-frobby" to install
> configure:48409: result: gambit-15.1.1.p0: experimental, use "./configure --enable-gambit" to install
> configure:48409: result: gap-4.11.1: standard, will be installed as an SPKG
> configure:48409: result: gap3-04jul17: experimental, use "./configure --enable-gap3" to install
> configure:48409: result: gap_jupyter-0.9: optional, use "./configure --enable-gap_jupyter" to install
> configure:48409: result: gap_packages-4.11.1: optional, use "./configure --enable-gap_packages" to install
> configure:48409: result: gast-0.5.2: standard, will be installed as an SPKG
> configure:48409: result: gc-8.0.4: using system package; SPKG will not be installed
> configure:48409: result: gcc-10.3.0: using system package; SPKG will not be installed
> configure:48409: result: gdb-8.2: experimental, use "./configure --enable-gdb" to install
> configure:48409: result: gengetopt-2.23: using system package; SPKG will not be installed
> configure:48409: result: gf2x-1.3.0: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: gfan-0.6.2.p1: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: gfortran-10.3.0: using system package; SPKG will not be installed
> configure:48409: result: giac-1.6.0.47p3: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: git-none: using system package
> configure:48409: result: givaro-4.1.1: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: glpk-5.0.p0: using system package; SPKG will not be installed
> configure:48409: result: glucose-4.1: optional, use "./configure --enable-glucose" to install
> configure:48409: result: gmp-6.2.1: using system package; SPKG will not be installed
> configure:48409: result: gmpy2-2.1.0rc1: standard, will be installed as an SPKG
> configure:48409: result: gp2c-0.0.10.p0: no suitable system package; optional, use "./configure --enable-gp2c" to install
> configure:48409: result: graphs-20210214.p0: standard, will be installed as an SPKG
> configure:48409: result: graphviz-none: using system package
> configure:48409: result: gsl-2.7: using system package; SPKG will not be installed
> configure:48409: result: html5lib-1.1: standard, will be installed as an SPKG
> configure:48409: result: iconv-1.15: using system package; SPKG will not be installed
> configure:48409: result: idna-3.2: standard, will be installed as an SPKG
> configure:48409: result: igraph-0.8.3: using system package; SPKG will not be installed
> configure:48409: result: imagemagick-none: using system package
> configure:48409: result: imagesize-1.2.0: standard, will be installed as an SPKG
> configure:48409: result: iml-1.0.4p2.p2: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: importlib_metadata-4.8.2: standard, will be installed as an SPKG
> configure:48409: result: importlib_resources-5.2.2: standard, will be installed as an SPKG
> configure:48409: result: info-6.8: using system package; SPKG will not be installed
> configure:48409: result: ipykernel-6.6.0: standard, will be installed as an SPKG
> configure:48409: result: ipympl-0.7.0: optional, use "./configure --enable-ipympl" to install
> configure:48409: result: ipython-7.29.0: standard, will be installed as an SPKG
> configure:48409: result: ipython_genutils-0.2.0: standard, will be installed as an SPKG
> configure:48409: result: ipywidgets-7.6.5: standard, will be installed as an SPKG
> configure:48409: result: isl-0.20: using system package; SPKG will not be installed
> configure:48409: result: jedi-0.18.1: standard, will be installed as an SPKG
> configure:48409: result: jinja2-2.11.2: standard, will be installed as an SPKG
> configure:48409: result: jmol-14.29.52: standard, will be installed as an SPKG
> configure:48409: result: jsonschema-3.2.0: standard, will be installed as an SPKG
> configure:48409: result: jupymake-0.9: optional, use "./configure --enable-jupymake" to install
> configure:48409: result: jupyter_client-7.1.0: standard, will be installed as an SPKG
> configure:48409: result: jupyter_core-4.9.1: standard, will be installed as an SPKG
> configure:48409: result: jupyter_jsmol-0.2.4: standard, will be installed as an SPKG
> configure:48409: result: jupyter_packaging-0.7.12: optional, use "./configure --enable-jupyter_packaging" to install
> configure:48409: result: jupyterlab-none: optional pip package; use "./sage -i jupyterlab" to install
> configure:48409: result: jupyterlab_pygments-0.1.2: standard, will be installed as an SPKG
> configure:48409: result: jupyterlab_widgets-2.0: optional, use "./configure --enable-jupyterlab_widgets" to install
> configure:48409: result: kenzo-1.1.10: optional, use "./configure --enable-kenzo" to install
> configure:48409: result: kiwisolver-1.3.2: standard, will be installed as an SPKG
> configure:48409: result: latte_int-1.7.6: optional, use "./configure --enable-latte_int" to install
> configure:48409: result: lcalc-2.0.5: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: libatomic_ops-7.6.10: using system package; SPKG will not be installed
> configure:48409: result: libbraiding-1.1: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: libffi-3.2.1: using system package; SPKG will not be installed
> configure:48409: result: libgd-2.3.2: using system package; SPKG will not be installed
> configure:48409: result: libgraphviz-none: using system package
> configure:48409: result: libhomfly-1.02r6: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: liblzma-5.2.5: using system package; SPKG will not be installed
> configure:48409: result: libnauty-none: using system package; SPKG will not be installed
> configure:48409: result: libogg-1.3.1.p0: optional, use "./configure --enable-libogg" to install
> configure:48409: result: libpng-1.6.29.p1: using system package; SPKG will not be installed
> configure:48409: result: libsemigroups-1.1.0: no suitable system package; optional, use "./configure --enable-libsemigroups" to install
> configure:48409: result: libtheora-1.1.1: experimental, use "./configure --enable-libtheora" to install
> configure:48409: result: libxml2-none: using system package
> configure:48409: result: lidia-2.3.0+latte-patches-2019-05-02: optional, use "./configure --enable-lidia" to install
> configure:48409: result: lie-2.2.2: experimental, use "./configure --enable-lie" to install
> configure:48409: result: linbox-1.6.3.p1: standard, will be installed as an SPKG
> configure:48409: result: llvm-none: not required on your platform
> configure:48409: result: lrcalc-1.2.p1: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: lrslib-071b+autotools-2021-07-13: no suitable system package; optional, use "./configure --enable-lrslib" to install
> configure:48409: result: m4ri-20200115: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: m4rie-20200115: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: markupsafe-1.1.1: standard, will be installed as an SPKG
> configure:48409: result: mathics-4.0.0: optional, use "./configure --enable-mathics" to install
> configure:48409: result: mathics_scanner-1.2.4: optional, use "./configure --enable-mathics_scanner" to install
> configure:48409: result: mathjax-2.7.4.p0: standard, will be installed as an SPKG
> configure:48409: result: matplotlib-3.5.1: standard, will be installed as an SPKG
> configure:48409: result: matplotlib_inline-0.1.2: standard, will be installed as an SPKG
> configure:48409: result: maxima-5.45.0.p0: standard, will be installed as an SPKG
> configure:48409: result: mcqd-1.0.p0: optional, use "./configure --enable-mcqd" to install
> configure:48409: result: meataxe-1.0.1: optional, use "./configure --enable-meataxe" to install
> configure:48409: result: memory_allocator-0.1.1: standard, will be installed as an SPKG
> configure:48409: result: mistune-0.8.4: standard, will be installed as an SPKG
> configure:48409: result: modular_decomposition-20100607: experimental, use "./configure --enable-modular_decomposition" to install
> configure:48409: result: mpc-1.1.0: using system package; SPKG will not be installed
> configure:48409: result: mpfi-1.5.2: using system package; SPKG will not be installed
> configure:48409: result: mpfr-4.0.1.p0: using system package; SPKG will not be installed
> configure:48409: result: mpfrcx-0.5: optional, use "./configure --enable-mpfrcx" to install
> configure:48409: result: mpmath-1.2.1: standard, will be installed as an SPKG
> configure:48409: result: nauty-27r1.p1: using system package; SPKG will not be installed
> configure:48409: result: nbclient-0.5.9: standard, will be installed as an SPKG
> configure:48409: result: nbconvert-6.1.0: standard, will be installed as an SPKG
> configure:48409: result: nbformat-5.1.3: standard, will be installed as an SPKG
> configure:48409: result: ncurses-6.0.p0: using system package; SPKG will not be installed
> configure:48409: result: nest_asyncio-1.5.1: standard, will be installed as an SPKG
> configure:48409: result: networkx-2.6.3: standard, will be installed as an SPKG
> configure:48409: result: nibabel-none: optional pip package; use "./sage -i nibabel" to install
> configure:48409: result: ninja_build-1.8.2: using system package; SPKG will not be installed
> configure:48409: result: nodeenv-none: optional pip package; use "./sage -i nodeenv" to install
> configure:48409: result: nodejs-12.18.3: optional, use "./configure --enable-nodejs" to install
> configure:48409: result: normaliz-3.8.10: optional, use "./configure --enable-normaliz" to install
> configure:48409: result: notebook-6.4.6: standard, will be installed as an SPKG
> configure:48409: result: notedown-1.5.1: optional, use "./configure --enable-notedown" to install
> configure:48409: result: ntl-11.4.3: using system package; SPKG will not be installed
> configure:48409: result: numpy-1.21.4: standard, will be installed as an SPKG
> configure:48409: result: openblas-0.3.18: using system package; SPKG will not be installed
> configure:48409: result: openssl-3.0.1: not required on your platform; SPKG will not be installed
> configure:48409: result: ore_algebra-none: optional pip package; use "./sage -i ore_algebra" to install
> configure:48409: result: p_group_cohomology-3.3.2: optional, use "./configure --enable-p_group_cohomology" to install
> configure:48409: result: packaging-21.0: standard, will be installed as an SPKG
> configure:48409: result: palettable-3.3.0: optional, use "./configure --enable-palettable" to install
> configure:48409: result: palp-2.11: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: pandoc-none: using system package
> configure:48409: result: pandoc_attributes-8bc82f6d: optional, use "./configure --enable-pandoc_attributes" to install
> configure:48409: result: pandocfilters-1.4.3: standard, will be installed as an SPKG
> configure:48409: result: pari-2.13.3: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: pari_elldata-20161017: no suitable system package; optional, use "./configure --enable-pari_elldata" to install
> configure:48409: result: pari_galdata-20080411.p0: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: pari_galpol-20180625: no suitable system package; optional, use "./configure --enable-pari_galpol" to install
> configure:48409: result: pari_nftables-20080929: no suitable system package; optional, use "./configure --enable-pari_nftables" to install
> configure:48409: result: pari_seadata-20090618: no suitable system package; optional, use "./configure --enable-pari_seadata" to install
> configure:48409: result: pari_seadata_small-20090618.p0: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: parso-0.8.2: standard, will be installed as an SPKG
> configure:48409: result: patch-2.7.5: using system package; SPKG will not be installed
> configure:48409: result: pcre-8.40.p2: using system package; SPKG will not be installed
> configure:48409: result: pdf2svg-none: using system package
> configure:48409: result: perl_cpan_polymake_prereq-none: no suitable system package; optional
> configure:48409: result: perl_mongodb-none: no suitable system package; optional
> configure:48409: result: perl_term_readline_gnu-1.35: no suitable system package; optional, use "./configure --enable-perl_term_readline_gnu" to install
> configure:48409: result: pexpect-4.8.0: standard, will be installed as an SPKG
> configure:48409: result: pickleshare-0.7.5: standard, will be installed as an SPKG
> configure:48409: result: pillow-8.4.0: standard, will be installed as an SPKG
> configure:48409: result: pint-0.17: optional, use "./configure --enable-pint" to install
> configure:48409: result: pip-21.3.1: standard, will be installed as an SPKG
> configure:48409: result: pkgconf-0.9.7.p2: using system package; SPKG will not be installed
> configure:48409: result: pkgconfig-1.5.5: standard, will be installed as an SPKG
> configure:48409: result: planarity-3.0.1.0: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: plantri-4.5: optional, use "./configure --enable-plantri" to install
> configure:48409: result: pluggy-1.0.0: standard, will be installed as an SPKG
> configure:48409: result: ply-3.11: standard, will be installed as an SPKG
> configure:48409: result: polylib-5.22.5: optional, use "./configure --enable-polylib" to install
> configure:48409: result: polymake-4.5: using system package; SPKG will not be installed
> configure:48409: result: polytopes_db-20170220.p0: standard, will be installed as an SPKG
> configure:48409: result: polytopes_db_4d-1.0: optional, use "./configure --enable-polytopes_db_4d" to install
> configure:48409: result: ppl-1.2.p1: using system package; SPKG will not be installed
> configure:48409: result: pplpy-0.8.6: standard, will be installed as an SPKG
> configure:48409: result: pplpy_doc-0.8.6: standard, will be installed as an SPKG
> configure:48409: result: primecount-7.1: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: primecountpy-0.1.0: standard, will be installed as an SPKG
> configure:48409: result: primesieve-7.6: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: prometheus_client-0.11.0: standard, will be installed as an SPKG
> configure:48409: result: prompt_toolkit-3.0.22: standard, will be installed as an SPKG
> configure:48409: result: ptyprocess-0.5.1.p0: standard, will be installed as an SPKG
> configure:48409: result: py-1.10.0: standard, will be installed as an SPKG
> configure:48409: result: pybind11-2.8.1: standard, will be installed as an SPKG
> configure:48409: result: pybtex-none: optional pip package; use "./sage -i pybtex" to install
> configure:48409: result: pycosat-0.6.3: optional, use "./configure --enable-pycosat" to install
> configure:48409: result: pycparser-2.20: standard, will be installed as an SPKG
> configure:48409: result: pycryptosat-5.6.8: optional, use "./configure --enable-pycryptosat" to install
> configure:48409: result: pycygwin-0.1: standard, will be installed as an SPKG
> configure:48409: result: pyflakes-none: optional pip package; use "./sage -i pyflakes" to install
> configure:48409: result: pygments-2.10.0: standard, will be installed as an SPKG
> configure:48409: result: pygraphviz-none: optional pip package; use "./sage -i pygraphviz" to install
> configure:48409: result: pynormaliz-2.14: optional, use "./configure --enable-pynormaliz" to install
> configure:48409: result: pyparsing-3.0.6: standard, will be installed as an SPKG
> configure:48409: result: pyrsistent-0.18.0: standard, will be installed as an SPKG
> configure:48409: result: pysingular-0.9.7: optional, use "./configure --enable-pysingular" to install
> configure:48409: result: pytest-none: optional pip package; use "./sage -i pytest" to install
> configure:48409: result: python3-3.9.9: using system package; SPKG will not be installed
> configure:48409: result: python_igraph-0.8.3: optional, use "./configure --enable-python_igraph" to install
> configure:48409: result: pythran-0.10.0: standard, will be installed as an SPKG
> configure:48409: result: pytz-2021.3: standard, will be installed as an SPKG
> configure:48409: result: pyx-none: optional pip package; use "./sage -i pyx" to install
> configure:48409: result: pyzmq-22.3.0: standard, will be installed as an SPKG
> configure:48409: result: qepcad-B.1.72: experimental, use "./configure --enable-qepcad" to install
> configure:48409: result: qhull-2020-src-8.0.2: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: r-3.6.3: using system package; SPKG will not be installed
> configure:48409: result: r_jupyter-none: optional, use "./configure --enable-r_jupyter" to install
> configure:48409: result: ratpoints-2.1.3.p5: standard, will be installed as an SPKG
> configure:48409: result: readline-8.0: using system package; SPKG will not be installed
> configure:48409: result: requests-2.26.0: standard, will be installed as an SPKG
> configure:48409: result: rpy2-3.3.6: standard, will be installed as an SPKG
> configure:48409: result: rst2ipynb-0.2.3: optional, use "./configure --enable-rst2ipynb" to install
> configure:48409: result: rubiks-20070912.p21: optional, use "./configure --enable-rubiks" to install
> configure:48409: result: rw-0.9: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: saclib-2.2.7: optional, use "./configure --enable-saclib" to install
> configure:48409: result: sage_conf-9.5: standard, will be installed as an SPKG
> configure:48409: result: sage_docbuild-9.5: standard, will be installed as an SPKG
> configure:48409: result: sage_flatsurf-none: optional pip package; use "./sage -i sage_flatsurf" to install
> configure:48409: result: sage_numerical_backends_coin-9.0b12: optional, use "./configure --enable-sage_numerical_backends_coin" to install
> configure:48409: result: sage_numerical_backends_cplex-9.0b12: optional, use "./configure --enable-sage_numerical_backends_cplex" to install
> configure:48409: result: sage_numerical_backends_gurobi-9.3.1: optional, use "./configure --enable-sage_numerical_backends_gurobi" to install
> configure:48409: result: sage_setup-9.5: standard, will be installed as an SPKG
> configure:48409: result: sage_sws2rst-9.5: optional, use "./configure --enable-sage_sws2rst" to install
> configure:48409: result: sagelib-9.5: standard, will be installed as an SPKG
> configure:48409: result: sagemath_doc_html-none: standard, will be installed as an SPKG
> configure:48409: result: sagemath_doc_pdf-none: optional, use "./configure --enable-sagemath_doc_pdf" to install
> configure:48409: result: sagenb_export-3.3: standard, will be installed as an SPKG
> configure:48409: result: sagetex-3.5: standard, will be installed as an SPKG
> configure:48409: result: scipoptsuite-5.0.1: experimental, use "./configure --enable-scipoptsuite" to install
> configure:48409: result: scipy-1.7.2: standard, will be installed as an SPKG
> configure:48409: result: send2trash-1.8.0: standard, will be installed as an SPKG
> configure:48409: result: setuptools-59.2.0: standard, will be installed as an SPKG
> configure:48409: result: setuptools_scm-6.3.2: standard, will be installed as an SPKG
> configure:48409: result: setuptools_scm_git_archive-1.1: standard, will be installed as an SPKG
> configure:48409: result: setuptools_wheel-59.2.0: standard, will be installed as an SPKG
> configure:48409: result: simplegeneric-0.8.1.p0: standard, will be installed as an SPKG
> configure:48409: result: singular-4.2.1p3: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: singular_jupyter-0.9.7: optional, use "./configure --enable-singular_jupyter" to install
> configure:48409: result: sip-4.18: optional, use "./configure --enable-sip" to install
> configure:48409: result: sirocco-2.1.0: optional, use "./configure --enable-sirocco" to install
> configure:48409: result: six-1.16.0: standard, will be installed as an SPKG
> configure:48409: result: slabbe-none: optional pip package; use "./sage -i slabbe" to install
> configure:48409: result: snappy-none: optional pip package; use "./sage -i snappy" to install
> configure:48409: result: snowballstemmer-2.1.0: standard, will be installed as an SPKG
> configure:48409: result: speaklater-1.3.p0: optional, use "./configure --enable-speaklater" to install
> configure:48409: result: sphinx-4.2.0: standard, will be installed as an SPKG
> configure:48409: result: sphinxcontrib_applehelp-1.0.2: standard, will be installed as an SPKG
> configure:48409: result: sphinxcontrib_devhelp-1.0.2: standard, will be installed as an SPKG
> configure:48409: result: sphinxcontrib_htmlhelp-2.0.0: standard, will be installed as an SPKG
> configure:48409: result: sphinxcontrib_jsmath-1.0.1: standard, will be installed as an SPKG
> configure:48409: result: sphinxcontrib_qthelp-1.0.3: standard, will be installed as an SPKG
> configure:48409: result: sphinxcontrib_serializinghtml-1.1.5: standard, will be installed as an SPKG
> configure:48409: result: sphinxcontrib_websupport-1.2.1: standard, will be installed as an SPKG
> configure:48409: result: sqlalchemy-none: optional pip package; use "./sage -i sqlalchemy" to install
> configure:48409: result: sqlite-3.36.0: not required on your platform; SPKG will not be installed
> configure:48409: result: suitesparse-5.10.1: using system package; SPKG will not be installed
> configure:48409: result: surf-1.0.6-gcc6: experimental, use "./configure --enable-surf" to install
> configure:48409: result: surface_dynamics-none: optional pip package; use "./sage -i surface_dynamics" to install
> configure:48409: result: symengine-0.8.1: optional, use "./configure --enable-symengine" to install
> configure:48409: result: symengine_py-0.8.1.p0: optional, use "./configure --enable-symengine_py" to install
> configure:48409: result: symmetrica-3.0.1: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: sympow-2.023.6: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: sympy-1.9: standard, will be installed as an SPKG
> configure:48409: result: tachyon-0.98.9.p7: no suitable system package; standard, will be installed as an SPKG
> configure:48409: result: tdlib-0.3.1.p0: optional, use "./configure --enable-tdlib" to install
> configure:48409: result: terminado-0.12.1: standard, will be installed as an SPKG
> configure:48409: result: testpath-0.5.0: standard, will be installed as an SPKG
> configure:48409: result: texlive-none: optional, use "./configure --enable-texlive" to install
> configure:48409: result: texttable-1.6.3: optional, use "./configure --enable-texttable" to install
> configure:48409: result: thebe-9624e0a0.p0: standard, will be installed as an SPKG
> configure:48409: result: threejs-r122.p0: standard, will be installed as an SPKG
> configure:48409: result: tides-2.0.p0: optional, use "./configure --enable-tides" to install
> configure:48409: result: toml-0.10.2: not required on your platform; SPKG will not be installed
> configure:48409: result: tomli-1.2.1: standard, will be installed as an SPKG
> configure:48409: result: topcom-0.17.7: optional, use "./configure --enable-topcom" to install
> configure:48409: result: tornado-6.1: standard, will be installed as an SPKG
> configure:48409: result: tox-3.24.3: using system package; SPKG will not be installed
> configure:48409: result: traitlets-5.1.1: standard, will be installed as an SPKG
> configure:48409: result: typing_extensions-3.10.0.0: standard, will be installed as an SPKG
> configure:48409: result: tzlocal-2.1: standard, will be installed as an SPKG
> configure:48409: result: urllib3-1.26.6: standard, will be installed as an SPKG
> configure:48409: result: valgrind-3.14.0: experimental, use "./configure --enable-valgrind" to install
> configure:48409: result: vcversioner-2.16.0.0.p0: standard, will be installed as an SPKG
> configure:48409: result: virtualenv-20.7.2: not required on your platform; SPKG will not be installed
> configure:48409: result: wcwidth-0.2.5: standard, will be installed as an SPKG
> configure:48409: result: webencodings-0.5.1: standard, will be installed as an SPKG
> configure:48409: result: wheel-0.37.0: standard, will be installed as an SPKG
> configure:48409: result: widgetsnbextension-3.5.2: standard, will be installed as an SPKG
> configure:48409: result: xz-5.2.5: using system package; SPKG will not be installed
> configure:48409: result: zeromq-4.3.4: using system package; SPKG will not be installed
> configure:48409: result: zipp-3.5.0: standard, will be installed as an SPKG
> configure:48409: result: zlib-1.2.11.p0: using system package; SPKG will not be installed
> configure:48409: result: zn_poly-0.9.2: no suitable system package; standard, will be installed as an SPKG
> configure:48637: checking that generated files are newer than configure
> configure:48643: result: done
> configure:48686: creating ./config.status
>
> ## ---------------------- ##
> ## Running config.status. ##
> ## ---------------------- ##
>
> This file was extended by Sage config.status 9.5, which was
> generated by GNU Autoconf 2.71. Invocation command line was
>
> CONFIG_FILES =
> CONFIG_HEADERS =
> CONFIG_LINKS =
> CONFIG_COMMANDS =
> $ ./config.status
>
> on tuwien
>
> config.status:3398: creating build/make/Makefile-auto
> config.status:3398: creating build/make/Makefile
> config.status:3398: creating src/bin/sage-env-config
> config.status:3398: creating src/bin/sage-src-env-config
> config.status:3398: creating build/bin/sage-build-env-config
> config.status:3398: creating pkgs/sage-conf/sage_conf.py
> config.status:3398: creating pkgs/sage-conf/setup.cfg
> config.status:3570: executing depfiles commands
> config.status:3570: executing mkdirs commands
> config.status:3702: creating directory /Users/myuser/app/sage-9.5/logs/pkgs
> config.status:3702: creating directory local
> config.status:3702: creating directory local/bin
> config.status:3702: creating directory local/etc
> config.status:3702: creating directory local/include
> config.status:3702: creating directory local/lib
> config.status:3702: creating directory local/lib/pkgconfig
> config.status:3702: creating directory local/share
> config.status:3702: creating directory local/var/lib/sage/installed
> config.status:3714: creating symbolic link lib64 -> lib
> config.status:3570: executing links commands
> config.status:3724: creating convenience symlink prefix -> local
> config.status:3739: creating convenience symlink venv -> local/var/lib/sage/venv-python3.9
> configure:49917:
>
> notice: the following SPKGs did not find equivalent system packages:
>
> brial cddlib cliquer eclib ecm fflas_ffpack flintqs gf2x gfan giac givaro iml lcalc libbraiding libhomfly lrcalc m4ri m4rie palp pari pari_galdata pari_seadata_small planarity primecount primesieve qhull rw singular symmetrica sympow tachyon zn_poly 4ti2 _recommended coxeter3 gp2c libsemigroups lrslib pari_elldata pari_galpol pari_nftables pari_seadata perl_cpan_polymake_prereq perl_mongodb perl_term_readline_gnu
>
> configure:49929: checking for the package system in use
> configure:49932: result: homebrew
> configure:49943:
>
> hint: installing the following system packages, if not
> already present, is recommended and may avoid having to
> build them (though some may have to be built anyway):
>
> $ brew install pari pari-elldata pari-galdata pari-galpol pari-seadata primesieve qhull singular
>
> Homebrew can issue suggestions regarding keg-only packages.
> The following command is to automatically apply these suggestions
> for packages relevant for Sage to make them available for the build.
> Run it once to apply the suggestions for the current session.
> Add it to your shell profile to apply them for all future sessions.
>
> $ source /Users/myuser/app/sage-9.5/.homebrew-build-env
>
> configure:49968:
>
> hint: installing the following system packages, if not
> already present, may provide additional optional features:
>
> $ brew install texinfo
>
> Homebrew can issue suggestions regarding keg-only packages.
> The following command is to automatically apply these suggestions
> for packages relevant for Sage to make them available for the build.
> Run it once to apply the suggestions for the current session.
> Add it to your shell profile to apply them for all future sessions.
>
> $ source /Users/myuser/app/sage-9.5/.homebrew-build-env
>
> configure:49988:
>
> hint: After installation, re-run configure using:
>
> $ ./config.status --recheck && ./config.status
>
>
> ## ---------------- ##
> ## Cache variables. ##
> ## ---------------- ##
>
> ac_cv_build=x86_64-apple-darwin21.3.0
> ac_cv_c_compiler_gnu=yes
> ac_cv_cxx_compiler_gnu=yes
> ac_cv_env_CBC_CFLAGS_set=
> ac_cv_env_CBC_CFLAGS_value=
> ac_cv_env_CBC_LIBS_set=
> ac_cv_env_CBC_LIBS_value=
> ac_cv_env_CBLAS_CFLAGS_set=
> ac_cv_env_CBLAS_CFLAGS_value=
> ac_cv_env_CBLAS_LIBS_set=
> ac_cv_env_CBLAS_LIBS_value=
> ac_cv_env_CCC_set=
> ac_cv_env_CCC_value=
> ac_cv_env_CC_set=set
> ac_cv_env_CC_value=/usr/bin/cc
> ac_cv_env_CFLAGS_set=set
> ac_cv_env_CFLAGS_value=-I/usr/local/include
> ac_cv_env_CPPFLAGS_set=set
> ac_cv_env_CPPFLAGS_value=-I/usr/local/opt/readline/include
> ac_cv_env_CPP_set=
> ac_cv_env_CPP_value=
> ac_cv_env_CXXCPP_set=
> ac_cv_env_CXXCPP_value=
> ac_cv_env_CXXFLAGS_set=
> ac_cv_env_CXXFLAGS_value=
> ac_cv_env_CXX_set=
> ac_cv_env_CXX_value=
> ac_cv_env_ECLIB_CFLAGS_set=
> ac_cv_env_ECLIB_CFLAGS_value=
> ac_cv_env_ECLIB_LIBS_set=
> ac_cv_env_ECLIB_LIBS_value=
> ac_cv_env_F77CFLAGS_set=
> ac_cv_env_F77CFLAGS_value=
> ac_cv_env_FCFLAGS_set=
> ac_cv_env_FCFLAGS_value=
> ac_cv_env_FC_set=
> ac_cv_env_FC_value=
> ac_cv_env_FFLAS_FFPACK_CFLAGS_set=
> ac_cv_env_FFLAS_FFPACK_CFLAGS_value=
> ac_cv_env_FFLAS_FFPACK_LIBS_set=
> ac_cv_env_FFLAS_FFPACK_LIBS_value=
> ac_cv_env_FPLLL_CFLAGS_set=
> ac_cv_env_FPLLL_CFLAGS_value=
> ac_cv_env_FPLLL_LIBS_set=
> ac_cv_env_FPLLL_LIBS_value=
> ac_cv_env_FREETYPE_CFLAGS_set=
> ac_cv_env_FREETYPE_CFLAGS_value=
> ac_cv_env_FREETYPE_LIBS_set=
> ac_cv_env_FREETYPE_LIBS_value=
> ac_cv_env_GC_CFLAGS_set=
> ac_cv_env_GC_CFLAGS_value=
> ac_cv_env_GC_LIBS_set=
> ac_cv_env_GC_LIBS_value=
> ac_cv_env_GF2X_CFLAGS_set=
> ac_cv_env_GF2X_CFLAGS_value=
> ac_cv_env_GF2X_LIBS_set=
> ac_cv_env_GF2X_LIBS_value=
> ac_cv_env_GSLPCDIR_set=
> ac_cv_env_GSLPCDIR_value=
> ac_cv_env_GSL_CFLAGS_set=
> ac_cv_env_GSL_CFLAGS_value=
> ac_cv_env_GSL_LIBS_set=
> ac_cv_env_GSL_LIBS_value=
> ac_cv_env_IGRAPH_CFLAGS_set=
> ac_cv_env_IGRAPH_CFLAGS_value=
> ac_cv_env_IGRAPH_LIBS_set=
> ac_cv_env_IGRAPH_LIBS_value=
> ac_cv_env_ISL_CFLAGS_set=
> ac_cv_env_ISL_CFLAGS_value=
> ac_cv_env_ISL_LIBS_set=
> ac_cv_env_ISL_LIBS_value=
> ac_cv_env_LAPACK_CFLAGS_set=
> ac_cv_env_LAPACK_CFLAGS_value=
> ac_cv_env_LAPACK_LIBS_set=
> ac_cv_env_LAPACK_LIBS_value=
> ac_cv_env_LDFLAGS_set=set
> ac_cv_env_LDFLAGS_value=-L/usr/local/opt/readline/lib
> ac_cv_env_LIBATOMIC_OPS_CFLAGS_set=
> ac_cv_env_LIBATOMIC_OPS_CFLAGS_value=
> ac_cv_env_LIBATOMIC_OPS_LIBS_set=
> ac_cv_env_LIBATOMIC_OPS_LIBS_value=
> ac_cv_env_LIBFFI_CFLAGS_set=
> ac_cv_env_LIBFFI_CFLAGS_value=
> ac_cv_env_LIBFFI_LIBS_set=
> ac_cv_env_LIBFFI_LIBS_value=
> ac_cv_env_LIBGD_CFLAGS_set=
> ac_cv_env_LIBGD_CFLAGS_value=
> ac_cv_env_LIBGD_LIBS_set=
> ac_cv_env_LIBGD_LIBS_value=
> ac_cv_env_LIBPNG_CFLAGS_set=
> ac_cv_env_LIBPNG_CFLAGS_value=
> ac_cv_env_LIBPNG_LIBS_set=
> ac_cv_env_LIBPNG_LIBS_value=
> ac_cv_env_LIBSEMIGROUPS_CFLAGS_set=
> ac_cv_env_LIBSEMIGROUPS_CFLAGS_value=
> ac_cv_env_LIBSEMIGROUPS_LIBS_set=
> ac_cv_env_LIBSEMIGROUPS_LIBS_value=
> ac_cv_env_LIBS_set=
> ac_cv_env_LIBS_value=
> ac_cv_env_M4RI_CFLAGS_set=
> ac_cv_env_M4RI_CFLAGS_value=
> ac_cv_env_M4RI_LIBS_set=
> ac_cv_env_M4RI_LIBS_value=
> ac_cv_env_NCURSES_CFLAGS_set=
> ac_cv_env_NCURSES_CFLAGS_value=
> ac_cv_env_NCURSES_LIBS_set=
> ac_cv_env_NCURSES_LIBS_value=
> ac_cv_env_OBJCFLAGS_set=
> ac_cv_env_OBJCFLAGS_value=
> ac_cv_env_OBJCXXFLAGS_set=
> ac_cv_env_OBJCXXFLAGS_value=
> ac_cv_env_OBJCXX_set=
> ac_cv_env_OBJCXX_value=
> ac_cv_env_OBJC_set=
> ac_cv_env_OBJC_value=
> ac_cv_env_OPENBLASPCDIR_set=
> ac_cv_env_OPENBLASPCDIR_value=
> ac_cv_env_OPENBLAS_CFLAGS_set=
> ac_cv_env_OPENBLAS_CFLAGS_value=
> ac_cv_env_OPENBLAS_LIBS_set=
> ac_cv_env_OPENBLAS_LIBS_value=
> ac_cv_env_PCRE_CFLAGS_set=
> ac_cv_env_PCRE_CFLAGS_value=
> ac_cv_env_PCRE_LIBS_set=
> ac_cv_env_PCRE_LIBS_value=
> ac_cv_env_PKG_CONFIG_LIBDIR_set=
> ac_cv_env_PKG_CONFIG_LIBDIR_value=
> ac_cv_env_PKG_CONFIG_PATH_set=set
> ac_cv_env_PKG_CONFIG_PATH_value=/usr/local/opt/zlib/lib/pkgconfig:/usr/local/opt/sqlite/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/openblas/lib/pkgconfig:/usr/local/lib/pkgconfig:
> ac_cv_env_PKG_CONFIG_set=
> ac_cv_env_PKG_CONFIG_value=
> ac_cv_env_PRIMECOUNT_CFLAGS_set=
> ac_cv_env_PRIMECOUNT_CFLAGS_value=
> ac_cv_env_PRIMECOUNT_LIBS_set=
> ac_cv_env_PRIMECOUNT_LIBS_value=
> ac_cv_env_PRIMESIEVE_CFLAGS_set=
> ac_cv_env_PRIMESIEVE_CFLAGS_value=
> ac_cv_env_PRIMESIEVE_LIBS_set=
> ac_cv_env_PRIMESIEVE_LIBS_value=
> ac_cv_env_READLINE_CFLAGS_set=
> ac_cv_env_READLINE_CFLAGS_value=
> ac_cv_env_READLINE_LIBS_set=
> ac_cv_env_READLINE_LIBS_value=
> ac_cv_env_R_CFLAGS_set=
> ac_cv_env_R_CFLAGS_value=
> ac_cv_env_R_LIBS_set=
> ac_cv_env_R_LIBS_value=
> ac_cv_env_SAGE_DEBUG_set=
> ac_cv_env_SAGE_DEBUG_value=
> ac_cv_env_SAGE_FAT_BINARY_set=
> ac_cv_env_SAGE_FAT_BINARY_value=
> ac_cv_env_SINGULAR_CFLAGS_set=
> ac_cv_env_SINGULAR_CFLAGS_value=
> ac_cv_env_SINGULAR_LIBS_set=
> ac_cv_env_SINGULAR_LIBS_value=
> ac_cv_env_SINGULAR_LIB_DIR_set=
> ac_cv_env_SINGULAR_LIB_DIR_value=
> ac_cv_env_build_alias_set=
> ac_cv_env_build_alias_value=
> ac_cv_env_host_alias_set=
> ac_cv_env_host_alias_value=
> ac_cv_env_ntl_includedir_set=
> ac_cv_env_ntl_includedir_value=
> ac_cv_env_ntl_libdir_set=
> ac_cv_env_ntl_libdir_value=
> ac_cv_env_target_alias_set=
> ac_cv_env_target_alias_value=
> ac_cv_fc_compiler_gnu=yes
> ac_cv_fc_freeform=-ffree-form
> ac_cv_func_DGEQRF=no
> ac_cv_func_DGEQRF_=no
> ac_cv_func_cblas_dgemm=yes
> ac_cv_func_curl_free=yes
> ac_cv_func_dgeqrf=no
> ac_cv_func_dgeqrf_=yes
> ac_cv_header_NTL_ZZ_h=yes
> ac_cv_header_SuiteSparse_config_h=yes
> ac_cv_header_amd_h=yes
> ac_cv_header_arb_h=yes
> ac_cv_header_bzlib_h=yes
> ac_cv_header_cddlib_cdd_h=no
> ac_cv_header_complex_h=yes
> ac_cv_header_ecm_h=no
> ac_cv_header_flint_flint_h=yes
> ac_cv_header_gf2x_h=no
> ac_cv_header_glpk_h=yes
> ac_cv_header_gmp_h=yes
> ac_cv_header_gmpxx_h=yes
> ac_cv_header_graphviz_cgraph_h=yes
> ac_cv_header_homfly_h=no
> ac_cv_header_iml_h=no
> ac_cv_header_inttypes_h=yes
> ac_cv_header_lrcalc_schublib_h=no
> ac_cv_header_lzma_h=yes
> ac_cv_header_mpc_h=yes
> ac_cv_header_mpfi_h=yes
> ac_cv_header_mpfr_h=yes
> ac_cv_header_nauty_nauty_h=yes
> ac_cv_header_ncurses_h=yes
> ac_cv_header_planarity_planarity_h=no
> ac_cv_header_rw_h=no
> ac_cv_header_stdint_h=yes
> ac_cv_header_stdio_h=yes
> ac_cv_header_stdlib_h=yes
> ac_cv_header_string_h=yes
> ac_cv_header_strings_h=yes
> ac_cv_header_suitesparse_SuiteSparse_config_h=no
> ac_cv_header_suitesparse_amd_h=no
> ac_cv_header_symmetrica_def_h=no
> ac_cv_header_sys_stat_h=yes
> ac_cv_header_sys_types_h=yes
> ac_cv_header_unistd_h=yes
> ac_cv_header_zlib_h=yes
> ac_cv_header_zmq_h=yes
> ac_cv_header_zn_poly_zn_poly_h=no
> ac_cv_host=x86_64-apple-darwin21.3.0
> ac_cv_lib_arb_acb_mat_eig_simple=yes
> ac_cv_lib_lzma_lzma_raw_decoder=yes
> ac_cv_lib_m_sqrt=yes
> ac_cv_lib_z_inflateEnd=yes
> ac_cv_objc_compiler_gnu=yes
> ac_cv_objcxx_compiler_gnu=yes
> ac_cv_objext=o
> ac_cv_path_CMAKE=/usr/local/bin/cmake
> ac_cv_path_CONVERT=/usr/local/bin/convert
> ac_cv_path_CURL=/usr/bin/curl
> ac_cv_path_ECL_CONFIG=/usr/local/bin/ecl-config
> ac_cv_path_EGREP='/usr/bin/grep -E'
> ac_cv_path_FFMPEG=/usr/local/bin/ffmpeg
> ac_cv_path_GENGCHECK=/usr/local/bin/geng
> ac_cv_path_GENGETOPT=/usr/local/bin/gengetopt
> ac_cv_path_GIT=/usr/local/bin/git
> ac_cv_path_GLPSOL=/usr/local/bin/glpsol
> ac_cv_path_GP=/usr/local/bin/gp
> ac_cv_path_GPHELP=/usr/local/bin/gphelp
> ac_cv_path_GREP=/usr/bin/grep
> ac_cv_path_INFO=/usr/local/opt/texinfo/bin/info
> ac_cv_path_MAKE=/usr/bin/make
> ac_cv_path_NINJA=/usr/local/bin/ninja
> ac_cv_path_PANDOC=/usr/local/bin/pandoc
> ac_cv_path_PATCH=/usr/local/bin/patch
> ac_cv_path_PDF2SVG=/usr/local/bin/pdf2svg
> ac_cv_path_PERL=/usr/local/bin/perl
> ac_cv_path_POLYMAKE_CONFIG=/usr/local/bin/polymake-config
> ac_cv_path_PPL_CONFIG=/usr/local/bin/ppl-config
> ac_cv_path_PYTHON3=/usr/local/bin/python3
> ac_cv_path_R=/usr/local/bin/R
> ac_cv_path_SED=/usr/bin/sed
> ac_cv_path_TAR=/usr/bin/tar
> ac_cv_path_TOX=/usr/local/bin/tox
> ac_cv_path_XML2_CONFIG=/usr/bin/xml2-config
> ac_cv_path_XZ=/usr/local/bin/xz
> ac_cv_path__libcurl_config=/usr/bin/curl-config
> ac_cv_path_ac_pt_PKG_CONFIG=/usr/local/bin/pkg-config
> ac_cv_path_bzip2_prog=/usr/local/opt/bzip2/bin/bzip2
> ac_cv_path_fooconverseg=/usr/local/bin/converseg
> ac_cv_path_foodirectg=/usr/local/bin/directg
> ac_cv_path_foogenbg=/usr/local/bin/genbg
> ac_cv_path_foogeng=/usr/local/bin/geng
> ac_cv_path_foogentourng=/usr/local/bin/gentourng
> ac_cv_path_install='/usr/local/bin/ginstall -c'
> ac_cv_path_mkdir=/usr/local/bin/gmkdir
> ac_cv_prog_AWK=awk
> ac_cv_prog_CPP='/usr/bin/cc -E'
> ac_cv_prog_CXXCPP='g++ -std=gnu++11 -E'
> ac_cv_prog_DOT=dot
> ac_cv_prog_HAVE_QUADRATICSIEVE=no
> ac_cv_prog_NEATO=neato
> ac_cv_prog_TWOPI=twopi
> ac_cv_prog_ac_ct_CC=/usr/bin/cc
> ac_cv_prog_ac_ct_CXX=g++
> ac_cv_prog_ac_ct_FC=gfortran
> ac_cv_prog_ac_ct_OBJC=gcc
> ac_cv_prog_ac_ct_OBJCXX=g++
> ac_cv_prog_cc_c11=
> ac_cv_prog_cc_g=yes
> ac_cv_prog_cc_stdc=
> ac_cv_prog_cxx_11=no
> ac_cv_prog_cxx_g=yes
> ac_cv_prog_cxx_stdcxx=
> ac_cv_prog_fc_g=yes
> ac_cv_prog_found_ar=yes
> ac_cv_prog_found_latex=yes
> ac_cv_prog_found_m4=yes
> ac_cv_prog_found_ranlib=yes
> ac_cv_prog_found_strip=yes
> ac_cv_prog_make_make_set=yes
> ac_cv_prog_objc_g=yes
> ac_cv_prog_objcxx_g=yes
> ac_cv_search_BZ2_bzCompress=-lbz2
> ac_cv_search_SuiteSparse_version=-lsuitesparseconfig
> ac_cv_search___gmpq_cmp_z=-lgmp
> ac_cv_search_calculate_level=no
> ac_cv_search_cholmod_speye=-lcholmod
> ac_cv_search_clique_unweighted_max_weight=no
> ac_cv_search_dd_abs=no
> ac_cv_search_densenauty=-lnauty
> ac_cv_search_fmpz_mod_ctx_init=-lflint
> ac_cv_search_fmpz_poly_get_ZZX='none required'
> ac_cv_search_gf2x_mul_r=no
> ac_cv_search_glp_config=-lglpk
> ac_cv_search_mpc_cmp_abs=-lmpc
> ac_cv_search_mpfi_diam_abs=-lmpfi
> ac_cv_search_mpfr_free_pool=-lmpfr
> ac_cv_search_umfpack_di_solve=-lumfpack
> ac_cv_search_wresize=-lncurses
> acl_cv_hardcode_direct=no
> acl_cv_hardcode_libdir_flag_spec=
> acl_cv_hardcode_libdir_separator=
> acl_cv_hardcode_minus_L=no
> acl_cv_libdirstems=lib,lib,lib
> acl_cv_libext=a
> acl_cv_libname_spec='lib$name'
> acl_cv_library_names_spec='$libname$shrext'
> acl_cv_path_LD=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
> acl_cv_prog_gnu_ld=no
> acl_cv_rpath=done
> acl_cv_shlibext=dylib
> acl_cv_wl=-Wl,
> am_cv_CC_dependencies_compiler_type=none
> am_cv_CXX_dependencies_compiler_type=none
> am_cv_OBJCXX_dependencies_compiler_type=none
> am_cv_OBJC_dependencies_compiler_type=none
> am_cv_func_iconv=yes
> am_cv_func_iconv_works=yes
> am_cv_lib_iconv=yes
> am_cv_make_support_nested_variables=yes
> am_cv_prog_cc_c_o=yes
> am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);'
> am_cv_proto_iconv_arg1=
> ax_cv_c_compiler_vendor=clang
> ax_cv_c_openmp=unknown
> ax_cv_check_cxxflags___march_native=yes
> ax_cv_check_cxxflags___mavx512f__mavx512vl__mavx512dq=yes
> ax_cv_check_cxxflags___mfma4=yes
> ax_cv_check_cxxflags___mfma=yes
> ax_cv_cxx_compile_cxx11__std_gnupp11=yes
> ax_cv_cxx_openmp=unknown
> ax_cv_gcc_version=13.0.0
> ax_cv_gxx_version=13.0.0
> ax_cv_prog_perl_version=yes
> gl_cv_absolute_NTL_ZZ_h=///usr/local/opt/ntl/include/NTL/ZZ.h
> gl_cv_absolute_gmp_h=///usr/local/include/gmp.h
> gl_cv_elf=no
> gl_cv_host_cpu_c_abi_32bit=no
> libcurl_cv_lib_curl_usable=yes
> libcurl_cv_lib_curl_version=7.77.0
> libcurl_cv_lib_version_ok=yes
> lzma_cv_liblzma=yes
> lzma_cv_lzma_h=yes
> pkg_cv_CBC_CFLAGS='-I/usr/local/Cellar/cbc/2.10.7/include/cbc/coin -I/usr/local/Cellar/cgl/0.60.5/include/cgl/coin -I/usr/local/Cellar/clp/1.17.7/include/clp/coin -I/usr/local/Cellar/osi/0.108.7/include/osi/coin -I/usr/local/Cellar/coinutils/2.11.6/include/coinutils/coin'
> pkg_cv_CBC_LIBS='-L/usr/local/Cellar/cbc/2.10.7/lib -L/usr/local/Cellar/cgl/0.60.5/lib -L/usr/local/Cellar/clp/1.17.7/lib -L/usr/local/Cellar/osi/0.108.7/lib -L/usr/local/Cellar/coinutils/2.11.6/lib -L/usr/local/opt/openblas/lib -lCbcSolver -lCbc -lCgl -lOsiClp -lClpSolver -lClp -lOsi -lCoinUtils -lbz2 -lz -lopenblas -lm'
> pkg_cv_FPLLL_CFLAGS='-pthread -I/usr/local/Cellar/fplll/5.4.1/include'
> pkg_cv_FPLLL_LIBS='-L/usr/local/Cellar/fplll/5.4.1/lib -lpthread -lmpfr -lgmp -lfplll'
> pkg_cv_FREETYPE_CFLAGS=-I/usr/local/opt/freetype/include/freetype2
> pkg_cv_FREETYPE_LIBS='-L/usr/local/opt/freetype/lib -lfreetype'
> pkg_cv_GC_CFLAGS=-I/usr/local/Cellar/bdw-gc/8.0.6/include
> pkg_cv_GC_LIBS='-L/usr/local/Cellar/bdw-gc/8.0.6/lib -lgc -lpthread'
> pkg_cv_GSLPCDIR=/usr/local/lib/pkgconfig
> pkg_cv_GSL_CFLAGS=-I/usr/local/Cellar/gsl/2.7.1/include
> pkg_cv_GSL_LIBS='-L/usr/local/Cellar/gsl/2.7.1/lib -lgsl -lgslcblas -lm'
> pkg_cv_IGRAPH_CFLAGS=-I/usr/local/Cellar/igraph/0.9.6/include/igraph
> pkg_cv_IGRAPH_LIBS='-L/usr/local/Cellar/igraph/0.9.6/lib -ligraph'
> pkg_cv_ISL_CFLAGS='-I/usr/local/Cellar/isl/0.24/include -I/usr/local/opt/gmp/include'
> pkg_cv_ISL_LIBS='-L/usr/local/Cellar/isl/0.24/lib -L/usr/local/opt/gmp/lib -lisl -lgmp'
> pkg_cv_LIBATOMIC_OPS_CFLAGS=-I/usr/local/Cellar/libatomic_ops/7.6.12/include
> pkg_cv_LIBATOMIC_OPS_LIBS='-L/usr/local/Cellar/libatomic_ops/7.6.12/lib -latomic_ops'
> pkg_cv_LIBFFI_CFLAGS=-I/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/ffi
> pkg_cv_LIBFFI_LIBS=-lffi
> pkg_cv_LIBGD_CFLAGS=-I/usr/local/Cellar/gd/2.3.3_1/include
> pkg_cv_LIBGD_LIBS='-L/usr/local/Cellar/gd/2.3.3_1/lib -lgd'
> pkg_cv_LIBPNG_CFLAGS='-I/usr/local/Cellar/zlib/1.2.11/include -I/usr/local/Cellar/libpng/1.6.37/include/libpng16'
> pkg_cv_LIBPNG_LIBS='-L/usr/local/Cellar/zlib/1.2.11/lib -L/usr/local/Cellar/libpng/1.6.37/lib -lpng16 -lz'
> pkg_cv_OPENBLASPCDIR=/usr/local/opt/openblas/lib/pkgconfig
> pkg_cv_OPENBLAS_CFLAGS=-I/usr/local/Cellar/openblas/0.3.19/include
> pkg_cv_OPENBLAS_LIBS='-L/usr/local/Cellar/openblas/0.3.19/lib -lopenblas'
> pkg_cv_PCRE_CFLAGS=-I/usr/local/Cellar/pcre/8.45/include
> pkg_cv_PCRE_LIBS='-L/usr/local/Cellar/pcre/8.45/lib -lpcre -lpcreposix -lpcre -lpcrecpp'
> pkg_cv_READLINE_CFLAGS=-I/usr/local/Cellar/readline/8.1.2/include
> pkg_cv_READLINE_LIBS='-L/usr/local/Cellar/readline/8.1.2/lib -lreadline'
> pkg_cv_R_CFLAGS=-I/usr/local/Cellar/r/4.1.2/lib/R/include
> pkg_cv_R_LIBS='-L/usr/local/opt/gettext/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib -L/usr/local/Cellar/r/4.1.2/lib/R/lib -lR'
> sage_libcurl_cv_lib_curl_executable=yes
> zlib_cv_libz=yes
> zlib_cv_zlib_h=yes
>
> ## ----------------- ##
> ## Output variables. ##
> ## ----------------- ##
>
> 4ti2 \
> 4ti2 \
> _bootstrap \
> _bootstrap \
> _prereq \
> _prereq \
> _prereq \
> _recommended \
> _recommended \
> admcycles \
> admcycles \
> alabaster \
> alabaster \
> alabaster \
> alabaster \
> appdirs \
> appdirs \
> appdirs \
> appdirs \
> appnope \
> appnope \
> appnope \
> appnope \
> arb \
> arb \
> arb \
> arb \
> argcomplete \
> argcomplete \
> argcomplete \
> argcomplete \
> argon2_cffi \
> argon2_cffi \
> argon2_cffi \
> argon2_cffi \
> attrs \
> attrs \
> attrs \
> attrs \
> awali \
> awali \
> babel \
> babel \
> babel \
> babel \
> backcall \
> backcall \
> backcall \
> backcall \
> barvinok \
> barvinok \
> beautifulsoup4 \
> beautifulsoup4 \
> beniget \
> beniget \
> beniget \
> beniget \
> benzene \
> benzene \
> biopython \
> biopython \
> bleach \
> bleach \
> bleach \
> bleach \
> bliss \
> bliss \
> boost_cropped \
> boost_cropped \
> boost_cropped \
> boost_cropped \
> brial \
> brial \
> brial \
> brial \
> buckygen \
> buckygen \
> bzip2 \
> bzip2 \
> bzip2 \
> bzip2 \
> cbc \
> cbc \
> ccache \
> ccache \
> cddlib \
> cddlib \
> cddlib \
> cddlib \
> certifi \
> certifi \
> certifi \
> certifi \
> cffi \
> cffi \
> cffi \
> cffi \
> charset_normalizer \
> charset_normalizer \
> charset_normalizer \
> charset_normalizer \
> cliquer \
> cliquer \
> cliquer \
> cliquer \
> cmake \
> cmake \
> cmake \
> cmake \
> cocoalib \
> cocoalib \
> combinatorial_designs \
> combinatorial_designs \
> combinatorial_designs \
> combinatorial_designs \
> configure \
> configure \
> configure \
> conway_polynomials \
> conway_polynomials \
> conway_polynomials \
> conway_polynomials \
> coxeter3 \
> coxeter3 \
> cppy \
> cppy \
> cppy \
> cppy \
> cryptominisat \
> cryptominisat \
> csdp \
> csdp \
> cunningham_tables \
> cunningham_tables \
> curl \
> curl \
> curl \
> curl \
> cvxopt \
> cvxopt \
> cvxopt \
> cvxopt \
> cycler \
> cycler \
> cycler \
> cycler \
> cypari \
> cypari \
> cypari \
> cypari \
> cysignals \
> cysignals \
> cysignals \
> cysignals \
> cython \
> cython \
> cython \
> cython \
> d3js \
> d3js \
> database_cremona_ellcurve \
> database_cremona_ellcurve \
> database_jones_numfield \
> database_jones_numfield \
> database_knotinfo \
> database_knotinfo \
> database_kohel \
> database_kohel \
> database_mutation_class \
> database_mutation_class \
> database_odlyzko_zeta \
> database_odlyzko_zeta \
> database_stein_watkins \
> database_stein_watkins \
> database_stein_watkins_mini \
> database_stein_watkins_mini \
> database_symbolic_data \
> database_symbolic_data \
> dateutil \
> dateutil \
> dateutil \
> dateutil \
> debugpy \
> debugpy \
> decorator \
> decorator \
> decorator \
> decorator \
> deformation \
> deformation \
> defusedxml \
> defusedxml \
> defusedxml \
> defusedxml \
> distlib \
> distlib \
> distlib \
> distlib \
> docutils \
> docutils \
> docutils \
> docutils \
> dot2tex \
> dot2tex \
> e_antic \
> e_antic \
> ecl \
> ecl \
> ecl \
> ecl \
> eclib \
> eclib \
> eclib \
> eclib \
> ecm \
> ecm \
> ecm \
> ecm \
> elliptic_curves \
> elliptic_curves \
> elliptic_curves \
> elliptic_curves \
> entrypoints \
> entrypoints \
> entrypoints \
> entrypoints \
> fflas_ffpack \
> fflas_ffpack \
> fflas_ffpack \
> fflas_ffpack \
> ffmpeg \
> ffmpeg \
> filelock \
> filelock \
> filelock \
> filelock \
> flint \
> flint \
> flint \
> flint \
> flintqs \
> flintqs \
> flintqs \
> flintqs \
> flit_core \
> flit_core \
> flit_core \
> flit_core \
> fonttools \
> fonttools \
> fonttools \
> fonttools \
> fplll \
> fplll \
> fplll \
> fplll \
> fpylll \
> fpylll \
> fpylll \
> fpylll \
> freetype \
> freetype \
> freetype \
> freetype \
> fricas \
> fricas \
> frobby \
> frobby \
> gambit \
> gambit \
> gap \
> gap \
> gap \
> gap \
> gap3 \
> gap3 \
> gap_jupyter \
> gap_jupyter \
> gap_packages \
> gap_packages \
> gast \
> gast \
> gast \
> gast \
> gc \
> gc \
> gc \
> gc \
> gcc \
> gcc \
> gcc \
> gcc \
> gdb \
> gdb \
> gengetopt \
> gengetopt \
> gengetopt \
> gengetopt \
> gf2x \
> gf2x \
> gf2x \
> gf2x \
> gfan \
> gfan \
> gfan \
> gfan \
> gfortran \
> gfortran \
> gfortran \
> gfortran \
> giac \
> giac \
> giac \
> giac \
> git \
> git \
> givaro \
> givaro \
> givaro \
> givaro \
> glpk \
> glpk \
> glpk \
> glpk \
> glucose \
> glucose \
> gmp \
> gmp \
> gmp \
> gmp \
> gmpy2 \
> gmpy2 \
> gmpy2 \
> gmpy2 \
> gp2c \
> gp2c \
> graphs \
> graphs \
> graphs \
> graphs \
> graphviz \
> graphviz \
> gsl \
> gsl \
> gsl \
> gsl \
> html5lib \
> html5lib \
> html5lib \
> html5lib \
> iconv \
> iconv \
> iconv \
> iconv \
> idna \
> idna \
> idna \
> idna \
> igraph \
> igraph \
> imagemagick \
> imagemagick \
> imagesize \
> imagesize \
> imagesize \
> imagesize \
> iml \
> iml \
> iml \
> iml \
> importlib_metadata \
> importlib_metadata \
> importlib_metadata \
> importlib_metadata \
> importlib_resources \
> importlib_resources \
> importlib_resources \
> importlib_resources \
> info \
> info \
> ipykernel \
> ipykernel \
> ipykernel \
> ipykernel \
> ipympl \
> ipympl \
> ipython \
> ipython \
> ipython \
> ipython \
> ipython_genutils \
> ipython_genutils \
> ipython_genutils \
> ipython_genutils \
> ipywidgets \
> ipywidgets \
> ipywidgets \
> ipywidgets \
> isl \
> isl \
> jedi \
> jedi \
> jedi \
> jedi \
> jinja2 \
> jinja2 \
> jinja2 \
> jinja2 \
> jmol \
> jmol \
> jmol \
> jmol \
> jsonschema \
> jsonschema \
> jsonschema \
> jsonschema \
> jupymake \
> jupymake \
> jupyter_client \
> jupyter_client \
> jupyter_client \
> jupyter_client \
> jupyter_core \
> jupyter_core \
> jupyter_core \
> jupyter_core \
> jupyter_jsmol \
> jupyter_jsmol \
> jupyter_jsmol \
> jupyter_jsmol \
> jupyter_packaging \
> jupyter_packaging \
> jupyterlab \
> jupyterlab \
> jupyterlab_pygments \
> jupyterlab_pygments \
> jupyterlab_pygments \
> jupyterlab_pygments \
> jupyterlab_widgets \
> jupyterlab_widgets \
> kenzo \
> kenzo \
> kiwisolver \
> kiwisolver \
> kiwisolver \
> kiwisolver \
> latte_int \
> latte_int \
> lcalc \
> lcalc \
> lcalc \
> lcalc \
> libatomic_ops \
> libatomic_ops \
> libatomic_ops \
> libatomic_ops \
> libbraiding \
> libbraiding \
> libbraiding \
> libbraiding \
> libffi \
> libffi \
> libffi \
> libffi \
> libgd \
> libgd \
> libgd \
> libgd \
> libgraphviz \
> libgraphviz \
> libhomfly \
> libhomfly \
> libhomfly \
> libhomfly \
> liblzma \
> liblzma \
> liblzma \
> libnauty \
> libnauty \
> libogg \
> libogg \
> libpng \
> libpng \
> libpng \
> libpng \
> libsemigroups \
> libsemigroups \
> libtheora \
> libtheora \
> libxml2 \
> libxml2 \
> lidia \
> lidia \
> lie \
> lie \
> linbox \
> linbox \
> linbox \
> linbox \
> llvm \
> llvm \
> lrcalc \
> lrcalc \
> lrcalc \
> lrcalc \
> lrslib \
> lrslib \
> m4ri \
> m4ri \
> m4ri \
> m4ri \
> m4rie \
> m4rie \
> m4rie \
> m4rie \
> markupsafe \
> markupsafe \
> markupsafe \
> markupsafe \
> mathics \
> mathics \
> mathics_scanner \
> mathics_scanner \
> mathjax \
> mathjax \
> mathjax \
> mathjax \
> matplotlib \
> matplotlib \
> matplotlib \
> matplotlib \
> matplotlib_inline \
> matplotlib_inline \
> matplotlib_inline \
> matplotlib_inline \
> maxima \
> maxima \
> maxima \
> maxima \
> mcqd \
> mcqd \
> meataxe \
> meataxe \
> memory_allocator \
> memory_allocator \
> memory_allocator \
> memory_allocator \
> mistune \
> mistune \
> mistune \
> mistune \
> modular_decomposition \
> modular_decomposition \
> mpc \
> mpc \
> mpc \
> mpc \
> mpfi \
> mpfi \
> mpfi \
> mpfi \
> mpfr \
> mpfr \
> mpfr \
> mpfr \
> mpfrcx \
> mpfrcx \
> mpmath \
> mpmath \
> mpmath \
> mpmath \
> nauty \
> nauty \
> nauty \
> nauty \
> nbclient \
> nbclient \
> nbclient \
> nbclient \
> nbconvert \
> nbconvert \
> nbconvert \
> nbconvert \
> nbformat \
> nbformat \
> nbformat \
> nbformat \
> ncurses \
> ncurses \
> ncurses \
> ncurses \
> nest_asyncio \
> nest_asyncio \
> nest_asyncio \
> nest_asyncio \
> networkx \
> networkx \
> networkx \
> networkx \
> nibabel \
> nibabel \
> ninja_build \
> ninja_build \
> nodeenv \
> nodeenv \
> nodejs \
> nodejs \
> normaliz \
> normaliz \
> notebook \
> notebook \
> notebook \
> notebook \
> notedown \
> notedown \
> ntl \
> ntl \
> ntl \
> ntl \
> numpy \
> numpy \
> numpy \
> numpy \
> openblas \
> openblas \
> openblas \
> openblas \
> openssl \
> openssl \
> openssl \
> openssl \
> ore_algebra \
> ore_algebra \
> p_group_cohomology \
> p_group_cohomology \
> packaging \
> packaging \
> packaging \
> packaging \
> palettable \
> palettable \
> palp \
> palp \
> palp \
> palp \
> pandoc \
> pandoc \
> pandoc_attributes \
> pandoc_attributes \
> pandocfilters \
> pandocfilters \
> pandocfilters \
> pandocfilters \
> pari \
> pari \
> pari \
> pari \
> pari_elldata \
> pari_elldata \
> pari_galdata \
> pari_galdata \
> pari_galdata \
> pari_galdata \
> pari_galpol \
> pari_galpol \
> pari_nftables \
> pari_nftables \
> pari_seadata \
> pari_seadata \
> pari_seadata_small \
> pari_seadata_small \
> pari_seadata_small \
> pari_seadata_small \
> parso \
> parso \
> parso \
> parso \
> patch \
> patch \
> patch \
> patch \
> pcre \
> pcre \
> pcre \
> pcre \
> pdf2svg \
> pdf2svg \
> perl_cpan_polymake_prereq \
> perl_cpan_polymake_prereq \
> perl_mongodb \
> perl_mongodb \
> perl_term_readline_gnu \
> perl_term_readline_gnu \
> pexpect \
> pexpect \
> pexpect \
> pexpect \
> pickleshare \
> pickleshare \
> pickleshare \
> pickleshare \
> pillow \
> pillow \
> pillow \
> pillow \
> pint \
> pint \
> pip \
> pip \
> pip \
> pip \
> pkgconf \
> pkgconf \
> pkgconf \
> pkgconf \
> pkgconfig \
> pkgconfig \
> pkgconfig \
> pkgconfig \
> planarity \
> planarity \
> planarity \
> planarity \
> plantri \
> plantri \
> pluggy \
> pluggy \
> pluggy \
> pluggy \
> ply \
> ply \
> ply \
> ply \
> polylib \
> polylib \
> polymake \
> polymake \
> polytopes_db \
> polytopes_db \
> polytopes_db \
> polytopes_db \
> polytopes_db_4d \
> polytopes_db_4d \
> ppl \
> ppl \
> ppl \
> ppl \
> pplpy \
> pplpy \
> pplpy \
> pplpy \
> pplpy_doc \
> pplpy_doc \
> pplpy_doc \
> pplpy_doc \
> primecount \
> primecount \
> primecount \
> primecount \
> primecountpy \
> primecountpy \
> primecountpy \
> primecountpy \
> primesieve \
> primesieve \
> primesieve \
> primesieve \
> prometheus_client \
> prometheus_client \
> prometheus_client \
> prometheus_client \
> prompt_toolkit \
> prompt_toolkit \
> prompt_toolkit \
> prompt_toolkit \
> ptyprocess \
> ptyprocess \
> ptyprocess \
> ptyprocess \
> py \
> py \
> py \
> py \
> pybind11 \
> pybind11 \
> pybind11 \
> pybind11 \
> pybtex \
> pybtex \
> pycosat \
> pycosat \
> pycparser \
> pycparser \
> pycparser \
> pycparser \
> pycryptosat \
> pycryptosat \
> pycygwin \
> pycygwin \
> pycygwin \
> pycygwin \
> pyflakes \
> pyflakes \
> pygments \
> pygments \
> pygments \
> pygments \
> pygraphviz \
> pygraphviz \
> pynormaliz \
> pynormaliz \
> pyparsing \
> pyparsing \
> pyparsing \
> pyparsing \
> pyrsistent \
> pyrsistent \
> pyrsistent \
> pyrsistent \
> pysingular \
> pysingular \
> pytest \
> pytest \
> python3 \
> python3 \
> python3 \
> python3 \
> python_igraph \
> python_igraph \
> pythran \
> pythran \
> pythran \
> pythran \
> pytz \
> pytz \
> pytz \
> pytz \
> pyx \
> pyx \
> pyzmq \
> pyzmq \
> pyzmq \
> pyzmq \
> qepcad \
> qepcad \
> qhull \
> qhull \
> qhull \
> qhull \
> r \
> r \
> r \
> r \
> r_jupyter \
> r_jupyter \
> ratpoints \
> ratpoints \
> ratpoints \
> ratpoints \
> readline \
> readline \
> readline \
> readline \
> requests \
> requests \
> requests \
> requests \
> rpy2 \
> rpy2 \
> rpy2 \
> rpy2 \
> rst2ipynb \
> rst2ipynb \
> rubiks \
> rubiks \
> rw \
> rw \
> rw \
> rw \
> saclib \
> saclib \
> sage_conf \
> sage_conf \
> sage_conf \
> sage_docbuild \
> sage_docbuild \
> sage_docbuild \
> sage_flatsurf \
> sage_flatsurf \
> sage_numerical_backends_coin \
> sage_numerical_backends_coin \
> sage_numerical_backends_cplex \
> sage_numerical_backends_cplex \
> sage_numerical_backends_gurobi \
> sage_numerical_backends_gurobi \
> sage_setup \
> sage_setup \
> sage_setup \
> sage_sws2rst \
> sage_sws2rst \
> sagelib \
> sagelib \
> sagelib \
> sagemath_doc_html \
> sagemath_doc_html \
> sagemath_doc_html \
> sagemath_doc_pdf \
> sagemath_doc_pdf \
> sagenb_export \
> sagenb_export \
> sagenb_export \
> sagenb_export \
> sagetex \
> sagetex \
> sagetex \
> sagetex \
> scipoptsuite \
> scipoptsuite \
> scipy \
> scipy \
> scipy \
> scipy \
> send2trash \
> send2trash \
> send2trash \
> send2trash \
> setuptools \
> setuptools \
> setuptools \
> setuptools \
> setuptools_scm \
> setuptools_scm \
> setuptools_scm \
> setuptools_scm \
> setuptools_scm_git_archive \
> setuptools_scm_git_archive \
> setuptools_scm_git_archive \
> setuptools_scm_git_archive \
> setuptools_wheel \
> setuptools_wheel \
> setuptools_wheel \
> setuptools_wheel \
> simplegeneric \
> simplegeneric \
> simplegeneric \
> simplegeneric \
> singular \
> singular \
> singular \
> singular \
> singular_jupyter \
> singular_jupyter \
> sip \
> sip \
> sirocco \
> sirocco \
> six \
> six \
> six \
> six \
> slabbe \
> slabbe \
> snappy \
> snappy \
> snowballstemmer \
> snowballstemmer \
> snowballstemmer \
> snowballstemmer \
> speaklater \
> speaklater \
> sphinx \
> sphinx \
> sphinx \
> sphinx \
> sphinxcontrib_applehelp \
> sphinxcontrib_applehelp \
> sphinxcontrib_applehelp \
> sphinxcontrib_applehelp \
> sphinxcontrib_devhelp \
> sphinxcontrib_devhelp \
> sphinxcontrib_devhelp \
> sphinxcontrib_devhelp \
> sphinxcontrib_htmlhelp \
> sphinxcontrib_htmlhelp \
> sphinxcontrib_htmlhelp \
> sphinxcontrib_htmlhelp \
> sphinxcontrib_jsmath \
> sphinxcontrib_jsmath \
> sphinxcontrib_jsmath \
> sphinxcontrib_jsmath \
> sphinxcontrib_qthelp \
> sphinxcontrib_qthelp \
> sphinxcontrib_qthelp \
> sphinxcontrib_qthelp \
> sphinxcontrib_serializinghtml \
> sphinxcontrib_serializinghtml \
> sphinxcontrib_serializinghtml \
> sphinxcontrib_serializinghtml \
> sphinxcontrib_websupport \
> sphinxcontrib_websupport \
> sphinxcontrib_websupport \
> sphinxcontrib_websupport \
> sqlalchemy \
> sqlalchemy \
> sqlite \
> sqlite \
> sqlite \
> sqlite \
> suitesparse \
> suitesparse \
> suitesparse \
> suitesparse \
> surf \
> surf \
> surface_dynamics \
> surface_dynamics'
> symengine \
> symengine \
> symengine_py \
> symengine_py \
> symmetrica \
> symmetrica \
> symmetrica \
> symmetrica \
> sympow \
> sympow \
> sympow \
> sympow \
> sympy \
> sympy \
> sympy \
> sympy \
> tachyon \
> tachyon \
> tachyon \
> tachyon \
> tdlib \
> tdlib \
> terminado \
> terminado \
> terminado \
> terminado \
> testpath \
> testpath \
> testpath \
> testpath \
> texlive \
> texlive'
> texttable \
> texttable \
> thebe \
> thebe \
> thebe \
> thebe \
> threejs \
> threejs \
> threejs \
> threejs \
> tides \
> tides \
> toml \
> toml \
> toml \
> toml \
> tomli \
> tomli \
> tomli \
> tomli \
> topcom \
> topcom \
> tornado \
> tornado \
> tornado \
> tornado \
> tox \
> tox \
> tox \
> tox \
> traitlets \
> traitlets \
> traitlets \
> traitlets \
> typing_extensions \
> typing_extensions \
> typing_extensions \
> typing_extensions \
> tzlocal \
> tzlocal \
> tzlocal \
> tzlocal \
> urllib3 \
> urllib3 \
> urllib3 \
> urllib3 \
> valgrind \
> valgrind \
> vcversioner \
> vcversioner \
> vcversioner \
> vcversioner \
> virtualenv \
> virtualenv \
> virtualenv \
> virtualenv \
> wcwidth \
> wcwidth \
> wcwidth \
> wcwidth \
> webencodings \
> webencodings \
> webencodings \
> webencodings \
> wheel \
> wheel \
> wheel \
> wheel \
> widgetsnbextension \
> widgetsnbextension \
> widgetsnbextension \
> widgetsnbextension \
> xz \
> xz \
> xz \
> xz \
> zeromq \
> zeromq \
> zeromq \
> zeromq \
> zipp \
> zipp \
> zipp \
> zipp \
> zlib \
> zlib \
> zlib \
> zlib'
> zn_poly'
> zn_poly'
> zn_poly'
> zn_poly'
> ACLOCAL='${SHELL} '\''/Users/myuser/app/sage-9.5/config/missing'\'' aclocal-1.16'
> AMDEPBACKSLASH='\'
> AMDEP_FALSE='#'
> AMDEP_TRUE=''
> AMTAR='$${TAR-tar}'
> AM_BACKSLASH='\'
> AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
> AM_DEFAULT_VERBOSITY='1'
> AM_V='$(V)'
> AUTOCONF='${SHELL} '\''/Users/myuser/app/sage-9.5/config/missing'\'' autoconf'
> AUTOHEADER='${SHELL} '\''/Users/myuser/app/sage-9.5/config/missing'\'' autoheader'
> AUTOMAKE='${SHELL} '\''/Users/myuser/app/sage-9.5/config/missing'\'' automake-1.16'
> AWK='awk'
> BOOST_CPPFLAGS='-I/usr/local/include'
> BOOST_LDFLAGS='-L/usr/local/lib'
> CBC_CFLAGS='-I/usr/local/Cellar/cbc/2.10.7/include/cbc/coin -I/usr/local/Cellar/cgl/0.60.5/include/cgl/coin -I/usr/local/Cellar/clp/1.17.7/include/clp/coin -I/usr/local/Cellar/osi/0.108.7/include/osi/coin -I/usr/local/Cellar/coinutils/2.11.6/include/coinutils/coin'
> CBC_LIBS='-L/usr/local/Cellar/cbc/2.10.7/lib -L/usr/local/Cellar/cgl/0.60.5/lib -L/usr/local/Cellar/clp/1.17.7/lib -L/usr/local/Cellar/osi/0.108.7/lib -L/usr/local/Cellar/coinutils/2.11.6/lib -L/usr/local/opt/openblas/lib -lCbcSolver -lCbc -lCgl -lOsiClp -lClpSolver -lClp -lOsi -lCoinUtils -lbz2 -lz -lopenblas -lm'
> CBLAS_CFLAGS=''
> CBLAS_LIBS=''
> CC='/usr/bin/cc'
> CCDEPMODE='depmode=none'
> CDDEXEC=''
> CDDEXECGMP=''
> CFLAGS='-I/usr/local/include'
> CFLAGS_MARCH='-march=native'
> CL=''
> CONVERT='/usr/local/bin/convert'
> CPP='/usr/bin/cc -E'
> CPPFLAGS=' -I/usr/local/opt/readline/include -Ddarwin -I/usr/local/opt/gmp/include -I/usr/local/Cellar/ecl/21.2.1_1/include '
> CSCOPE='cscope'
> CTAGS='ctags'
> CXX='g++ -std=gnu++11'
> CXXCPP='g++ -std=gnu++11 -E'
> CXXDEPMODE='depmode=none'
> CXXFLAGS=''
> CYGPATH_W='echo'
> DEFS='-DPACKAGE_NAME=\"Sage\" -DPACKAGE_TARNAME=\"sage\" -DPACKAGE_VERSION=\"9.5\" -DPACKAGE_STRING=\"Sage\ 9.5\" -DPACKAGE_BUGREPORT=\"sage-...@googlegroups.com\" -DPACKAGE_URL=\"\" -DPACKAGE=\"sage\" -DVERSION=\"9.5\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_LIBM=1 -DHAVE_CXX11=1 -DHAVE_GMP_H=1 -DABSOLUTE_GMP_H=\"///usr/local/include/gmp.h\" -DHAVE_NTL_ZZ_H=1 -DABSOLUTE_NTL_ZZ_H=\"///usr/local/opt/ntl/include/NTL/ZZ.h\" -DHAVE_LIBARB=1 -DHAVE_BOOST=/\*\*/ -DHAVE_LIBCURL=1 -DLIBCURL_FEATURE_ASYNCHDNS=1 -DLIBCURL_FEATURE_GSS_API=1 -DLIBCURL_FEATURE_HTTPS_PROXY=1 -DLIBCURL_FEATURE_IPV6=1 -DLIBCURL_FEATURE_KERBEROS=1 -DLIBCURL_FEATURE_LARGEFILE=1 -DLIBCURL_FEATURE_MULTISSL=1 -DLIBCURL_FEATURE_NTLM=1 -DLIBCURL_FEATURE_NTLM_WB=1 -DLIBCURL_FEATURE_SPNEGO=1 -DLIBCURL_FEATURE_SSL=1 -DLIBCURL_FEATURE_UNIXSOCKETS=1 -DLIBCURL_FEATURE_ALT_SVC=1 -DLIBCURL_FEATURE_LIBZ=1 -DLIBCURL_PROTOCOL_DICT=1 -DLIBCURL_PROTOCOL_FILE=1 -DLIBCURL_PROTOCOL_FTP=1 -DLIBCURL_PROTOCOL_FTPS=1 -DLIBCURL_PROTOCOL_GOPHER=1 -DLIBCURL_PROTOCOL_GOPHERS=1 -DLIBCURL_PROTOCOL_HTTP=1 -DLIBCURL_PROTOCOL_HTTPS=1 -DLIBCURL_PROTOCOL_IMAP=1 -DLIBCURL_PROTOCOL_IMAPS=1 -DLIBCURL_PROTOCOL_LDAP=1 -DLIBCURL_PROTOCOL_LDAPS=1 -DLIBCURL_PROTOCOL_MQTT=1 -DLIBCURL_PROTOCOL_POP3=1 -DLIBCURL_PROTOCOL_POP3S=1 -DLIBCURL_PROTOCOL_RTSP=1 -DLIBCURL_PROTOCOL_SMB=1 -DLIBCURL_PROTOCOL_SMBS=1 -DLIBCURL_PROTOCOL_SMTP=1 -DLIBCURL_PROTOCOL_SMTPS=1 -DLIBCURL_PROTOCOL_TELNET=1 -DLIBCURL_PROTOCOL_TFTP=1 -DHAVE_NCURSES_H=1 -DHAVE_ICONV=1 -DICONV_CONST= -DHAVE_SUITESPARSE_CONFIG_H=1 -DHAVE_AMD_H=1 -DHAVE_ZMQ=/\*\*/'
> DEPDIR='.deps'
> DOT='dot'
> ECHO_C='\c'
> ECHO_N=''
> ECHO_T=''
> ECLIB_CFLAGS=''
> ECLIB_LIBS=''
> ECL_CONFIG='/usr/local/bin/ecl-config'
> ECMBIN=''
> EGREP='/usr/bin/grep -E'
> ETAGS='etags'
> EXEEXT=''
> F77CFLAGS=''
> F77FLAGS=''
> FC='gfortran'
> FCFLAGS=''
> FFLAS_FFPACK_CFLAGS=''
> FFLAS_FFPACK_LIBS=''
> FFMPEG='/usr/local/bin/ffmpeg'
> FOURTITWO_CIRCUITS=''
> FOURTITWO_GRAVER=''
> FOURTITWO_GROEBNER=''
> FOURTITWO_HILBERT=''
> FOURTITWO_MARKOV=''
> FOURTITWO_PPI=''
> FOURTITWO_QSOLVE=''
> FOURTITWO_RAYS=''
> FOURTITWO_ZSOLVE=''
> FPLLL_CFLAGS='-pthread -I/usr/local/Cellar/fplll/5.4.1/include'
> FPLLL_LIBS='-L/usr/local/Cellar/fplll/5.4.1/lib -lpthread -lmpfr -lgmp -lfplll'
> FREETYPE_CFLAGS='-I/usr/local/opt/freetype/include/freetype2'
> FREETYPE_LIBS='-L/usr/local/opt/freetype/lib -lfreetype'
> GCC_VERSION='13.0.0'
> GC_CFLAGS='-I/usr/local/Cellar/bdw-gc/8.0.6/include'
> GC_LIBS='-L/usr/local/Cellar/bdw-gc/8.0.6/lib -lgc -lpthread'
> GENGCHECK='/usr/local/bin/geng'
> GENGETOPT='/usr/local/bin/gengetopt'
> GENGnautyCHECK=''
> GF2X_CFLAGS=''
> GF2X_LIBS=''
> GIVAROCONFIG=''
> GLPSOL='/usr/local/bin/glpsol'
> GP2C=''
> GP='/usr/local/bin/gp'
> GPHELP='/usr/local/bin/gphelp'
> GREP='/usr/bin/grep'
> GSLPCDIR='/usr/local/lib/pkgconfig'
> GSL_CFLAGS='-I/usr/local/Cellar/gsl/2.7.1/include'
> GSL_LIBS='-L/usr/local/Cellar/gsl/2.7.1/lib -lgsl -lgslcblas -lm'
> GXX_VERSION='13.0.0'
> HAVE_CXX11='1'
> HAVE_QUADRATICSIEVE='no'
> IGRAPH_CFLAGS='-I/usr/local/Cellar/igraph/0.9.6/include/igraph'
> IGRAPH_LIBS='-L/usr/local/Cellar/igraph/0.9.6/lib -ligraph'
> INFO='/usr/local/opt/texinfo/bin/info'
> INSTALL_DATA='${INSTALL} -m 644'
> INSTALL_PROGRAM='${INSTALL}'
> INSTALL_SCRIPT='${INSTALL}'
> INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
> ISL_CFLAGS='-I/usr/local/Cellar/isl/0.24/include -I/usr/local/opt/gmp/include'
> ISL_LIBS='-L/usr/local/Cellar/isl/0.24/lib -L/usr/local/opt/gmp/lib -lisl -lgmp'
> LAPACK_CFLAGS=''
> LAPACK_LIBS=''
> LCALC_BIN=''
> LDFLAGS='-L/usr/local/opt/readline/lib'
> LIBATOMIC_OPS_CFLAGS='-I/usr/local/Cellar/libatomic_ops/7.6.12/include'
> LIBATOMIC_OPS_LIBS='-L/usr/local/Cellar/libatomic_ops/7.6.12/lib -latomic_ops'
> LIBCURL='-lcurl'
> LIBCURL_CPPFLAGS=''
> LIBFFI_CFLAGS='-I/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/ffi'
> LIBFFI_LIBS='-lffi'
> LIBGD_CFLAGS='-I/usr/local/Cellar/gd/2.3.3_1/include'
> LIBGD_LIBS='-L/usr/local/Cellar/gd/2.3.3_1/lib -lgd'
> LIBICONV='-liconv'
> LIBOBJS=''
> LIBPNG_CFLAGS='-I/usr/local/Cellar/zlib/1.2.11/include -I/usr/local/Cellar/libpng/1.6.37/include/libpng16'
> LIBPNG_LIBS='-L/usr/local/Cellar/zlib/1.2.11/lib -L/usr/local/Cellar/libpng/1.6.37/lib -lpng16 -lz'
> LIBS='-lsuitesparseconfig -lumfpack -lcholmod -lmpfi -lmpc -lnauty -lncurses -lcurl -lbz2 -larb -lflint -lmpfr -lglpk -lgmp -lm -lntl -lppl -lgmpxx -lgmp'
> LIBSEMIGROUPS_CFLAGS=''
> LIBSEMIGROUPS_LIBS=''
> LIBSINGULAR_PATH='$SAGE_LOCAL/lib/libSingular.dylib'
> LRSNASH=''
> LTLIBICONV='-liconv'
> LTLIBOBJS=''
> M4RI_CFLAGS=''
> M4RI_LIBS=''
> MAINT=''
> MAINTAINER_MODE_FALSE='#'
> MAINTAINER_MODE_TRUE=''
> MAKEINFO='${SHELL} '\''/Users/myuser/app/sage-9.5/config/missing'\'' makeinfo'
> MKDIR_P='/usr/local/bin/gmkdir -p'
> NCURSES_CFLAGS=''
> NCURSES_LIBS=''
> NEATO='neato'
> NTL_INCDIR='///usr/local/opt/ntl/include'
> NTL_LIBDIR='///usr/local/opt/ntl/lib'
> OBJC='gcc'
> OBJCDEPMODE='depmode=none'
> OBJCFLAGS='-g -O2'
> OBJCXX='g++'
> OBJCXXDEPMODE='depmode=none'
> OBJCXXFLAGS='-g -O2'
> OBJEXT='o'
> OPENBLASPCDIR='/usr/local/opt/openblas/lib/pkgconfig'
> OPENBLAS_CFLAGS='-I/usr/local/Cellar/openblas/0.3.19/include'
> OPENBLAS_LIBS='-L/usr/local/Cellar/openblas/0.3.19/lib -lopenblas'
> OPENMP_CFLAGS=''
> OPENMP_CXXFLAGS=''
> OPENSSL_INCLUDES=''
> OPENSSL_LDFLAGS=''
> OPENSSL_LIBS=''
> PACKAGE='sage'
> PACKAGE_BUGREPORT='sage-...@googlegroups.com'
> PACKAGE_NAME='Sage'
> PACKAGE_STRING='Sage 9.5'
> PACKAGE_TARNAME='sage'
> PACKAGE_URL=''
> PACKAGE_VERSION='9.5'
> PALPclass11=''
> PALPclass4=''
> PALPclass5=''
> PALPclass6=''
> PALPclass=''
> PALPcws11=''
> PALPcws4=''
> PALPcws5=''
> PALPcws6=''
> PALPcws=''
> PALPnef11=''
> PALPnef4=''
> PALPnef5=''
> PALPnef6=''
> PALPnef=''
> PALPpoly11=''
> PALPpoly4=''
> PALPpoly5=''
> PALPpoly6=''
> PALPpoly=''
> PANDOC='/usr/local/bin/pandoc'
> PATH_SEPARATOR=':'
> PCRE_CFLAGS='-I/usr/local/Cellar/pcre/8.45/include'
> PCRE_LIBS='-L/usr/local/Cellar/pcre/8.45/lib -lpcre -lpcreposix -lpcre -lpcrecpp'
> PDF2SVG='/usr/local/bin/pdf2svg'
> PERL='/usr/local/bin/perl'
> PKG_CONFIG='/usr/local/bin/pkg-config'
> PKG_CONFIG_LIBDIR=''
> PKG_CONFIG_PATH='/usr/local/opt/zlib/lib/pkgconfig:/usr/local/opt/sqlite/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/openblas/lib/pkgconfig:/usr/local/lib/pkgconfig:'
> PPL_CONFIG='/usr/local/bin/ppl-config'
> PPL_CPPFLAGS='-I/usr/local/Cellar/ppl/1.2_1/include -I/usr/local/opt/gmp/include'
> PPL_LDFLAGS=' -L/usr/local/Cellar/ppl/1.2_1/lib'
> PPL_LIBS=' -lppl -lgmpxx -lgmp'
> PRIMECOUNT_CFLAGS=''
> PRIMECOUNT_LIBS=''
> PRIMESIEVE_CFLAGS=''
> PRIMESIEVE_LIBS=''
> PYTHON_FOR_VENV='/usr/local/bin/python3'
> QHULL=''
> R='/usr/local/bin/R'
> READLINE_CFLAGS='-I/usr/local/Cellar/readline/8.1.2/include'
> READLINE_LIBS='-L/usr/local/Cellar/readline/8.1.2/lib -lreadline'
> REDCHECKGMP=''
> R_CFLAGS='-I/usr/local/Cellar/r/4.1.2/lib/R/include'
> R_LIBS='-L/usr/local/opt/gettext/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib -L/usr/local/Cellar/r/4.1.2/lib/R/lib -lR'
> SAGE_ARB_LIBRARY='arb'
> SAGE_ARCHFLAGS='unset'
> SAGE_BUILT_PACKAGES=' \
> SAGE_CONFIGURE_FFLAS_FFPACK=''
> SAGE_CRTI_DIR=''
> SAGE_CXX_WITHOUT_STD='g++'
> SAGE_DEBUG=''
> SAGE_DOCS='${SAGE_LOCAL}'
> SAGE_DUMMY_PACKAGES=' \
> SAGE_ECL_CONFIG='/usr/local/bin/ecl-config'
> SAGE_EDITABLE=''
> SAGE_ENABLE_4ti2='no'
> SAGE_ENABLE_awali='no'
> SAGE_ENABLE_barvinok='no'
> SAGE_ENABLE_benzene='no'
> SAGE_ENABLE_bliss='no'
> SAGE_ENABLE_buckygen='no'
> SAGE_ENABLE_cbc='no'
> SAGE_ENABLE_ccache='no'
> SAGE_ENABLE_cocoalib='no'
> SAGE_ENABLE_coxeter3='no'
> SAGE_ENABLE_cryptominisat='no'
> SAGE_ENABLE_csdp='no'
> SAGE_ENABLE_cunningham_tables='no'
> SAGE_ENABLE_d3js='no'
> SAGE_ENABLE_database_cremona_ellcurve='no'
> SAGE_ENABLE_database_jones_numfield='no'
> SAGE_ENABLE_database_knotinfo='no'
> SAGE_ENABLE_database_kohel='no'
> SAGE_ENABLE_database_mutation_class='no'
> SAGE_ENABLE_database_odlyzko_zeta='no'
> SAGE_ENABLE_database_stein_watkins='no'
> SAGE_ENABLE_database_stein_watkins_mini='no'
> SAGE_ENABLE_database_symbolic_data='no'
> SAGE_ENABLE_debugpy='no'
> SAGE_ENABLE_deformation='no'
> SAGE_ENABLE_dot2tex='no'
> SAGE_ENABLE_e_antic='no'
> SAGE_ENABLE_ffmpeg='no'
> SAGE_ENABLE_fricas='no'
> SAGE_ENABLE_frobby='no'
> SAGE_ENABLE_gambit='no'
> SAGE_ENABLE_gap3='no'
> SAGE_ENABLE_gap_jupyter='no'
> SAGE_ENABLE_gap_packages='no'
> SAGE_ENABLE_gdb='no'
> SAGE_ENABLE_git='no'
> SAGE_ENABLE_glucose='no'
> SAGE_ENABLE_gp2c='no'
> SAGE_ENABLE_graphviz='no'
> SAGE_ENABLE_igraph='no'
> SAGE_ENABLE_imagemagick='no'
> SAGE_ENABLE_info='no'
> SAGE_ENABLE_ipympl='no'
> SAGE_ENABLE_isl='no'
> SAGE_ENABLE_jupymake='no'
> SAGE_ENABLE_jupyter_packaging='no'
> SAGE_ENABLE_jupyterlab_widgets='no'
> SAGE_ENABLE_kenzo='no'
> SAGE_ENABLE_latte_int='no'
> SAGE_ENABLE_libgraphviz='no'
> SAGE_ENABLE_libnauty='no'
> SAGE_ENABLE_libogg='no'
> SAGE_ENABLE_libsemigroups='no'
> SAGE_ENABLE_libtheora='no'
> SAGE_ENABLE_libxml2='no'
> SAGE_ENABLE_lidia='no'
> SAGE_ENABLE_lie='no'
> SAGE_ENABLE_llvm='no'
> SAGE_ENABLE_lrslib='no'
> SAGE_ENABLE_mathics='no'
> SAGE_ENABLE_mathics_scanner='no'
> SAGE_ENABLE_mcqd='no'
> SAGE_ENABLE_meataxe='no'
> SAGE_ENABLE_modular_decomposition='no'
> SAGE_ENABLE_mpfrcx='no'
> SAGE_ENABLE_ninja_build='no'
> SAGE_ENABLE_nodejs='no'
> SAGE_ENABLE_normaliz='no'
> SAGE_ENABLE_notedown='no'
> SAGE_ENABLE_p_group_cohomology='no'
> SAGE_ENABLE_palettable='no'
> SAGE_ENABLE_pandoc='no'
> SAGE_ENABLE_pandoc_attributes='no'
> SAGE_ENABLE_pari_elldata='no'
> SAGE_ENABLE_pari_galpol='no'
> SAGE_ENABLE_pari_nftables='no'
> SAGE_ENABLE_pari_seadata='no'
> SAGE_ENABLE_pdf2svg='no'
> SAGE_ENABLE_perl_cpan_polymake_prereq='no'
> SAGE_ENABLE_perl_mongodb='no'
> SAGE_ENABLE_perl_term_readline_gnu='no'
> SAGE_ENABLE_pint='no'
> SAGE_ENABLE_plantri='no'
> SAGE_ENABLE_polylib='no'
> SAGE_ENABLE_polymake='no'
> SAGE_ENABLE_polytopes_db_4d='no'
> SAGE_ENABLE_pycosat='no'
> SAGE_ENABLE_pycryptosat='no'
> SAGE_ENABLE_pynormaliz='no'
> SAGE_ENABLE_pysingular='no'
> SAGE_ENABLE_python_igraph='no'
> SAGE_ENABLE_qepcad='no'
> SAGE_ENABLE_r_jupyter='no'
> SAGE_ENABLE_rst2ipynb='no'
> SAGE_ENABLE_rubiks='no'
> SAGE_ENABLE_saclib='no'
> SAGE_ENABLE_sage_numerical_backends_coin='no'
> SAGE_ENABLE_sage_numerical_backends_cplex='no'
> SAGE_ENABLE_sage_numerical_backends_gurobi='no'
> SAGE_ENABLE_sage_sws2rst='no'
> SAGE_ENABLE_sagemath_doc_pdf='no'
> SAGE_ENABLE_scipoptsuite='no'
> SAGE_ENABLE_singular_jupyter='no'
> SAGE_ENABLE_sip='no'
> SAGE_ENABLE_sirocco='no'
> SAGE_ENABLE_speaklater='no'
> SAGE_ENABLE_surf='no'
> SAGE_ENABLE_symengine='no'
> SAGE_ENABLE_symengine_py='no'
> SAGE_ENABLE_tdlib='no'
> SAGE_ENABLE_texlive='no'
> SAGE_ENABLE_texttable='no'
> SAGE_ENABLE_tides='no'
> SAGE_ENABLE_topcom='no'
> SAGE_ENABLE_valgrind='no'
> SAGE_FAT_BINARY=''
> SAGE_FLINT_PREFIX=''
> SAGE_FREETYPE_PREFIX=''
> SAGE_GCC_DEP=''
> SAGE_GLPK_PREFIX=''
> SAGE_GMP_INCLUDE='///usr/local/include'
> SAGE_GMP_PREFIX=''
> SAGE_GSL_PC_COMMAND='$(SED) -e '\''s/$${GSL_CBLAS_LIB}//'\'' -e "s/^GSL_CBLAS_LIB=.*/Requires: cblas/" "/usr/local/lib/pkgconfig/gsl.pc" > "$(@)"'
> SAGE_KENZO_FAS='${prefix}/lib/ecl/kenzo.fas'
> SAGE_MAXIMA_FAS='${prefix}/lib/ecl/maxima.fas'
> SAGE_MPC_PREFIX=''
> SAGE_MPFR_PREFIX=''
> SAGE_NAUTY_BINS_PREFIX=''
> SAGE_NORMAL_PACKAGES=' \
> SAGE_NTL_PREFIX=''
> SAGE_OPENBLAS_PC_COMMAND='$(LN) -sf "/usr/local/opt/openblas/lib/pkgconfig/openblas.pc" "$(@)"'
> SAGE_OPTIONAL_INSTALLED_PACKAGES=' \
> SAGE_OPTIONAL_UNINSTALLED_PACKAGES=''
> SAGE_PACKAGE_DEPENDENCIES='
> SAGE_PACKAGE_TREES='
> SAGE_PACKAGE_VERSIONS='
> SAGE_PARI_CFG='$SAGE_LOCAL/lib/pari/pari.cfg'
> SAGE_PARI_PREFIX='$SAGE_LOCAL'
> SAGE_PIP_PACKAGES=' \
> SAGE_PKG_CONFIG_PATH='$SAGE_LOCAL/lib/pkgconfig'
> SAGE_ROOT='/Users/myuser/app/sage-9.5'
> SAGE_SCRIPT_PACKAGES=' \
> SAGE_SDIST_PACKAGES=' \
> SAGE_SPKG_OPTIONS=''
> SAGE_SUITESPARSE_PREFIX=''
> SAGE_SYSTEM_FACADE_PC_FILES=' $(SAGE_PKGCONFIG)/blas.pc $(SAGE_PKGCONFIG)/cblas.pc $(SAGE_PKGCONFIG)/lapack.pc $(SAGE_PKGCONFIG)/gsl.pc'
> SAGE_TOOLCHAIN='gcc'
> SAGE_VENV='${SAGE_LOCAL}/var/lib/sage/venv-python3.9'
> SCDD=''
> SED='/usr/bin/sed'
> SET_MAKE=''
> SHELL='/bin/sh'
> SHLIBEXT='dylib'
> SINGULAR_BIN=''
> SINGULAR_CFLAGS=''
> SINGULAR_LIBS=''
> SINGULAR_LIB_DIR=''
> STRIP=''
> SYMPOW=''
> TACHYON=''
> TWOPI='twopi'
> VERSION='9.5'
> XML2_CONFIG='/usr/bin/xml2-config'
> ZMQ_CPPFLAGS=''
> ZMQ_LDFLAGS=''
> ZMQ_LIBS='-lzmq'
> _libcurl_config=''
> ac_ct_CC='/usr/bin/cc'
> ac_ct_CXX='g++'
> ac_ct_FC='gfortran'
> ac_ct_OBJC='gcc'
> ac_ct_OBJCXX='g++'
> ac_path_PYTHON3='/usr/local/bin/python3'
> am__EXEEXT_FALSE=''
> am__EXEEXT_TRUE='#'
> am__fastdepCC_FALSE=''
> am__fastdepCC_TRUE='#'
> am__fastdepCXX_FALSE=''
> am__fastdepCXX_TRUE='#'
> am__fastdepOBJCXX_FALSE=''
> am__fastdepOBJCXX_TRUE='#'
> am__fastdepOBJC_FALSE=''
> am__fastdepOBJC_TRUE='#'
> am__include='include'
> am__isrc=''
> am__leading_dot='.'
> am__nodep='_no'
> am__quote=''
> am__tar='$${TAR-tar} chof - "$$tardir"'
> am__untar='$${TAR-tar} xf -'
> bindir='${exec_prefix}/bin'
> build='x86_64-apple-darwin21.3.0'
> build_alias=''
> build_cpu='x86_64'
> build_os='darwin21.3.0'
> build_vendor='apple'
> bzip2_prog='/usr/local/opt/bzip2/bin/bzip2'
> datadir='${datarootdir}'
> datarootdir='${prefix}/share'
> deps_4ti2 = zlib $(MP_LIBRARY) glpk
> deps__bootstrap =
> deps__prereq =
> deps__recommended =
> deps_admcycles = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_alabaster = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_appdirs = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_appnope = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_arb = $(MP_LIBRARY) mpfr flint
> deps_argcomplete = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_argon2_cffi = $(PYTHON) six | $(PYTHON_TOOLCHAIN) cffi
> deps_attrs = $(PYTHON) vcversioner | $(PYTHON_TOOLCHAIN)
> deps_awali = $(PYTHON) cmake cython nbconvert ncurses
> deps_babel = $(PYTHON) | $(PYTHON_TOOLCHAIN) pytz
> deps_backcall = $(PYTHON) | $(PYTHON_TOOLCHAIN) flit_core tomli
> deps_barvinok = ntl isl polylib
> deps_beautifulsoup4 = | pip
> deps_beniget = $(PYTHON) gast | $(PYTHON_TOOLCHAIN)
> deps_benzene =
> deps_biopython = | pip
> deps_bleach = $(PYTHON) packaging six | $(PYTHON_TOOLCHAIN)
> deps_bliss =
> deps_boost_cropped =
> deps_brial = boost_cropped m4ri libpng | pkgconf
> deps_buckygen =
> deps_bzip2 = | pkgconf
> deps_cbc = readline zlib bzip2 $(BLAS)
> deps_ccache = zlib
> deps_cddlib = $(MP_LIBRARY)
> deps_certifi = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_cffi = $(PYTHON) | $(PYTHON_TOOLCHAIN) pycparser
> deps_charset_normalizer = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_cliquer =
> deps_cmake = curl zlib bzip2 liblzma
> deps_cocoalib = $(MP_LIBRARY)
> deps_combinatorial_designs =
> deps_configure =
> deps_conway_polynomials = $(PYTHON)
> deps_coxeter3 =
> deps_cppy = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_cryptominisat = $(PYTHON) m4ri zlib libpng | cmake boost_cropped
> deps_csdp = $(BLAS)
> deps_cunningham_tables =
> deps_curl =
> deps_cvxopt = $(PYTHON) numpy $(BLAS) gsl glpk suitesparse | $(PYTHON_TOOLCHAIN) pkgconfig matplotlib $(and $(filter-out no,$(SAGE_CHECK_cvxopt)), pytest)
> deps_cycler = $(PYTHON) six | $(PYTHON_TOOLCHAIN)
> deps_cypari = $(PYTHON) cython pari cysignals | $(PYTHON_TOOLCHAIN)
> deps_cysignals = $(PYTHON) cython pari | $(PYTHON_TOOLCHAIN)
> deps_cython = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_d3js =
> deps_database_cremona_ellcurve =
> deps_database_jones_numfield =
> deps_database_knotinfo = $(PYTHON) | $(PYTHON_TOOLCHAIN) $(and $(filter-out no,$(SAGE_CHECK_database_knotinfo)), $(SAGERUNTIME) ipywidgets sympy singular gap libhomfly libbraiding matplotlib)
> deps_database_kohel =
> deps_database_mutation_class =
> deps_database_odlyzko_zeta = | $(SAGERUNTIME)
> deps_database_stein_watkins =
> deps_database_stein_watkins_mini =
> deps_database_symbolic_data =
> deps_dateutil = $(PYTHON) six | $(PYTHON_TOOLCHAIN)
> deps_debugpy = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_decorator = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_deformation = $(MP_LIBRARY) mpfr flint
> deps_defusedxml = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_distlib = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_docutils = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_dot2tex = $(PYTHON) | $(PYTHON_TOOLCHAIN) pyparsing
> deps_e_antic = $(MP_LIBRARY) flint arb
> deps_ecl = $(MP_LIBRARY) readline gc libffi
> deps_eclib = pari ntl flint
> deps_ecm = $(MP_LIBRARY)
> deps_elliptic_curves = | $(PYTHON)
> deps_entrypoints = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_fflas_ffpack = $(MP_LIBRARY) givaro gsl $(BLAS) | pkgconf
> deps_ffmpeg =
> deps_filelock = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_flint = $(MP_LIBRARY) mpfr ntl
> deps_flintqs = $(MP_LIBRARY)
> deps_flit_core = $(PYTHON) | pip
> deps_fonttools = $(PYTHON) | $(PYTHON_TOOLCHAIN) cython
> deps_fplll = $(MP_LIBRARY) mpfr
> deps_fpylll = $(PYTHON) cython cysignals numpy fplll
> deps_freetype = libpng bzip2
> deps_fricas = ecl
> deps_frobby = $(MP_LIBRARY)
> deps_gambit = cython | $(PYTHON_TOOLCHAIN)
> deps_gap = ncurses readline zlib $(MP_LIBRARY)
> deps_gap3 =
> deps_gap_jupyter = $(PYTHON) | $(PYTHON_TOOLCHAIN) ipython gap
> deps_gap_packages = gap libsemigroups planarity | $(SAGERUNTIME)
> deps_gast = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_gc = libatomic_ops
> deps_gcc = | $(MP_LIBRARY) mpfr mpc zlib xz
> deps_gdb = mpfr zlib ncurses $(PYTHON) xz
> deps_gengetopt = | xz
> deps_gf2x =
> deps_gfan = $(MP_LIBRARY) cddlib
> deps_gfortran = | $(MP_LIBRARY) mpfr mpc zlib xz
> deps_giac = readline libpng $(MP_LIBRARY) mpfr mpfi ntl gsl pari glpk curl
> deps_git =
> deps_givaro = $(MP_LIBRARY)
> deps_glpk = $(MP_LIBRARY) zlib
> deps_glucose = zlib
> deps_gmp = xz
> deps_gmpy2 = $(PYTHON) $(MP_LIBRARY) mpfr mpc | $(PYTHON_TOOLCHAIN)
> deps_gp2c = pari
> deps_graphs =
> deps_graphviz =
> deps_gsl = $(BLAS) | pkgconf
> deps_html5lib = $(PYTHON) webencodings | $(PYTHON_TOOLCHAIN)
> deps_iconv =
> deps_idna = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_igraph = $(MP_LIBRARY) glpk $(BLAS) libxml2
> deps_imagemagick =
> deps_imagesize = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_iml = $(MP_LIBRARY) $(BLAS) | pkgconf
> deps_importlib_metadata = $(PYTHON) zipp typing_extensions | $(PYTHON_TOOLCHAIN) tomli
> deps_importlib_resources = $(PYTHON) zipp | $(PYTHON_TOOLCHAIN)
> deps_info = ncurses | xz
> deps_ipykernel = $(PYTHON) ipython_genutils importlib_metadata argcomplete matplotlib_inline ipython jupyter_client tornado appnope traitlets | $(PYTHON_TOOLCHAIN)
> deps_ipympl = $(PYTHON) | $(PYTHON_TOOLCHAIN) ipywidgets matplotlib ipykernel jupyter_packaging $(findstring jupyterlab,$(OPTIONAL_INSTALLED_PACKAGES))
> deps_ipython = $(PYTHON) jinja2 tornado pyzmq pickleshare simplegeneric traitlets | $(PYTHON_TOOLCHAIN) wcwidth prompt_toolkit pygments pexpect appnope backcall jedi
> deps_ipython_genutils = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_ipywidgets = $(PYTHON) widgetsnbextension | $(PYTHON_TOOLCHAIN) ipykernel ipython traitlets
> deps_isl = $(MP_LIBRARY)
> deps_jedi = $(PYTHON) parso | $(PYTHON_TOOLCHAIN)
> deps_jinja2 = $(PYTHON) markupsafe docutils | $(PYTHON_TOOLCHAIN)
> deps_jmol =
> deps_jsonschema = $(PYTHON) vcversioner attrs importlib_metadata pyrsistent | $(PYTHON_TOOLCHAIN)
> deps_jupymake = $(PYTHON) polymake | $(PYTHON_TOOLCHAIN)
> deps_jupyter_client = $(PYTHON) jupyter_core | $(PYTHON_TOOLCHAIN) pyzmq dateutil nest_asyncio tornado traitlets entrypoints
> deps_jupyter_core = $(PYTHON) | $(PYTHON_TOOLCHAIN) traitlets
> deps_jupyter_jsmol = ipywidgets $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_jupyter_packaging = $(PYTHON) packaging | $(PYTHON_TOOLCHAIN)
> deps_jupyterlab = $(PYTHON) vcversioner jupyter_core jupyter_client | $(PYTHON_TOOLCHAIN)
> deps_jupyterlab_pygments = $(PYTHON) pygments | $(PYTHON_TOOLCHAIN)
> deps_jupyterlab_widgets = jupyterlab nodejs tornado
> deps_kenzo = ecl
> deps_kiwisolver = $(PYTHON) cppy | $(PYTHON_TOOLCHAIN)
> deps_latte_int = $(MP_LIBRARY) ntl 4ti2 cddlib lidia $(findstring lrslib,$(OPTIONAL_INSTALLED_PACKAGES))
> deps_lcalc = pari | gengetopt
> deps_libatomic_ops =
> deps_libbraiding =
> deps_libffi =
> deps_libgd = libpng freetype xz
> deps_libgraphviz =
> deps_libhomfly = gc
> deps_liblzma = $(SAGE_LOCAL)/$(SPKG_INST_RELDIR)/xz-$(vers_xz)
> deps_libnauty = $(SAGE_LOCAL)/$(SPKG_INST_RELDIR)/nauty-$(vers_nauty)
> deps_libogg =
> deps_libpng = zlib
> deps_libsemigroups =
> deps_libtheora = libogg libpng
> deps_libxml2 = iconv zlib
> deps_lidia = $(MP_LIBRARY)
> deps_lie = readline ncurses
> deps_linbox = $(MP_LIBRARY) ntl givaro mpfr fplll iml flint fflas_ffpack
> deps_llvm =
> deps_lrcalc =
> deps_lrslib = $(MP_LIBRARY)
> deps_m4ri = libpng
> deps_m4rie = m4ri
> deps_markupsafe = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_mathics = $(PYTHON) | $(PYTHON_TOOLCHAIN) pint palettable mathics_scanner $(and $(filter-out no,$(SAGE_CHECK_mathics)), $(SAGERUNTIME) ipywidgets importlib_metadata sympy mpmath matplotlib)
> deps_mathics_scanner = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_mathjax =
> deps_matplotlib = $(PYTHON) numpy freetype pillow dateutil pyparsing tornado six cycler qhull fonttools | $(PYTHON_TOOLCHAIN) pytz kiwisolver certifi setuptools_scm_git_archive
> deps_matplotlib_inline = $(PYTHON) traitlets | $(PYTHON_TOOLCHAIN)
> deps_maxima = ecl
> deps_mcqd =
> deps_meataxe =
> deps_memory_allocator = $(PYTHON) cython | $(PYTHON_TOOLCHAIN)
> deps_mistune = $(PYTHON) cython | $(PYTHON_TOOLCHAIN)
> deps_modular_decomposition =
> deps_mpc = $(MP_LIBRARY) mpfr
> deps_mpfi = $(MP_LIBRARY) mpfr
> deps_mpfr = $(MP_LIBRARY)
> deps_mpfrcx = $(MP_LIBRARY) mpfr mpc
> deps_mpmath = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_nauty =
> deps_nbclient = $(PYTHON) jupyter_client | $(PYTHON_TOOLCHAIN)
> deps_nbconvert = $(PYTHON) mistune jinja2 pygments traitlets jupyter_core nbformat entrypoints bleach pandocfilters testpath defusedxml jupyter_client jupyterlab_pygments nbclient | $(PYTHON_TOOLCHAIN)
> deps_nbformat = $(PYTHON) | $(PYTHON_TOOLCHAIN) jsonschema
> deps_ncurses =
> deps_nest_asyncio = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_networkx = $(PYTHON) decorator | $(PYTHON_TOOLCHAIN) scipy $(and $(filter-out no,$(SAGE_CHECK_networkx)), pytest)
> deps_nibabel = | pip
> deps_ninja_build = | $(PYTHON)
> deps_nodeenv = $(PYTHON) | $(PYTHON_TOOLCHAIN) certifi
> deps_nodejs = nodeenv
> deps_normaliz = $(MP_LIBRARY) flint e_antic libnauty
> deps_notebook = $(PYTHON) | $(PYTHON_TOOLCHAIN) ipython jupyter_client ipykernel nbconvert nbformat jinja2 tornado terminado send2trash prometheus_client argon2_cffi
> deps_notedown = $(PYTHON) $(PYTHON_TOOLCHAIN) | pip nbformat nbconvert six pandoc_attributes
> deps_ntl = $(MP_LIBRARY) gf2x
> deps_numpy = $(PYTHON) $(BLAS) gfortran | $(PYTHON_TOOLCHAIN) pkgconfig cython
> deps_openblas = gfortran | $(PYTHON)
> deps_openssl =
> deps_ore_algebra = $(PYTHON) | $(PYTHON_TOOLCHAIN) $(SAGERUNTIME)
> deps_p_group_cohomology = $(PYTHON) cython cysignals singular meataxe $(SAGE_SRC)/sage/matrix/matrix_gfpn_dense.pxd $(SAGE_SRC)/sage/structure/element.pxd $(SAGE_SRC)/sage/matrix/matrix_gfpn_dense.pxd $(SAGE_SRC)/sage/matrix/matrix0.pxd $(SAGE_SRC)/sage/libs/meataxe.pxd $(SAGE_SRC)/sage/rings/morphism.pxd | $(PYTHON_TOOLCHAIN) matplotlib gap xz $(SAGERUNTIME) ipywidgets
> deps_packaging = $(PYTHON) | setuptools pip wheel pyparsing setuptools_wheel
> deps_palettable = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_palp =
> deps_pandoc =
> deps_pandoc_attributes = $(PYTHON) $(PYTHON_TOOLCHAIN) | pip pandocfilters
> deps_pandocfilters = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pari = readline $(MP_LIBRARY) | pari_galdata pari_seadata_small
> deps_pari_elldata =
> deps_pari_galdata =
> deps_pari_galpol =
> deps_pari_nftables =
> deps_pari_seadata =
> deps_pari_seadata_small =
> deps_parso = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_patch =
> deps_pcre = bzip2
> deps_pdf2svg =
> deps_perl_cpan_polymake_prereq =
> deps_perl_mongodb =
> deps_perl_term_readline_gnu = readline
> deps_pexpect = $(PYTHON) ptyprocess | $(PYTHON_TOOLCHAIN)
> deps_pickleshare = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pillow = $(PYTHON) zlib freetype | $(PYTHON_TOOLCHAIN) pkgconf
> deps_pint = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pip = $(PYTHON) setuptools wheel
> deps_pkgconf = | patch
> deps_pkgconfig = $(PYTHON) | $(PYTHON_TOOLCHAIN) pkgconf
> deps_planarity =
> deps_plantri =
> deps_pluggy = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_ply = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_polylib = $(MP_LIBRARY) mpfr ntl
> deps_polymake = $(MP_LIBRARY) bliss cddlib $(findstring lrslib,$(OPTIONAL_INSTALLED_PACKAGES)) normaliz perl_term_readline_gnu ppl perl_cpan_polymake_prereq libxml2 | ninja_build
> deps_polytopes_db =
> deps_polytopes_db_4d =
> deps_ppl = $(MP_LIBRARY) glpk
> deps_pplpy = $(PYTHON) $(MP_LIBRARY) gmpy2 cysignals mpfr mpc ppl | $(PYTHON_TOOLCHAIN)
> deps_pplpy_doc = pplpy | sphinx
> deps_primecount = primesieve | cmake
> deps_primecountpy = $(PYTHON) primecount cysignals | $(PYTHON_TOOLCHAIN) cython
> deps_primesieve = | cmake
> deps_prometheus_client = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_prompt_toolkit = $(PYTHON) six wcwidth | $(PYTHON_TOOLCHAIN)
> deps_ptyprocess = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_py = $(PYTHON) | $(PYTHON_TOOLCHAIN) setuptools_scm
> deps_pybind11 = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pybtex = | pip
> deps_pycosat = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pycparser = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pycryptosat = $(PYTHON) m4ri zlib libpng cryptominisat | cmake boost_cropped $(PYTHON_TOOLCHAIN)
> deps_pycygwin = $(PYTHON) cython | $(PYTHON_TOOLCHAIN)
> deps_pyflakes = | pip
> deps_pygments = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pygraphviz = $(PYTHON) libgraphviz | $(PYTHON_TOOLCHAIN)
> deps_pynormaliz = $(PYTHON) normaliz | $(PYTHON_TOOLCHAIN)
> deps_pyparsing = $(PYTHON) | setuptools pip wheel
> deps_pyrsistent = $(PYTHON) vcversioner | $(PYTHON_TOOLCHAIN)
> deps_pysingular = $(PYTHON) singular | $(PYTHON_TOOLCHAIN)
> deps_pytest = $(PYTHON) pluggy packaging attrs py pyparsing importlib_metadata | $(PYTHON_TOOLCHAIN)
> deps_python3 = zlib readline sqlite libpng bzip2 liblzma xz libffi openssl
> deps_python_igraph = igraph texttable $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pythran = $(PYTHON) beniget gast ply numpy | $(PYTHON_TOOLCHAIN)
> deps_pytz = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_pyx = | pip
> deps_pyzmq = $(PYTHON) cython zeromq | $(PYTHON_TOOLCHAIN)
> deps_qepcad = readline saclib
> deps_qhull = | cmake
> deps_r = $(BLAS) gfortran iconv readline bzip2 liblzma pcre curl | pkgconf
> deps_r_jupyter = notebook r
> deps_ratpoints = $(MP_LIBRARY)
> deps_readline = ncurses
> deps_requests = $(PYTHON) | $(PYTHON_TOOLCHAIN) idna urllib3 certifi charset_normalizer
> deps_rpy2 = $(PYTHON) r cffi tzlocal pytz | $(PYTHON_TOOLCHAIN) pycparser $(and $(filter-out no,$(SAGE_CHECK_rpy2)), pytest numpy ipython)
> deps_rst2ipynb = $(PYTHON) pandoc | $(PYTHON_TOOLCHAIN) notedown
> deps_rubiks =
> deps_rw =
> deps_saclib =
> deps_sage_conf = $(PYTHON) $(SAGE_ROOT)/pkgs/sage-conf/sage_conf.py $(SAGE_ROOT)/pkgs/sage-conf/setup.cfg $(SAGE_ROOT)/pkgs/sage-conf/bin/sage-env-config | $(PYTHON_TOOLCHAIN)
> deps_sage_docbuild = $(PYTHON) sphinx $(SAGE_ROOT)/pkgs/sage-docbuild/sage_docbuild/*.py $(SAGE_ROOT)/pkgs/sage-docbuild/sage_docbuild/ext/*.py | $(PYTHON_TOOLCHAIN) sagelib
> deps_sage_flatsurf = $(PYTHON) | $(PYTHON_TOOLCHAIN) surface_dynamics
> deps_sage_numerical_backends_coin = cbc cysignals $(SAGE_SRC)/sage/numerical/backends/generic_backend.pxd $(SAGE_SRC)/sage/cpython/string.pxd $(SAGE_SRC)/sage/cpython/string_impl.h | $(SAGERUNTIME) $(PYTHON_TOOLCHAIN) cython ipywidgets
> deps_sage_numerical_backends_cplex = cysignals $(SAGE_SRC)/sage/numerical/backends/generic_backend.pxd $(SAGE_SRC)/sage/cpython/string.pxd $(SAGE_SRC)/sage/cpython/string_impl.h | $(SAGERUNTIME) $(PYTHON_TOOLCHAIN) cython ipywidgets
> deps_sage_numerical_backends_gurobi = cysignals $(SAGE_SRC)/sage/numerical/backends/generic_backend.pxd $(SAGE_SRC)/sage/cpython/string.pxd $(SAGE_SRC)/sage/cpython/string_impl.h | $(SAGERUNTIME) $(PYTHON_TOOLCHAIN) cython ipywidgets
> deps_sage_setup = $(PYTHON) cython pkgconfig $(SAGE_ROOT)/pkgs/sage-setup/sage_setup/autogen/interpreters/specs/*.py | $(PYTHON_TOOLCHAIN)
> deps_sage_sws2rst = $(PYTHON) beautifulsoup4 $(SAGE_ROOT)/pkgs/sage-sws2rst/*.py | $(PYTHON_TOOLCHAIN) $(and $(filter-out no,$(SAGE_CHECK_sage_sws2rst)), tox)
> deps_sagelib = FORCE $(SCRIPTS) arb boost_cropped $(BLAS) brial cliquer cypari cysignals cython ecl eclib ecm flint libgd gap giac givaro glpk gmpy2 gsl iml jinja2 jupyter_core lcalc lrcalc libbraiding libhomfly libpng linbox m4ri m4rie memory_allocator mpc mpfi mpfr $(MP_LIBRARY) ntl numpy pari pip pkgconfig planarity ppl pplpy primesieve primecount primecountpy pycygwin $(PYTHON) ratpoints requests rw sage_conf singular symmetrica zn_poly $(PCFILES) | $(PYTHON_TOOLCHAIN) sage_setup
> deps_sagemath_doc_html = sagelib sphinx pplpy_doc | $(SAGERUNTIME) maxima networkx scipy sympy matplotlib pillow mathjax mpmath ipykernel jupyter_client conway_polynomials tachyon jmol thebe ipywidgets sage_docbuild
> deps_sagemath_doc_pdf = sagemath_doc_html
> deps_sagenb_export = $(PYTHON) notebook nbconvert ipython six | $(PYTHON_TOOLCHAIN)
> deps_sagetex = $(PYTHON) maxima scipy matplotlib pillow tachyon | $(and $(filter-out no,$(SAGE_CHECK_sagetex)), $(SAGERUNTIME) sympy elliptic_curves jmol)
> deps_scipoptsuite = $(MP_LIBRARY) bliss readline | cmake
> deps_scipy = $(PYTHON) $(BLAS) gfortran numpy pybind11 pythran | $(PYTHON_TOOLCHAIN)
> deps_send2trash = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_setuptools = $(PYTHON)
> deps_setuptools_scm = $(PYTHON) | setuptools pip wheel tomli packaging
> deps_setuptools_scm_git_archive = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_setuptools_wheel = $(PYTHON) setuptools wheel
> deps_simplegeneric = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_singular = $(MP_LIBRARY) ntl flint readline mpfr cddlib
> deps_singular_jupyter = $(PYTHON) jupyter_client | $(PYTHON_TOOLCHAIN) pysingular ipython ipywidgets
> deps_sip = $(PYTHON)
> deps_sirocco =
> deps_six = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_slabbe = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_snappy = $(PYTHON) decorator ipython cypari | $(PYTHON_TOOLCHAIN) sagelib
> deps_snowballstemmer = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_speaklater = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_sphinx = $(PYTHON) | $(PYTHON_TOOLCHAIN) docutils jinja2 pygments six snowballstemmer imagesize babel alabaster requests sphinxcontrib_websupport sphinxcontrib_applehelp sphinxcontrib_devhelp sphinxcontrib_htmlhelp sphinxcontrib_jsmath sphinxcontrib_qthelp sphinxcontrib_serializinghtml packaging
> deps_sphinxcontrib_applehelp = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_sphinxcontrib_devhelp = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_sphinxcontrib_htmlhelp = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_sphinxcontrib_jsmath = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_sphinxcontrib_qthelp = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_sphinxcontrib_serializinghtml = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_sphinxcontrib_websupport = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_sqlalchemy = | pip
> deps_sqlite = readline
> deps_suitesparse = $(BLAS) gfortran mpfr $(MP_LIBRARY)
> deps_surf = $(MP_LIBRARY)
> deps_surface_dynamics = $(PYTHON) cysignals pplpy $(SAGE_SRC)/sage/rings/integer.pxd $(SAGE_SRC)/sage/ext/stdsage.pxd | $(PYTHON_TOOLCHAIN) $(SAGERUNTIME)
> deps_symengine = $(MP_LIBRARY) arb ecm flint mpc mpfr | cmake
> deps_symengine_py = symengine $(PYTHON) | cmake cython $(PYTHON_TOOLCHAIN) $(and $(filter-out no,$(SAGE_CHECK_symengine_py)), pytest)
> deps_symmetrica = xz
> deps_sympow = | pari
> deps_sympy = $(PYTHON) mpmath | $(PYTHON_TOOLCHAIN)
> deps_tachyon = libpng
> deps_tdlib =
> deps_terminado = $(PYTHON) | $(PYTHON_TOOLCHAIN) ptyprocess tornado
> deps_testpath = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_texlive =
> deps_texttable = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_thebe =
> deps_threejs =
> deps_tides = $(MP_LIBRARY) mpfr
> deps_toml = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_tomli = $(PYTHON) | pip flit_core
> deps_topcom = cddlib
> deps_tornado = $(PYTHON) certifi | $(PYTHON_TOOLCHAIN)
> deps_tox = $(PYTHON) packaging six filelock pluggy py toml virtualenv importlib_metadata | $(PYTHON_TOOLCHAIN)
> deps_traitlets = $(PYTHON) | $(PYTHON_TOOLCHAIN) ipython_genutils decorator six
> deps_typing_extensions = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_tzlocal = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_urllib3 = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_valgrind =
> deps_vcversioner = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_virtualenv = $(PYTHON) appdirs distlib filelock six importlib_metadata importlib_resources | $(PYTHON_TOOLCHAIN)
> deps_wcwidth = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_webencodings = $(PYTHON) | $(PYTHON_TOOLCHAIN)
> deps_wheel = $(PYTHON) setuptools
> deps_widgetsnbextension = $(PYTHON) | $(PYTHON_TOOLCHAIN) jupyter_core
> deps_xz =
> deps_zeromq =
> deps_zipp = $(PYTHON) vcversioner | $(PYTHON_TOOLCHAIN)
> deps_zlib =
> deps_zn_poly = $(MP_LIBRARY)'
> docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
> dvidir='${docdir}'
> exec_prefix='${prefix}'
> fooconverseg='/usr/local/bin/converseg'
> foodirectg='/usr/local/bin/directg'
> foogenbg='/usr/local/bin/genbg'
> foogeng='/usr/local/bin/geng'
> foogentourng='/usr/local/bin/gentourng'
> found_ar='yes'
> found_latex='yes'
> found_m4='yes'
> found_ranlib='yes'
> found_strip='yes'
> host='x86_64-apple-darwin21.3.0'
> host_alias=''
> host_cpu='x86_64'
> host_os='darwin21.3.0'
> host_vendor='apple'
> htmldir='${docdir}'
> includedir='${prefix}/include'
> infodir='${datarootdir}/info'
> install_sh='${SHELL} /Users/myuser/app/sage-9.5/config/install-sh'
> libdir='${exec_prefix}/lib'
> libexecdir='${exec_prefix}/libexec'
> localedir='${datarootdir}/locale'
> localstatedir='${prefix}/var'
> mandir='${datarootdir}/man'
> mkdir_p='$(MKDIR_P)'
> nauconverseg=''
> naudirectg=''
> naugenbg=''
> naugeng=''
> naugentourng=''
> ntl_includedir=''
> ntl_libdir=''
> oldincludedir='/usr/include'
> pdfdir='${docdir}'
> prefix='/Users/myuser/app/sage-9.5/local'
> program_transform_name='s,x,x,'
> psdir='${docdir}'
> runstatedir='${localstatedir}/run'
> sbindir='${exec_prefix}/sbin'
> sharedstatedir='${prefix}/com'
> sysconfdir='${prefix}/etc'
> target_alias=''
> trees_4ti2 = SAGE_LOCAL
> trees__bootstrap = SAGE_LOCAL
> trees__prereq = SAGE_LOCAL
> trees__recommended = SAGE_LOCAL
> trees_admcycles = SAGE_VENV
> trees_alabaster = SAGE_VENV
> trees_appdirs = SAGE_VENV
> trees_appnope = SAGE_VENV
> trees_arb = SAGE_LOCAL
> trees_argcomplete = SAGE_VENV
> trees_argon2_cffi = SAGE_VENV
> trees_attrs = SAGE_VENV
> trees_awali = SAGE_LOCAL
> trees_babel = SAGE_VENV
> trees_backcall = SAGE_VENV
> trees_barvinok = SAGE_LOCAL
> trees_beautifulsoup4 = SAGE_VENV
> trees_beniget = SAGE_VENV
> trees_benzene = SAGE_LOCAL
> trees_biopython = SAGE_VENV
> trees_bleach = SAGE_VENV
> trees_bliss = SAGE_LOCAL
> trees_boost_cropped = SAGE_LOCAL
> trees_brial = SAGE_LOCAL
> trees_buckygen = SAGE_LOCAL
> trees_bzip2 = SAGE_LOCAL
> trees_cbc = SAGE_LOCAL
> trees_ccache = SAGE_LOCAL
> trees_cddlib = SAGE_LOCAL
> trees_certifi = SAGE_VENV
> trees_cffi = SAGE_VENV
> trees_charset_normalizer = SAGE_VENV
> trees_cliquer = SAGE_LOCAL
> trees_cmake = SAGE_LOCAL
> trees_cocoalib = SAGE_LOCAL
> trees_combinatorial_designs = SAGE_LOCAL
> trees_configure = SAGE_LOCAL
> trees_conway_polynomials = SAGE_LOCAL
> trees_coxeter3 = SAGE_LOCAL
> trees_cppy = SAGE_VENV
> trees_cryptominisat = SAGE_LOCAL
> trees_csdp = SAGE_LOCAL
> trees_cunningham_tables = SAGE_LOCAL
> trees_curl = SAGE_LOCAL
> trees_cvxopt = SAGE_VENV
> trees_cycler = SAGE_VENV
> trees_cypari = SAGE_VENV
> trees_cysignals = SAGE_VENV
> trees_cython = SAGE_VENV
> trees_d3js = SAGE_LOCAL
> trees_database_cremona_ellcurve = SAGE_LOCAL
> trees_database_jones_numfield = SAGE_LOCAL
> trees_database_knotinfo = SAGE_VENV
> trees_database_kohel = SAGE_LOCAL
> trees_database_mutation_class = SAGE_LOCAL
> trees_database_odlyzko_zeta = SAGE_LOCAL
> trees_database_stein_watkins = SAGE_LOCAL
> trees_database_stein_watkins_mini = SAGE_LOCAL
> trees_database_symbolic_data = SAGE_LOCAL
> trees_dateutil = SAGE_VENV
> trees_debugpy = SAGE_VENV
> trees_decorator = SAGE_VENV
> trees_deformation = SAGE_LOCAL
> trees_defusedxml = SAGE_VENV
> trees_distlib = SAGE_VENV
> trees_docutils = SAGE_VENV
> trees_dot2tex = SAGE_VENV
> trees_e_antic = SAGE_LOCAL
> trees_ecl = SAGE_LOCAL
> trees_eclib = SAGE_LOCAL
> trees_ecm = SAGE_LOCAL
> trees_elliptic_curves = SAGE_LOCAL
> trees_entrypoints = SAGE_VENV
> trees_fflas_ffpack = SAGE_LOCAL
> trees_ffmpeg = SAGE_LOCAL
> trees_filelock = SAGE_VENV
> trees_flint = SAGE_LOCAL
> trees_flintqs = SAGE_LOCAL
> trees_flit_core = SAGE_VENV
> trees_fonttools = SAGE_VENV
> trees_fplll = SAGE_LOCAL
> trees_fpylll = SAGE_VENV
> trees_freetype = SAGE_LOCAL
> trees_fricas = SAGE_LOCAL
> trees_frobby = SAGE_LOCAL
> trees_gambit = SAGE_LOCAL
> trees_gap = SAGE_LOCAL
> trees_gap3 = SAGE_LOCAL
> trees_gap_jupyter = SAGE_VENV
> trees_gap_packages = SAGE_LOCAL
> trees_gast = SAGE_VENV
> trees_gc = SAGE_LOCAL
> trees_gcc = SAGE_LOCAL
> trees_gdb = SAGE_LOCAL
> trees_gengetopt = SAGE_LOCAL
> trees_gf2x = SAGE_LOCAL
> trees_gfan = SAGE_LOCAL
> trees_gfortran = SAGE_LOCAL
> trees_giac = SAGE_LOCAL
> trees_git = SAGE_LOCAL
> trees_givaro = SAGE_LOCAL
> trees_glpk = SAGE_LOCAL
> trees_glucose = SAGE_LOCAL
> trees_gmp = SAGE_LOCAL
> trees_gmpy2 = SAGE_VENV
> trees_gp2c = SAGE_LOCAL
> trees_graphs = SAGE_LOCAL
> trees_graphviz = SAGE_LOCAL
> trees_gsl = SAGE_LOCAL
> trees_html5lib = SAGE_VENV
> trees_iconv = SAGE_LOCAL
> trees_idna = SAGE_VENV
> trees_igraph = SAGE_LOCAL
> trees_imagemagick = SAGE_LOCAL
> trees_imagesize = SAGE_VENV
> trees_iml = SAGE_LOCAL
> trees_importlib_metadata = SAGE_VENV
> trees_importlib_resources = SAGE_VENV
> trees_info = SAGE_LOCAL
> trees_ipykernel = SAGE_VENV
> trees_ipympl = SAGE_VENV
> trees_ipython = SAGE_VENV
> trees_ipython_genutils = SAGE_VENV
> trees_ipywidgets = SAGE_VENV
> trees_isl = SAGE_LOCAL
> trees_jedi = SAGE_VENV
> trees_jinja2 = SAGE_VENV
> trees_jmol = SAGE_LOCAL
> trees_jsonschema = SAGE_VENV
> trees_jupymake = SAGE_VENV
> trees_jupyter_client = SAGE_VENV
> trees_jupyter_core = SAGE_VENV
> trees_jupyter_jsmol = SAGE_VENV
> trees_jupyter_packaging = SAGE_VENV
> trees_jupyterlab = SAGE_VENV
> trees_jupyterlab_pygments = SAGE_VENV
> trees_jupyterlab_widgets = SAGE_LOCAL
> trees_kenzo = SAGE_LOCAL
> trees_kiwisolver = SAGE_VENV
> trees_latte_int = SAGE_LOCAL
> trees_lcalc = SAGE_LOCAL
> trees_libatomic_ops = SAGE_LOCAL
> trees_libbraiding = SAGE_LOCAL
> trees_libffi = SAGE_LOCAL
> trees_libgd = SAGE_LOCAL
> trees_libgraphviz = SAGE_LOCAL
> trees_libhomfly = SAGE_LOCAL
> trees_liblzma = SAGE_LOCAL
> trees_libnauty = SAGE_LOCAL
> trees_libogg = SAGE_LOCAL
> trees_libpng = SAGE_LOCAL
> trees_libsemigroups = SAGE_LOCAL
> trees_libtheora = SAGE_LOCAL
> trees_libxml2 = SAGE_LOCAL
> trees_lidia = SAGE_LOCAL
> trees_lie = SAGE_LOCAL
> trees_linbox = SAGE_LOCAL
> trees_llvm = SAGE_LOCAL
> trees_lrcalc = SAGE_LOCAL
> trees_lrslib = SAGE_LOCAL
> trees_m4ri = SAGE_LOCAL
> trees_m4rie = SAGE_LOCAL
> trees_markupsafe = SAGE_VENV
> trees_mathics = SAGE_VENV
> trees_mathics_scanner = SAGE_VENV
> trees_mathjax = SAGE_LOCAL
> trees_matplotlib = SAGE_VENV
> trees_matplotlib_inline = SAGE_VENV
> trees_maxima = SAGE_LOCAL
> trees_mcqd = SAGE_LOCAL
> trees_meataxe = SAGE_LOCAL
> trees_memory_allocator = SAGE_VENV
> trees_mistune = SAGE_VENV
> trees_modular_decomposition = SAGE_LOCAL
> trees_mpc = SAGE_LOCAL
> trees_mpfi = SAGE_LOCAL
> trees_mpfr = SAGE_LOCAL
> trees_mpfrcx = SAGE_LOCAL
> trees_mpmath = SAGE_VENV
> trees_nauty = SAGE_LOCAL
> trees_nbclient = SAGE_VENV
> trees_nbconvert = SAGE_VENV
> trees_nbformat = SAGE_VENV
> trees_ncurses = SAGE_LOCAL
> trees_nest_asyncio = SAGE_VENV
> trees_networkx = SAGE_VENV
> trees_nibabel = SAGE_VENV
> trees_ninja_build = SAGE_LOCAL
> trees_nodeenv = SAGE_VENV
> trees_nodejs = SAGE_LOCAL
> trees_normaliz = SAGE_LOCAL
> trees_notebook = SAGE_VENV
> trees_notedown = SAGE_VENV
> trees_ntl = SAGE_LOCAL
> trees_numpy = SAGE_VENV
> trees_openblas = SAGE_LOCAL
> trees_openssl = SAGE_LOCAL
> trees_ore_algebra = SAGE_VENV
> trees_p_group_cohomology = SAGE_VENV
> trees_packaging = SAGE_VENV
> trees_palettable = SAGE_VENV
> trees_palp = SAGE_LOCAL
> trees_pandoc = SAGE_LOCAL
> trees_pandoc_attributes = SAGE_VENV
> trees_pandocfilters = SAGE_VENV
> trees_pari = SAGE_LOCAL
> trees_pari_elldata = SAGE_LOCAL
> trees_pari_galdata = SAGE_LOCAL
> trees_pari_galpol = SAGE_LOCAL
> trees_pari_nftables = SAGE_LOCAL
> trees_pari_seadata = SAGE_LOCAL
> trees_pari_seadata_small = SAGE_LOCAL
> trees_parso = SAGE_VENV
> trees_patch = SAGE_LOCAL
> trees_pcre = SAGE_LOCAL
> trees_pdf2svg = SAGE_LOCAL
> trees_perl_cpan_polymake_prereq = SAGE_LOCAL
> trees_perl_mongodb = SAGE_LOCAL
> trees_perl_term_readline_gnu = SAGE_LOCAL
> trees_pexpect = SAGE_VENV
> trees_pickleshare = SAGE_VENV
> trees_pillow = SAGE_VENV
> trees_pint = SAGE_VENV
> trees_pip = SAGE_VENV
> trees_pkgconf = SAGE_LOCAL
> trees_pkgconfig = SAGE_VENV
> trees_planarity = SAGE_LOCAL
> trees_plantri = SAGE_LOCAL
> trees_pluggy = SAGE_VENV
> trees_ply = SAGE_VENV
> trees_polylib = SAGE_LOCAL
> trees_polymake = SAGE_LOCAL
> trees_polytopes_db = SAGE_LOCAL
> trees_polytopes_db_4d = SAGE_LOCAL
> trees_ppl = SAGE_LOCAL
> trees_pplpy = SAGE_VENV
> trees_pplpy_doc = SAGE_DOCS
> trees_primecount = SAGE_LOCAL
> trees_primecountpy = SAGE_VENV
> trees_primesieve = SAGE_LOCAL
> trees_prometheus_client = SAGE_VENV
> trees_prompt_toolkit = SAGE_VENV
> trees_ptyprocess = SAGE_VENV
> trees_py = SAGE_VENV
> trees_pybind11 = SAGE_VENV
> trees_pybtex = SAGE_VENV
> trees_pycosat = SAGE_VENV
> trees_pycparser = SAGE_VENV
> trees_pycryptosat = SAGE_VENV
> trees_pycygwin = SAGE_VENV
> trees_pyflakes = SAGE_VENV
> trees_pygments = SAGE_VENV
> trees_pygraphviz = SAGE_VENV
> trees_pynormaliz = SAGE_VENV
> trees_pyparsing = SAGE_VENV
> trees_pyrsistent = SAGE_VENV
> trees_pysingular = SAGE_VENV
> trees_pytest = SAGE_VENV
> trees_python3 = SAGE_VENV
> trees_python_igraph = SAGE_VENV
> trees_pythran = SAGE_VENV
> trees_pytz = SAGE_VENV
> trees_pyx = SAGE_VENV
> trees_pyzmq = SAGE_VENV
> trees_qepcad = SAGE_LOCAL
> trees_qhull = SAGE_LOCAL
> trees_r = SAGE_LOCAL
> trees_r_jupyter = SAGE_LOCAL
> trees_ratpoints = SAGE_LOCAL
> trees_readline = SAGE_LOCAL
> trees_requests = SAGE_VENV
> trees_rpy2 = SAGE_VENV
> trees_rst2ipynb = SAGE_VENV
> trees_rubiks = SAGE_LOCAL
> trees_rw = SAGE_LOCAL
> trees_saclib = SAGE_LOCAL
> trees_sage_conf = SAGE_VENV
> trees_sage_docbuild = SAGE_VENV
> trees_sage_flatsurf = SAGE_VENV
> trees_sage_numerical_backends_coin = SAGE_VENV
> trees_sage_numerical_backends_cplex = SAGE_VENV
> trees_sage_numerical_backends_gurobi = SAGE_VENV
> trees_sage_setup = SAGE_VENV
> trees_sage_sws2rst = SAGE_VENV
> trees_sagelib = SAGE_VENV
> trees_sagemath_doc_html = SAGE_DOCS
> trees_sagemath_doc_pdf = SAGE_DOCS
> trees_sagenb_export = SAGE_VENV
> trees_sagetex = SAGE_VENV
> trees_scipoptsuite = SAGE_LOCAL
> trees_scipy = SAGE_VENV
> trees_send2trash = SAGE_VENV
> trees_setuptools = SAGE_VENV
> trees_setuptools_scm = SAGE_VENV
> trees_setuptools_scm_git_archive = SAGE_VENV
> trees_setuptools_wheel = SAGE_VENV
> trees_simplegeneric = SAGE_VENV
> trees_singular = SAGE_LOCAL
> trees_singular_jupyter = SAGE_VENV
> trees_sip = SAGE_LOCAL
> trees_sirocco = SAGE_LOCAL
> trees_six = SAGE_VENV
> trees_slabbe = SAGE_VENV
> trees_snappy = SAGE_VENV
> trees_snowballstemmer = SAGE_VENV
> trees_speaklater = SAGE_VENV
> trees_sphinx = SAGE_VENV
> trees_sphinxcontrib_applehelp = SAGE_VENV
> trees_sphinxcontrib_devhelp = SAGE_VENV
> trees_sphinxcontrib_htmlhelp = SAGE_VENV
> trees_sphinxcontrib_jsmath = SAGE_VENV
> trees_sphinxcontrib_qthelp = SAGE_VENV
> trees_sphinxcontrib_serializinghtml = SAGE_VENV
> trees_sphinxcontrib_websupport = SAGE_VENV
> trees_sqlalchemy = SAGE_VENV
> trees_sqlite = SAGE_LOCAL
> trees_suitesparse = SAGE_LOCAL
> trees_surf = SAGE_LOCAL
> trees_surface_dynamics = SAGE_VENV
> trees_symengine = SAGE_LOCAL
> trees_symengine_py = SAGE_VENV
> trees_symmetrica = SAGE_LOCAL
> trees_sympow = SAGE_LOCAL
> trees_sympy = SAGE_VENV
> trees_tachyon = SAGE_LOCAL
> trees_tdlib = SAGE_LOCAL
> trees_terminado = SAGE_VENV
> trees_testpath = SAGE_VENV
> trees_texlive = SAGE_LOCAL
> trees_texttable = SAGE_VENV
> trees_thebe = SAGE_LOCAL
> trees_threejs = SAGE_LOCAL
> trees_tides = SAGE_LOCAL
> trees_toml = SAGE_VENV
> trees_tomli = SAGE_VENV
> trees_topcom = SAGE_LOCAL
> trees_tornado = SAGE_VENV
> trees_tox = SAGE_VENV
> trees_traitlets = SAGE_VENV
> trees_typing_extensions = SAGE_VENV
> trees_tzlocal = SAGE_VENV
> trees_urllib3 = SAGE_VENV
> trees_valgrind = SAGE_LOCAL
> trees_vcversioner = SAGE_VENV
> trees_virtualenv = SAGE_VENV
> trees_wcwidth = SAGE_VENV
> trees_webencodings = SAGE_VENV
> trees_wheel = SAGE_VENV
> trees_widgetsnbextension = SAGE_VENV
> trees_xz = SAGE_LOCAL
> trees_zeromq = SAGE_LOCAL
> trees_zipp = SAGE_VENV
> trees_zlib = SAGE_LOCAL
> trees_zn_poly = SAGE_LOCAL'
> vers_4ti2 = 1.6.7.p0
> vers__bootstrap = none
> vers__prereq = none
> vers__recommended = none
> vers_admcycles = none
> vers_alabaster = 0.7.12
> vers_appdirs = 1.4.4
> vers_appnope = 0.1.2
> vers_arb = 2.19.0.p0
> vers_argcomplete = 1.12.3
> vers_argon2_cffi = 20.1.0
> vers_attrs = 21.2.0
> vers_awali = 1.0.2-190218
> vers_babel = 2.9.1
> vers_backcall = 0.2.0
> vers_barvinok = 0.41.1
> vers_beautifulsoup4 = none
> vers_beniget = 0.4.1
> vers_benzene = 20130630
> vers_biopython = none
> vers_bleach = 4.1.0
> vers_bliss = 0.73+debian-1+sage-2016-08-02.p0
> vers_boost_cropped = 1.66.0.p0
> vers_brial = 1.2.8
> vers_buckygen = 1.1
> vers_bzip2 = 1.0.6-20150304.p0
> vers_cbc = 2.9.4.p0
> vers_ccache = 3.3.4
> vers_cddlib = 0.94m
> vers_certifi = 2021.10.8
> vers_cffi = 1.15.0
> vers_charset_normalizer = 2.0.4
> vers_cliquer = 1.22
> vers_cmake = 3.21.0
> vers_cocoalib = 0.99564
> vers_combinatorial_designs = 20140630.p0
> vers_configure = 2e5d421a71304586f059863c84e61e5d0de00be9
> vers_conway_polynomials = 0.5
> vers_coxeter3 = 8ac9c71723c8ca57a836d6381aed125261e44e9e.p0
> vers_cppy = 1.1.0
> vers_cryptominisat = 5.6.8
> vers_csdp = 6.2.p1
> vers_cunningham_tables = 1.0
> vers_curl = 7.62.0.p0
> vers_cvxopt = 1.2.7
> vers_cycler = 0.11.0
> vers_cypari = 2.1.2
> vers_cysignals = 1.11.2
> vers_cython = 0.29.24
> vers_d3js = 3.4.8
> vers_database_cremona_ellcurve = 20190911
> vers_database_jones_numfield = 4
> vers_database_knotinfo = 2021.10.1
> vers_database_kohel = 20160724
> vers_database_mutation_class = 1.0
> vers_database_odlyzko_zeta = 20061209
> vers_database_stein_watkins = 20110713
> vers_database_stein_watkins_mini = 20070827
> vers_database_symbolic_data = 20070206
> vers_dateutil = 2.8.2
> vers_debugpy = 1.4.1
> vers_decorator = 4.4.2
> vers_deformation = 20210503
> vers_defusedxml = 0.6.0
> vers_distlib = 0.3.3
> vers_docutils = 0.17.1
> vers_dot2tex = 2.11.3.p0
> vers_e_antic = 0.1.9
> vers_ecl = 21.2.1
> vers_eclib = 20210625
> vers_ecm = 7.0.4.p2
> vers_elliptic_curves = 0.8.1
> vers_entrypoints = 0.3
> vers_fflas_ffpack = 2.4.3.p0
> vers_ffmpeg = none
> vers_filelock = 3.0.12
> vers_flint = 2.7.1.p0
> vers_flintqs = 1.0.p0
> vers_flit_core = 3.4.0
> vers_fonttools = 4.28.4
> vers_fplll = 5.4.1
> vers_fpylll = 0.5.6
> vers_freetype = 2.10.4
> vers_fricas = 1.3.7.p1
> vers_frobby = 0.9.0.p2
> vers_gambit = 15.1.1.p0
> vers_gap = 4.11.1
> vers_gap3 = 04jul17
> vers_gap_jupyter = 0.9
> vers_gap_packages = 4.11.1
> vers_gast = 0.5.2
> vers_gc = 8.0.4
> vers_gcc = 10.3.0
> vers_gdb = 8.2
> vers_gengetopt = 2.23
> vers_gf2x = 1.3.0
> vers_gfan = 0.6.2.p1
> vers_gfortran = 10.3.0
> vers_giac = 1.6.0.47p3
> vers_git = none
> vers_givaro = 4.1.1
> vers_glpk = 5.0.p0
> vers_glucose = 4.1
> vers_gmp = 6.2.1
> vers_gmpy2 = 2.1.0rc1
> vers_gp2c = 0.0.10.p0
> vers_graphs = 20210214.p0
> vers_graphviz = none
> vers_gsl = 2.7
> vers_html5lib = 1.1
> vers_iconv = 1.15
> vers_idna = 3.2
> vers_igraph = 0.8.3
> vers_imagemagick = none
> vers_imagesize = 1.2.0
> vers_iml = 1.0.4p2.p2
> vers_importlib_metadata = 4.8.2
> vers_importlib_resources = 5.2.2
> vers_info = 6.8
> vers_ipykernel = 6.6.0
> vers_ipympl = 0.7.0
> vers_ipython = 7.29.0
> vers_ipython_genutils = 0.2.0
> vers_ipywidgets = 7.6.5
> vers_isl = 0.20
> vers_jedi = 0.18.1
> vers_jinja2 = 2.11.2
> vers_jmol = 14.29.52
> vers_jsonschema = 3.2.0
> vers_jupymake = 0.9
> vers_jupyter_client = 7.1.0
> vers_jupyter_core = 4.9.1
> vers_jupyter_jsmol = 0.2.4
> vers_jupyter_packaging = 0.7.12
> vers_jupyterlab = none
> vers_jupyterlab_pygments = 0.1.2
> vers_jupyterlab_widgets = 2.0
> vers_kenzo = 1.1.10
> vers_kiwisolver = 1.3.2
> vers_latte_int = 1.7.6
> vers_lcalc = 2.0.5
> vers_libatomic_ops = 7.6.10
> vers_libbraiding = 1.1
> vers_libffi = 3.2.1
> vers_libgd = 2.3.2
> vers_libgraphviz = none
> vers_libhomfly = 1.02r6
> vers_liblzma = 5.2.5
> vers_libnauty = none
> vers_libogg = 1.3.1.p0
> vers_libpng = 1.6.29.p1
> vers_libsemigroups = 1.1.0
> vers_libtheora = 1.1.1
> vers_libxml2 = none
> vers_lidia = 2.3.0+latte-patches-2019-05-02
> vers_lie = 2.2.2
> vers_linbox = 1.6.3.p1
> vers_llvm = none
> vers_lrcalc = 1.2.p1
> vers_lrslib = 071b+autotools-2021-07-13
> vers_m4ri = 20200115
> vers_m4rie = 20200115
> vers_markupsafe = 1.1.1
> vers_mathics = 4.0.0
> vers_mathics_scanner = 1.2.4
> vers_mathjax = 2.7.4.p0
> vers_matplotlib = 3.5.1
> vers_matplotlib_inline = 0.1.2
> vers_maxima = 5.45.0.p0
> vers_mcqd = 1.0.p0
> vers_meataxe = 1.0.1
> vers_memory_allocator = 0.1.1
> vers_mistune = 0.8.4
> vers_modular_decomposition = 20100607
> vers_mpc = 1.1.0
> vers_mpfi = 1.5.2
> vers_mpfr = 4.0.1.p0
> vers_mpfrcx = 0.5
> vers_mpmath = 1.2.1
> vers_nauty = 27r1.p1
> vers_nbclient = 0.5.9
> vers_nbconvert = 6.1.0
> vers_nbformat = 5.1.3
> vers_ncurses = 6.0.p0
> vers_nest_asyncio = 1.5.1
> vers_networkx = 2.6.3
> vers_nibabel = none
> vers_ninja_build = 1.8.2
> vers_nodeenv = none
> vers_nodejs = 12.18.3
> vers_normaliz = 3.8.10
> vers_notebook = 6.4.6
> vers_notedown = 1.5.1
> vers_ntl = 11.4.3
> vers_numpy = 1.21.4
> vers_openblas = 0.3.18
> vers_openssl = 3.0.1
> vers_ore_algebra = none
> vers_p_group_cohomology = 3.3.2
> vers_packaging = 21.0
> vers_palettable = 3.3.0
> vers_palp = 2.11
> vers_pandoc = none
> vers_pandoc_attributes = 8bc82f6d
> vers_pandocfilters = 1.4.3
> vers_pari = 2.13.3
> vers_pari_elldata = 20161017
> vers_pari_galdata = 20080411.p0
> vers_pari_galpol = 20180625
> vers_pari_nftables = 20080929
> vers_pari_seadata = 20090618
> vers_pari_seadata_small = 20090618.p0
> vers_parso = 0.8.2
> vers_patch = 2.7.5
> vers_pcre = 8.40.p2
> vers_pdf2svg = none
> vers_perl_cpan_polymake_prereq = none
> vers_perl_mongodb = none
> vers_perl_term_readline_gnu = 1.35
> vers_pexpect = 4.8.0
> vers_pickleshare = 0.7.5
> vers_pillow = 8.4.0
> vers_pint = 0.17
> vers_pip = 21.3.1
> vers_pkgconf = 0.9.7.p2
> vers_pkgconfig = 1.5.5
> vers_planarity = 3.0.1.0
> vers_plantri = 4.5
> vers_pluggy = 1.0.0
> vers_ply = 3.11
> vers_polylib = 5.22.5
> vers_polymake = 4.5
> vers_polytopes_db = 20170220.p0
> vers_polytopes_db_4d = 1.0
> vers_ppl = 1.2.p1
> vers_pplpy = 0.8.6
> vers_pplpy_doc = 0.8.6
> vers_primecount = 7.1
> vers_primecountpy = 0.1.0
> vers_primesieve = 7.6
> vers_prometheus_client = 0.11.0
> vers_prompt_toolkit = 3.0.22
> vers_ptyprocess = 0.5.1.p0
> vers_py = 1.10.0
> vers_pybind11 = 2.8.1
> vers_pybtex = none
> vers_pycosat = 0.6.3
> vers_pycparser = 2.20
> vers_pycryptosat = 5.6.8
> vers_pycygwin = 0.1
> vers_pyflakes = none
> vers_pygments = 2.10.0
> vers_pygraphviz = none
> vers_pynormaliz = 2.14
> vers_pyparsing = 3.0.6
> vers_pyrsistent = 0.18.0
> vers_pysingular = 0.9.7
> vers_pytest = none
> vers_python3 = 3.9.9
> vers_python_igraph = 0.8.3
> vers_pythran = 0.10.0
> vers_pytz = 2021.3
> vers_pyx = none
> vers_pyzmq = 22.3.0
> vers_qepcad = B.1.72
> vers_qhull = 2020-src-8.0.2
> vers_r = 3.6.3
> vers_r_jupyter = none
> vers_ratpoints = 2.1.3.p5
> vers_readline = 8.0
> vers_requests = 2.26.0
> vers_rpy2 = 3.3.6
> vers_rst2ipynb = 0.2.3
> vers_rubiks = 20070912.p21
> vers_rw = 0.9
> vers_saclib = 2.2.7
> vers_sage_conf = 9.5
> vers_sage_docbuild = 9.5
> vers_sage_flatsurf = none
> vers_sage_numerical_backends_coin = 9.0b12
> vers_sage_numerical_backends_cplex = 9.0b12
> vers_sage_numerical_backends_gurobi = 9.3.1
> vers_sage_setup = 9.5
> vers_sage_sws2rst = 9.5
> vers_sagelib = 9.5
> vers_sagemath_doc_html = none
> vers_sagemath_doc_pdf = none
> vers_sagenb_export = 3.3
> vers_sagetex = 3.5
> vers_scipoptsuite = 5.0.1
> vers_scipy = 1.7.2
> vers_send2trash = 1.8.0
> vers_setuptools = 59.2.0
> vers_setuptools_scm = 6.3.2
> vers_setuptools_scm_git_archive = 1.1
> vers_setuptools_wheel = 59.2.0
> vers_simplegeneric = 0.8.1.p0
> vers_singular = 4.2.1p3
> vers_singular_jupyter = 0.9.7
> vers_sip = 4.18
> vers_sirocco = 2.1.0
> vers_six = 1.16.0
> vers_slabbe = none
> vers_snappy = none
> vers_snowballstemmer = 2.1.0
> vers_speaklater = 1.3.p0
> vers_sphinx = 4.2.0
> vers_sphinxcontrib_applehelp = 1.0.2
> vers_sphinxcontrib_devhelp = 1.0.2
> vers_sphinxcontrib_htmlhelp = 2.0.0
> vers_sphinxcontrib_jsmath = 1.0.1
> vers_sphinxcontrib_qthelp = 1.0.3
> vers_sphinxcontrib_serializinghtml = 1.1.5
> vers_sphinxcontrib_websupport = 1.2.1
> vers_sqlalchemy = none
> vers_sqlite = 3.36.0
> vers_suitesparse = 5.10.1
> vers_surf = 1.0.6-gcc6
> vers_surface_dynamics = none
> vers_symengine = 0.8.1
> vers_symengine_py = 0.8.1.p0
> vers_symmetrica = 3.0.1
> vers_sympow = 2.023.6
> vers_sympy = 1.9
> vers_tachyon = 0.98.9.p7
> vers_tdlib = 0.3.1.p0
> vers_terminado = 0.12.1
> vers_testpath = 0.5.0
> vers_texlive = none
> vers_texttable = 1.6.3
> vers_thebe = 9624e0a0.p0
> vers_threejs = r122.p0
> vers_tides = 2.0.p0
> vers_toml = 0.10.2
> vers_tomli = 1.2.1
> vers_topcom = 0.17.7
> vers_tornado = 6.1
> vers_tox = 3.24.3
> vers_traitlets = 5.1.1
> vers_typing_extensions = 3.10.0.0
> vers_tzlocal = 2.1
> vers_urllib3 = 1.26.6
> vers_valgrind = 3.14.0
> vers_vcversioner = 2.16.0.0.p0
> vers_virtualenv = 20.7.2
> vers_wcwidth = 0.2.5
> vers_webencodings = 0.5.1
> vers_wheel = 0.37.0
> vers_widgetsnbextension = 3.5.2
> vers_xz = 5.2.5
> vers_zeromq = 4.3.4
> vers_zipp = 3.5.0
> vers_zlib = 1.2.11.p0
> vers_zn_poly = 0.9.2'
>
> ## ----------- ##
> ## confdefs.h. ##
> ## ----------- ##
>
> /* confdefs.h */
> #define PACKAGE_NAME "Sage"
> #define PACKAGE_TARNAME "sage"
> #define PACKAGE_VERSION "9.5"
> #define PACKAGE_STRING "Sage 9.5"
> #define PACKAGE_BUGREPORT "sage-...@googlegroups.com"
> #define PACKAGE_URL ""
> #define PACKAGE "sage"
> #define VERSION "9.5"
> #define HAVE_STDIO_H 1
> #define HAVE_STDLIB_H 1
> #define HAVE_STRING_H 1
> #define HAVE_INTTYPES_H 1
> #define HAVE_STDINT_H 1
> #define HAVE_STRINGS_H 1
> #define HAVE_SYS_STAT_H 1
> #define HAVE_SYS_TYPES_H 1
> #define HAVE_UNISTD_H 1
> #define STDC_HEADERS 1
> #define HAVE_LIBM 1
> #define HAVE_CXX11 1
> #define HAVE_GMP_H 1
> #define ABSOLUTE_GMP_H "///usr/local/include/gmp.h"
> #define HAVE_NTL_ZZ_H 1
> #define ABSOLUTE_NTL_ZZ_H "///usr/local/opt/ntl/include/NTL/ZZ.h"
> #define HAVE_LIBARB 1
> #define HAVE_BOOST /**/
> #define HAVE_LIBCURL 1
> #define LIBCURL_FEATURE_ASYNCHDNS 1
> #define LIBCURL_FEATURE_GSS_API 1
> #define LIBCURL_FEATURE_HTTPS_PROXY 1
> #define LIBCURL_FEATURE_IPV6 1
> #define LIBCURL_FEATURE_KERBEROS 1
> #define LIBCURL_FEATURE_LARGEFILE 1
> #define LIBCURL_FEATURE_MULTISSL 1
> #define LIBCURL_FEATURE_NTLM 1
> #define LIBCURL_FEATURE_NTLM_WB 1
> #define LIBCURL_FEATURE_SPNEGO 1
> #define LIBCURL_FEATURE_SSL 1
> #define LIBCURL_FEATURE_UNIXSOCKETS 1
> #define LIBCURL_FEATURE_ALT_SVC 1
> #define LIBCURL_FEATURE_LIBZ 1
> #define LIBCURL_PROTOCOL_DICT 1
> #define LIBCURL_PROTOCOL_FILE 1
> #define LIBCURL_PROTOCOL_FTP 1
> #define LIBCURL_PROTOCOL_FTPS 1
> #define LIBCURL_PROTOCOL_GOPHER 1
> #define LIBCURL_PROTOCOL_GOPHERS 1
> #define LIBCURL_PROTOCOL_HTTP 1
> #define LIBCURL_PROTOCOL_HTTPS 1
> #define LIBCURL_PROTOCOL_IMAP 1
> #define LIBCURL_PROTOCOL_IMAPS 1
> #define LIBCURL_PROTOCOL_LDAP 1
> #define LIBCURL_PROTOCOL_LDAPS 1
> #define LIBCURL_PROTOCOL_MQTT 1
> #define LIBCURL_PROTOCOL_POP3 1
> #define LIBCURL_PROTOCOL_POP3S 1
> #define LIBCURL_PROTOCOL_RTSP 1
> #define LIBCURL_PROTOCOL_SMB 1
> #define LIBCURL_PROTOCOL_SMBS 1
> #define LIBCURL_PROTOCOL_SMTP 1
> #define LIBCURL_PROTOCOL_SMTPS 1
> #define LIBCURL_PROTOCOL_TELNET 1
> #define LIBCURL_PROTOCOL_TFTP 1
> #define HAVE_NCURSES_H 1
> #define HAVE_ICONV 1
> #define ICONV_CONST
> #define HAVE_SUITESPARSE_CONFIG_H 1
> #define HAVE_AMD_H 1
> #define HAVE_ZMQ /**/
>
> configure: exit 0

signature.asc
Reply all
Reply to author
Forward
0 new messages