Version 4 (modified by 10 years ago) ( diff ) | ,
---|
Here are the steps I had to take to build WebKit on Windows 8.1 without Cygwin (Apple Win port)
- Install the following programs:
- Visual Studio. https://www.visualstudio.com/en-us/products/visual-studio-community-vs
- ActiveState Perl. 64-bit is fine. http://www.activestate.com/activeperl/downloads
- ActiveState Python. Make sure it's version 2.x instead of 3.x. 64-bit is fine. http://www.activestate.com/activepython/downloads Make sure you don't download it from python.org because we hardcode the executable name as "python2.7" and the python.org python doesn't include an executable with that name.
- Ruby. 64-bit is fine. http://rubyinstaller.org/
- Gperf. http://gnuwin32.sourceforge.net/packages/gperf.htm
- Bison. http://gnuwin32.sourceforge.net/packages/bison.htm
- GNU Make. http://gnuwin32.sourceforge.net/packages/make.htm
- Git. http://www.git-scm.com/download/win Note: Make sure you select the option "Use Git from the Windows Command Prompt." This is because it installs a sh.exe in your path, and if the location of that sh.exe has spaces in it, Make gets confused. When I installed this, I unchecked all the options.
- Make sure all the programs you just installed (except Visual Studio) are accessible through your $PATH. http://www.itechtics.com/customize-windows-environment-variables/ You may be required to reboot after modifying $PATH before new shells will see the updated variable.
- > git clone git://git.webkit.org/WebKit.git
- Download the WebKit Support Libraries to the root of your source tree. If the file is incorrectly named, rename it to WebKitSupportLibrary.zip. Do not extract its contents.
TODO: Finish this
Note:
See TracWiki
for help on using the wiki.