在 Windows 上配置、制作、git = 如何在 Windows 上编译和安装

发布于 2024-08-22 00:05:59 字数 738 浏览 5 评论 0原文

我想在 windows 上ffmpeg-ruby 工作。如果可能的话。但我不知道如何

  • configure
  • ma​​ke

    ./configure --prefix=/opt/ffmpeg --enable-pthreads --enable-shared --enable-gpl

    制作

    sudo make install

  • git 在 Windows 上?

    git 克隆 git://github.com/gwik/ffmpeg-ruby.git

    cd ffmpeg-ruby

    gem 构建 ./ffmpeg-ruby.gemspec

    sudo gem install ./ffmpeg-ruby-0.1.0.gem -- --with-ffmpeg-dir=/opt/ffmpeg

-- 抱歉格式错误,无法使其看起来更好

I want to make work ffmpeg-ruby on windows. If possible. But I do not know how to do

  • configure
  • make

    ./configure --prefix=/opt/ffmpeg --enable-pthreads --enable-shared --enable-gpl

    make

    sudo make install

  • git on windows?

    git clone git://github.com/gwik/ffmpeg-ruby.git

    cd ffmpeg-ruby

    gem build ./ffmpeg-ruby.gemspec

    sudo gem install ./ffmpeg-ruby-0.1.0.gem -- --with-ffmpeg-dir=/opt/ffmpeg

-- sorry for the formatting, cannot make it look better

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

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

发布评论

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

评论(1

谁许谁一生繁华 2024-08-29 00:05:59

如果您以前从未使用过 git,您可以使用 TortoiseGit 作为 GUI 界面。这需要您按照 Ignacio 的链接安装 msysgit。获取来源可能会更好。

然后,您可以从安装了 Msys 和 MinGW 的 Windows 启动 msys 命令行。导航到您的文件夹(您可能想要挂载它们 - 请参阅 msys 的 etc 目录中的 fstab 文件)。在那里你可以运行 ./configure 并 make。

make install 在 Windows 上毫无意义,并且 msys 中不存在 sudo,因此请跳过该步骤 - 您的二进制文件将在源代码文件夹中构建。

If you've never used git before, you can use TortoiseGit as a GUI interface. This requires you have msysgit installed as linked by Ignacio. Might be nicer to get the sources.

You then launch the msys command line from windows having installed both Msys and MinGW. Navigate to your folder (you may want to mount them - see the fstab file in the etc directory of msys). There you can run ./configure and make.

make install is pretty meaningless on windows and sudo doesn't exist in msys, so skip that step - your binaries will be build in the source code folder.

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