Following instructions on https://wiki.gimp.org/wiki/Hacking:Building/Windows on windows 10 pro, build 16299
-
Surfing to www.msys2.org
-
Downloading msys2-x86_64-20180531.exe by clicking link.
-
Checking the sha-256 checksum of the file so its 3b233de38cb0393b40617654409369e025b5e6262d3ad60dbd6be33b4eeb8e7b
-
Running the downloaded file
-
Installing on D:\msys64 (my harddrive), next, uncheck "Run MSYS 64bit now" and click finish
-
Editing msys2.ini by right clicking in explorer and edit with notepad++ so it will contain
MSYSTEM=MSYS HOME=/home/user USER=user
(there must be no extra line)
-
Adding to .bash_profile
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/mingw64/lib/pkgconfig:/mingw64/share/pkgconfig ACLOCAL_PATH=/mingw64/share/aclocal export PKG_CONFIG_PATH ACLOCAL_PATH
-
Running msys2.exe from explorer (the output from the console window will show that the home directory and profile files will be automatically created).
-
Updating the package database with
pacman -Syu --force
Getting the output "there is nothing to do" twice, once for core system upgrade and once for full system upgrade.
-
Installing the tools by pasting
pacman -S base-devel \ mingw-w64-x86_64-toolchain \ git \ mingw-w64-x86_64-gtk2 \ mingw-w64-x86_64-gtk3 \ mingw-w64-x86_64-json-glib \ mingw-w64-x86_64-json-c \ mingw-w64-x86_64-gexiv2 \ mingw-w64-x86_64-lcms2 \ mingw-w64-x86_64-glib-networking \ mingw-w64-x86_64-poppler \ mingw-w64-x86_64-gettext
pressing enter-enter-Y
-
Exiting msys by pressing Ctrl-D
-
Editing mingw64.ini, by right clicking in explorer and edit with notepad++ so it will contain
MSYSTEM=MINGW64 HOME=/home/user USER=user
(there must be no extra line)
-
Running Mingw64.exe from Explorer
-
Installing libmypaint, by typing
git clone https://github.com/mypaint/libmypaint.git cd libmypaint git checkout tags/v1.3.0 ./autogen.sh ./configure make make install cd ~
-
Installing mypaint-brushes, by typing
git clone https://github.com/Jehan/mypaint-brushes cd mypaint-brushes git checkout v1.3.x ./autogen.sh ./configure make make install cd ~
-
Installing babl, by typing
git clone https://git.gnome.org/browse/babl cd babl ./autogen.sh --disable-docs make make install cd ~
(make is giving me a lot of warnings, but no errors)
-
Installing gegl, by typing
git clone https://gitlab.gnome.org/GNOME/gegl.git/ cd gegl ./autogen.sh --enable-gtk-doc-html=no --disable-docs make make install cd ~
-
Building gimp, by typing
git clone https://gitlab.gnome.org/GNOME/gimp.git/ cd gimp git revert 8d7f13be186401c4d5c63e6e666b9105ac968dfe ./autogen.sh --disable-python --disable-gtk-doc make make install
Hey Anders, I finally got around to reading this after you updated it, as well as my IRC backlog. So, here are a few pointers I think will be helpful.
A bit of pacman primer:
pacman -Sy
downloads the repo databases and their sigs to/var/lib/pacman/sync
.pacman -Su
checks your current installed packages against those local databases, and offers to download/install updates. When this has to do a core system upgrade, which is the main msys2 runtime and stuff, it will ask you to close the window. You will then need to open another terminal and dopacman -Su
again, until it doesn't find any more updates.pacman -S <package> ...
installs/re-installs packages and their dependencies.--force
only in that instance, it basically downloads even if you already have the db or packages in question.man pacman
./var/cache/pacman/pkg
, you can save/relocate these if you ever want to do a clean reinstall without re-downloading them all.Your msys2 installation was definitely messed up somehow, probably by a broken download. In case there is anything else wrong, you could do
pacman -Qkq
to see if any files are missing. This will take a while.However, I think your problem is that you have both toolchains: I recommend having only mingw-gcc, and not gcc, as they may conflict (Kevin mentioned this on IRC).
pacman -R msys2-devel glib2-dev
will take care of this.You should use the mingw64 shell for building gimp etc., and msys shell for pacman or other msys2 maintenance.
If you read Building GIMP on Windows, you'll see it says to set your build environment; unless you put it in
.bash_profile
you'll need to do this every time you open a new shell. (I put mine in a pre-build script and run it only before Imake
etc.) This should be done between your steps 9 and 10.Unless you don't intend to install gimp or other things you built, you should set $PREFIX as above and pass
--prefix=$PREFIX
to ./autogen.sh (or ./configure in the case of*mypaint*
). Otherwisemake install
will install to /mingw64, which should be reserved for mingw's pacman/repo packages to minimize headaches.Finally, to get around the failing bug 795855 / https://github.com/Alexpux/MINGW-packages/issues/3584 glib2 version check, for now you can
cd gimp && git revert 8d7f13be186401c4d5c63e6e666b9105ac968dfe
I just built master from scratch last night on Windows 7 64-bit, in about an hour, so I know it works. :)