来自“make”的文件是什么?我实际上需要运行 git 的 git 吗?

发布于 2024-09-09 03:26:37 字数 86 浏览 3 评论 0原文

我正在尝试“移植”git,因此我想将所需的可执行文件从 git 的 make 进程发送到我的托管 Web 服务器。我可以这样做吗?您认为可执行文件可以工作吗?

I'm trying to "portablize" git, so I want to send the required executables from the make process of git to my hosted web server. Can I do that? Do you think the executables will work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟沫凡尘 2024-09-16 03:26:37

我这样做的方法是:

然后我只能复制 < code>/home/myuser/git 和 /home/myuser/usr/local (以及 $prefix/libexec/git-core 作为 Jakub 在评论中提到)任何其他类似的服务器,知道它将独立于任何现有的系统库工作。

The way I do it is to:

  • get all Git dependencies (as listed in this Solaris package site, but this works for any Unix platform)
  • compile those dependencies with --prefix=/home/myuser and install them in the usr/local/lib of my home directory
  • then compile Git (still avoiding any reference to a system path like /usr/local/lib, but only using the lib and include within my homedir)
  • and install Git in the /home/myuser/git directory

I can then copy only /home/myuser/git and /home/myuser/usr/local (and $prefix/libexec/git-core as Jakub mentions in the comments) to any other similar server, knowing it will work in isolation from any existing system libraries.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文