Difference between revisions of "Compiling Inkscape on Windows with MSYS2"
m (try again to fix linebreaks. damn.) |
(Explain simple script to install build dependencies https://gitlab.com/inkscape/inkscape/-/merge_requests/6573) |
||
Line 3: | Line 3: | ||
MSYS2 does not only offer a convenient build environment for compiling Inkscape but also provides all necessary build tools and dependencies making it extremely simple to get started with Inkscape development. | MSYS2 does not only offer a convenient build environment for compiling Inkscape but also provides all necessary build tools and dependencies making it extremely simple to get started with Inkscape development. | ||
== Installing | == Installing Build Dependencies Easily == | ||
Work in progress, see https://gitlab.com/inkscape/inkscape/-/merge_requests/6573 - Until 2024-12-19, please see below "Installing Build Dependencies manually". | |||
In the basic case, you can install all the needed tools with a one-click script. This is supported for Inkscape 1.5 or newer, running on standard 64bit Windows (not ARM). In other cases, please see below "Installing Build Dependencies Manually". | |||
# Get the buildtools folder from the Inkscape git repository. One way to do this is the following: | |||
#* Download the following ZIP <nowiki>https://gitlab.com/inkscape/inkscape/-/archive/master/inkscape-master.zip?path=buildtools</nowiki> | |||
#* Unpack it | |||
# Double-click on <code>windows-deps-clickHere.bat</code> | |||
#* If you get a warning "Windows protected your PC. Microsoft Defender prevented an unrecognized app from starting.", click on "More information" and "Run anyway". | |||
#* Follow the instructions in the Terminal window. (Press Enter to confirm.) | |||
#* Confirm Administrator rights if Windows asks you to | |||
# Wait a few hours until the script says Done. Then you can compile Inkscape as described later. | |||
*# | |||
== Obtaining Inkscape Source == | == Obtaining Inkscape Source == | ||
Line 26: | Line 22: | ||
''Note: For general instructions on how to use Git see [[Working with Git]].'' | ''Note: For general instructions on how to use Git see [[Working with Git]].'' | ||
As MSYS2 provides the revision control software Git you do not need to download it separately. | As MSYS2 provides the revision control software Git you do not need to download it separately. | ||
Open the MSYS2 '''UCRT64''' (!!!) shell from the start menu. | |||
Run the command | |||
<pre>git clone --recurse-submodules https://gitlab.com/inkscape/inkscape.git master</pre> | <pre>git clone --recurse-submodules https://gitlab.com/inkscape/inkscape.git master</pre> | ||
This creates a folder called "master" in the current working directory (usually the home folder located at "C:\msys64\home\Your_Username" or similar) in which the clone of the source repository is created. | This creates a folder called "master" in the current working directory (usually the home folder located at "C:\msys64\home\Your_Username" or similar) in which the clone of the source repository is created. | ||
Line 37: | Line 37: | ||
== Building Inkscape with MSYS2 == | == Building Inkscape with MSYS2 == | ||
To compile Inkscape open the MSYS2 '''UCRT64''' shell - | *'''Read carefully:''' To compile Inkscape open the MSYS2 '''UCRT64''' (!!!) shell from the start menu (or launch C:\msys64\ucrt64.exe) | ||
*⚠️ ''Warning:'' Using the right shell type is important so that the right type of Inkscape is built and the right dependencies are installed: | |||
** UCRT64 is the standard for compiling 64-bit Inkscape | |||
** (MinGW 64bit / 32bit was used until mid 2023 to build 64/32bit versions. ARM may be used in the future to build for ARM processors.) | |||
** '''Never''' use the "MSYS2 MSYS" shell for compiling Inkscape, only use it for updating MSYS2 itself. | |||
'''Double-check:''' The shell window must show "'''UCRT64'''" in purple text. If it shows "MSYS" then you have the wrong shell. | '''Double-check:''' The shell window must show "'''UCRT64'''" in purple text. If it shows "MSYS" then you have the wrong shell. | ||
Line 71: | Line 75: | ||
'''''That's it!'''''<br/> | '''''That's it!'''''<br/> | ||
Afterwards you should have a complete binary distribution of Inkscape in the folder "build/inkscape/" that can be run on any machine running Windows 7 or later. | Afterwards you should have a complete binary distribution of Inkscape in the folder "build/inkscape/" that can be run on any machine running Windows 7 or later. | ||
== Running Inkscape == | |||
Simply execute <code>inkscape.exe</code> from the "build/'''inkscape'''/bin" directory (not "build/bin") created in the previous step. (The <code>ninja install</code> command takes care of copying all required files into this directory.) | |||
== Packaging == | == Packaging == | ||
If you only want to run Inkscape you do ''not'' need to follow these instructions. | If you only want to run Inkscape you do ''not'' need to follow these instructions. See "Running Inkscape" above. | ||
To package those files for distribution ( | To package those files for distribution (to give it to other people, or make a setup file for other computers), you can use the following commands: | ||
* <code>ninja dist-win-7z</code> – generate binary 7z archive | * <code>ninja dist-win-7z</code> – generate binary 7z archive. | ||
* <code>ninja dist-win-exe</code> – generate .exe installer | * <code>ninja dist-win-exe</code> – generate .exe installer. | ||
* <code>ninja dist-win-msi</code> – generate .msi installer. | * <code>ninja dist-win-msi</code> – generate .msi installer. | ||
* Additionally there's a <code>dist-win-all</code> target (executes all of the above in parallel). | * Additionally there's a <code>dist-win-all</code> target (executes all of the above in parallel). | ||
Line 109: | Line 111: | ||
☎ ''If you can't solve your issue with the information above, please [https://inkscape.org/report report a bug] or [https://chat.inkscape.org/channel/team_devel\ ask in chat]''. | ☎ ''If you can't solve your issue with the information above, please [https://inkscape.org/report report a bug] or [https://chat.inkscape.org/channel/team_devel\ ask in chat]''. | ||
== Installing Build Dependencies Manually == | |||
'''Normally this is not needed.''' See "Install Dependencies Easily" above. | |||
For older versions before 1.5.0, or if you do not want the automatic installation, then you can also do all the installation steps by hand: | |||
* '''Step 1''' — Install MSYS2 | |||
*# Download the installer from the [http://www.msys2.org/ MSYS2 homepage] (a 64-bit version of Windows 7 or later is required to run MSYS2 and build Inkscape).<br />Start the installation and follow the instructions on screen. Use the standard installation directory <code>C:\msys64</code> .<br />Wait until it finishes. | |||
*# Start an MSYS2 '''MSYS''' shell from the start menu (or launch "msys2.exe" in the installation directory). | |||
*#Execute the command <code>pacman -Syuu</code>. This will start a full system upgrade and ensures that you have the latest versions of all core libraries. | |||
*# Repeat the previous step until no new updates are found. | |||
* '''Step 2''' — Download dependencies | |||
*# Close the MSYS2 '''MSYS''' shell. | |||
*#'''Read carefully:''' Start an MSYS2 '''UCRT64''' (!!!) shell from the start menu (or launch "ucrt64.exe" in the installation directory). Using the right shell type is important that the correct dependencies are installed. | |||
*#'''Double-check:''' The shell window must show "'''UCRT64'''" in purple text. If it shows "MSYS" then you have the wrong shell, please go back. | |||
*# Execute the command <code>curl https://gitlab.com/inkscape/inkscape/-/raw/master/buildtools/msys2installdeps.sh | bash</code><br />(The command downloads and runs the script [https://gitlab.com/inkscape/inkscape/blob/master/buildtools/msys2installdeps.sh msys2installdeps.sh]. Alternatively, you can copy-paste the script into the console or download it, change to the folder containing the file and type <code>./msys2installdeps.sh</code>. If you already have a copy of the Inkscape source it should also be included in the "buildtools" folder.) | |||
*# Relax and take a break, as this may take some time (a few minutes at best, but it can take significantly longer if you have a slow internet connection or the server load is high). | |||
*'''Step 3''' - Install dependencies for creating the installer packages (.EXE, .MSI, .7Z) This step is optional. | |||
*#.7z: [http://www.7-zip.org/ 7-Zip]. | |||
*#.exe: [http://nsis.sourceforge.net/ Nullsoft Scriptable Install System (NSIS)] version 3 or later. | |||
*#.msi: | |||
*#*You'll need to install [http://wixtoolset.org/ Windows Installer XML (WiX Toolset)] version 4 (for Inkscape 1.4.1 and above). To install it: | |||
*#**In the start menu, type <code>powershell</code> and click on "Run as Administrator" | |||
*#**Open Notepad. Open the file buildtools/windows-deps-install-wix4.ps1 from the Inkscape sources. Select all. Copy. | |||
*#**Click in the powershell window with the right mouse button to Paste and run the commands. | |||
*#*For older versions up to 1.4.0, you will instead need WiX version 3 from https://github.com/wixtoolset/wix3/releases |
Revision as of 15:05, 17 December 2024
This page explains how to compile Inkscape on Windows using MSYS2.
MSYS2 does not only offer a convenient build environment for compiling Inkscape but also provides all necessary build tools and dependencies making it extremely simple to get started with Inkscape development.
Installing Build Dependencies Easily
Work in progress, see https://gitlab.com/inkscape/inkscape/-/merge_requests/6573 - Until 2024-12-19, please see below "Installing Build Dependencies manually".
In the basic case, you can install all the needed tools with a one-click script. This is supported for Inkscape 1.5 or newer, running on standard 64bit Windows (not ARM). In other cases, please see below "Installing Build Dependencies Manually".
- Get the buildtools folder from the Inkscape git repository. One way to do this is the following:
- Download the following ZIP https://gitlab.com/inkscape/inkscape/-/archive/master/inkscape-master.zip?path=buildtools
- Unpack it
- Double-click on
windows-deps-clickHere.bat
- If you get a warning "Windows protected your PC. Microsoft Defender prevented an unrecognized app from starting.", click on "More information" and "Run anyway".
- Follow the instructions in the Terminal window. (Press Enter to confirm.)
- Confirm Administrator rights if Windows asks you to
- Wait a few hours until the script says Done. Then you can compile Inkscape as described later.
Obtaining Inkscape Source
Note: For general instructions on how to use Git see Working with Git.
As MSYS2 provides the revision control software Git you do not need to download it separately.
Open the MSYS2 UCRT64 (!!!) shell from the start menu.
Run the command
git clone --recurse-submodules https://gitlab.com/inkscape/inkscape.git master
This creates a folder called "master" in the current working directory (usually the home folder located at "C:\msys64\home\Your_Username" or similar) in which the clone of the source repository is created.
You can later update it with:
git pull --recurse-submodules
Building Inkscape with MSYS2
- Read carefully: To compile Inkscape open the MSYS2 UCRT64 (!!!) shell from the start menu (or launch C:\msys64\ucrt64.exe)
- ⚠️ Warning: Using the right shell type is important so that the right type of Inkscape is built and the right dependencies are installed:
- UCRT64 is the standard for compiling 64-bit Inkscape
- (MinGW 64bit / 32bit was used until mid 2023 to build 64/32bit versions. ARM may be used in the future to build for ARM processors.)
- Never use the "MSYS2 MSYS" shell for compiling Inkscape, only use it for updating MSYS2 itself.
Double-check: The shell window must show "UCRT64" in purple text. If it shows "MSYS" then you have the wrong shell.
Then execute the following commands:
# change to the directory containing your Inkscape source checkout (has to be
# adjusted to match your system)
cd master
# create a directory for the build (could also be another folder, but we'll
# assume 'build' being used for the rest of the article)
mkdir build
cd build
# create build files with CMake (we generate rules for "Ninja" as it's
# significantly faster then "MinGW Makefiles" which uses mingw32-make)
# note the source path '..' (which in this case is the parent directory) and
# should always point to the root folder of your copy of the Inkscape source
cmake -G Ninja ..
# start the compilation
ninja
# install compiled files and all dependencies required to run Inkscape into the
# folder 'build/inkscape/'
ninja install
# The last two steps can be combined (i.e. run 'ninja install' immediately) to
# save some time (the "install" target includes the default target)
That's it!
Afterwards you should have a complete binary distribution of Inkscape in the folder "build/inkscape/" that can be run on any machine running Windows 7 or later.
Running Inkscape
Simply execute inkscape.exe
from the "build/inkscape/bin" directory (not "build/bin") created in the previous step. (The ninja install
command takes care of copying all required files into this directory.)
Packaging
If you only want to run Inkscape you do not need to follow these instructions. See "Running Inkscape" above.
To package those files for distribution (to give it to other people, or make a setup file for other computers), you can use the following commands:
ninja dist-win-7z
– generate binary 7z archive.ninja dist-win-exe
– generate .exe installer.ninja dist-win-msi
– generate .msi installer.- Additionally there's a
dist-win-all
target (executes all of the above in parallel).
For some additional details which have not been incorporated into this page yet see the previous instructions at Compiling Inkscape on Windows 32-bit#Creating an installer (might be partially oudated).
Troubleshooting
Issues with MSYS2
- The MSYS2 shell does not open.
- Try rebooting.
I have trouble updating an existing, older MSYS2 installation
- Check https://www.msys2.org/news/ for any recent news that may describe your issue and explain how to solve it.
- The most straightforward solution is often to re-install MSYS2:
- Uninstall the old MSYS2. Make sure to completely remove the C:\msys64 directory if the uninstaller does not do the job but remember to back up any personal data such as your home folder C:\msys64\home\)
- Download a fresh installer from https://www.msys2.org/ and start over as described above.
Issues with building Inkscape
- The command `ninja` errors out after an MSYS2 update or after pulling new changes from the source reposiotry
- Re-run CMake using
rm -rf CMakeCache.txt && cmake -G Ninja ..
. - The first command will delete cached and potentially stale info from the previous run, the second command will run CMake again to update the ninja files.
☎ If you can't solve your issue with the information above, please report a bug or ask in chat.
Installing Build Dependencies Manually
Normally this is not needed. See "Install Dependencies Easily" above.
For older versions before 1.5.0, or if you do not want the automatic installation, then you can also do all the installation steps by hand:
- Step 1 — Install MSYS2
- Download the installer from the MSYS2 homepage (a 64-bit version of Windows 7 or later is required to run MSYS2 and build Inkscape).
Start the installation and follow the instructions on screen. Use the standard installation directoryC:\msys64
.
Wait until it finishes. - Start an MSYS2 MSYS shell from the start menu (or launch "msys2.exe" in the installation directory).
- Execute the command
pacman -Syuu
. This will start a full system upgrade and ensures that you have the latest versions of all core libraries. - Repeat the previous step until no new updates are found.
- Download the installer from the MSYS2 homepage (a 64-bit version of Windows 7 or later is required to run MSYS2 and build Inkscape).
- Step 2 — Download dependencies
- Close the MSYS2 MSYS shell.
- Read carefully: Start an MSYS2 UCRT64 (!!!) shell from the start menu (or launch "ucrt64.exe" in the installation directory). Using the right shell type is important that the correct dependencies are installed.
- Double-check: The shell window must show "UCRT64" in purple text. If it shows "MSYS" then you have the wrong shell, please go back.
- Execute the command
curl https://gitlab.com/inkscape/inkscape/-/raw/master/buildtools/msys2installdeps.sh | bash
(The command downloads and runs the script msys2installdeps.sh. Alternatively, you can copy-paste the script into the console or download it, change to the folder containing the file and type./msys2installdeps.sh
. If you already have a copy of the Inkscape source it should also be included in the "buildtools" folder.) - Relax and take a break, as this may take some time (a few minutes at best, but it can take significantly longer if you have a slow internet connection or the server load is high).
- Step 3 - Install dependencies for creating the installer packages (.EXE, .MSI, .7Z) This step is optional.
- .7z: 7-Zip.
- .exe: Nullsoft Scriptable Install System (NSIS) version 3 or later.
- .msi:
- You'll need to install Windows Installer XML (WiX Toolset) version 4 (for Inkscape 1.4.1 and above). To install it:
- In the start menu, type
powershell
and click on "Run as Administrator" - Open Notepad. Open the file buildtools/windows-deps-install-wix4.ps1 from the Inkscape sources. Select all. Copy.
- Click in the powershell window with the right mouse button to Paste and run the commands.
- In the start menu, type
- For older versions up to 1.4.0, you will instead need WiX version 3 from https://github.com/wixtoolset/wix3/releases
- You'll need to install Windows Installer XML (WiX Toolset) version 4 (for Inkscape 1.4.1 and above). To install it: