On Thu, 29 Oct 2020, Sebastian Andrzej Siewior wrote: > On 2020-10-29 11:33:57 [-0400], John Kacur wrote: > > > > It's a bit odd because the libraries are static. > > Isn't that quite an old version of glibc as well? > > It looks like Ubuntu 20.04 / Focal Fossa. The glibc version above is > when the symbol was first introduced. > > It builds on i386/Debian Sid, just tested. Noticed this however: > |~/rt-tests$ make > |Traceback (most recent call last): > | File "<string>", line 1, in <module> > |ModuleNotFoundError: No module named 'distutils.sysconfig' > |make: Nothing to be done for 'all'. > |~/rt-tests$ python3 -V > |Python 3.8.6 > > wouldn't it work to just keep "PYLIB ?=" and the caller passes what he > needs? > > > John > > Sebastian > Right, ?= in the makefile means if it's not already set, then set it to what comes next. You could just do make PYLIB="" in order to skip the python stuff. On my fedora box if you were to set it by hand it would be make PYLIB="/usr/lib/python3.9/site-packages" John