diff options
author | Jack Moffitt <jack@metajack.im> | 2016-11-02 21:11:43 -0600 |
---|---|---|
committer | Jack Moffitt <jack@metajack.im> | 2016-11-16 10:38:15 -0700 |
commit | 8e8519d03826042b453e54527aaf3e3646221fec (patch) | |
tree | 3413460d9915e289267e9e9b5552ce52a95f7cf0 /README.md | |
parent | 524ed827007dee1563aed25f3bc3d0edff77ea78 (diff) | |
download | servo-8e8519d03826042b453e54527aaf3e3646221fec.tar.gz servo-8e8519d03826042b453e54527aaf3e3646221fec.zip |
Fix test-wpt and test-css for Windows.
In addition to minor changes for Windows, this forces Windows Python to
be used for all Windows builds (instead of using Windows Python only for
pc-windows-msvc builds).
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/README.md b/README.md index 531f90607f2..eb4bce6fbad 100644 --- a/README.md +++ b/README.md @@ -135,16 +135,14 @@ pacman -U --noconfirm $GCC_URL-$GCC_EXT $GCC_URL-ada-$GCC_EXT \ easy_install-2.7 pip virtualenv ``` -Open a new MSYS shell window as Administrator and remove the Python binaries (they -are not compatible with our `mach` driver script yet, unfortunately): +Add the following line to the end of `.profile` in your home directory: -```sh -cd /mingw64/bin -mv python2.exe python2-mingw64.exe -mv python2.7.exe python2.7-mingw64.exe +``` +export PATH=/c/Python27:$PATH ``` -Now, open a MINGW64 (not MSYS!) shell window, and you should be able to build servo as usual! +Now, open a MINGW64 (not MSYS!) shell window, and you should be able to build +servo as usual! #### Cross-compilation for Android |