GNU Readline 与 FreeBSD、OpenBSD 上的默认 Python 链接?
在 FreeBSD 或 OpenBSD 上获得未链接到 GNU Readline 的 Python 有多容易? GNU Readline 是这些系统上类似 Python readline 的默认支持吗?如果是这样,消除这种依赖性是否容易?
How easy is it to get a Python that isn't linked to GNU Readline on FreeBSD or OpenBSD? Is GNU Readline the default for Python readline-like support on these systems? If so, is it easy to remove this dependency?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 FreeBSD 上,libreadline 是基本系统的一部分(除非您在没有 GNU 的情况下重建了它)。 Python 动态加载它;
没有配置选项可以将其从 Python 构建中删除。
On FreeBSD, libreadline is part of the base system (unless you've rebuilt that without GNU). Python loads that dynamically;
There is no configure option to remove it from the Python build.