在 Windows 上配置、制作、git = 如何在 Windows 上编译和安装
我想在 windows 上ffmpeg-ruby 工作。如果可能的话。但我不知道如何
- configure
make
./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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您以前从未使用过 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.