This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author chaselton
Recipients chaselton, ethan.furman, freakboy3742, r.david.murray, refi64
Date 2015-04-22.14:02:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429711340.22.0.172912405739.issue23496@psf.upfronthosting.co.za>
In-reply-to
Content
Still working at this; I can't get the readline module to work.  It is built successfully but importing it produces the following error:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: dlopen failed: could not load library "libreadline.so.6" needed by "readline.cpython-35m-arm-linux-gnueabi.so"; caused by cannot locate symbol "tgetnum" referenced by "libreadline.so.6"...

tgetnum is undefined in libreadline but defined in -libncurses and libtinfo. I've built and re-built readline (--with-curses and -without that option...linking -lncurses, then -lncurses and -ltinfo) in the KBOX environment. I've edited Modules/Setup and setup.py so as to specify the readline library plus a combination of others (-ncurses, -tinfo) to no avail.
History
Date User Action Args
2015-04-22 14:02:20chaseltonsetrecipients: + chaselton, r.david.murray, freakboy3742, ethan.furman, refi64
2015-04-22 14:02:20chaseltonsetmessageid: <1429711340.22.0.172912405739.issue23496@psf.upfronthosting.co.za>
2015-04-22 14:02:20chaseltonlinkissue23496 messages
2015-04-22 14:02:19chaseltoncreate