You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is based on idea that $ polymake-config --cflags contains only single spaces.
I don't know how that happened, but there are two spaces between -DPOLYMAKE_WITH_FLINT and -DPOLYMAKE_DEBUG=0 on my system :(
$ ipython
In [1]: import sh
In [2]: sh.polymake_config("--cflags").find(" " * 2)
Out[2]: 558
In
setup.py
the line 22is based on idea that
$ polymake-config --cflags
contains only single spaces.I don't know how that happened, but there are two spaces between
-DPOLYMAKE_WITH_FLINT
and-DPOLYMAKE_DEBUG=0
on my system :(That causes split(' ') to produce
That empty string breaks gcc.
I replaced all three split(' ') with split() and gcc is happy again.
The text was updated successfully, but these errors were encountered: