Radek
Radek

Reputation: 11121

configure, make, git on windows = how to compile&install on windows

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

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

Upvotes: 1

Views: 4813

Answers (1)

user257111
user257111

Reputation:

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.

Upvotes: 5

Related Questions