Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在构建 PyPy 后清理它?哪些部分是绝对关键的,哪些部分可以安全删除?
显然有必要删除所有与版本控制相关的文件和文件夹(.gitignore, .hg, .hgignore, .hgsubstate, .hgtags),但必须有更多目录可以轻松删除。
.gitignore
.hg
.hgignore
.hgsubstate
.hgtags
提示:http : //doc.pypy.org/ 上有所有目录的描述,它可能会有所帮助,但不幸的是我现在找不到它。
在 PyPy 团队中,我们使用以下脚本:
cd pypy/tool/release ./package.py ../../.. pypy-VERSION-PLATFORM
它将结果放在 /tmp/usession-YOURNAME/build/ 中。这是安装或重新分发二进制文件所需的所有内容的完整副本。