summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-05-17 16:11:56 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2019-05-17 16:16:10 +0200
commit060dbc6be9b6e392921a7250d23a2bb4ad97d4cb (patch)
tree1f24348af995c15aa0b033b588fb2a88dbcf34bc
parent6376c11c0f93e35a222d29d654651c1b4cf0c384 (diff)
downloadpygobject-060dbc6be9b6e392921a7250d23a2bb4ad97d4cb.tar.gz
docs: getting started: default to mingw64 for the MSYS2 instructions
The idea was to default to mingw32 because mingw64 builds had more bugs initially and if one wants to bundle things mingw32 makes it run on more machines. But, the gtk stack should be in good shape now with mingw64 and people tend to prefer 64bit builds (see #326 and #321) ignoring the docs, so lets just default to mingw64 instead.
-rw-r--r--docs/getting_started.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index 5e153f46..c171b788 100644
--- a/docs/getting_started.rst
+++ b/docs/getting_started.rst
@@ -43,9 +43,9 @@ libraries.
#) Go to http://www.msys2.org/ and download the x86_64 installer
#) Follow the instructions on the page for setting up the basic environment
-#) Run ``C:\msys64\mingw32.exe`` - a terminal window should pop up
+#) Run ``C:\msys64\mingw64.exe`` - a terminal window should pop up
#) Execute ``pacman -Suy``
-#) Execute ``pacman -S mingw-w64-i686-gtk3 mingw-w64-i686-python3-gobject``
+#) Execute ``pacman -S mingw-w64-x86_64-gtk3 mingw-w64-x86_64-python3 mingw-w64-x86_64-python3-gobject``
#) To test that GTK 3 is working you can run ``gtk3-demo``
#) Copy the ``hello.py`` script you created to ``C:\msys64\home\<username>``
#) In the mingw32 terminal execute ``python3 hello.py`` - a window should appear.