File: MacBuild.md

package info (click to toggle)
xournalpp 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 30,044 kB
  • sloc: cpp: 64,195; xml: 939; sh: 752; ansic: 362; python: 338; php: 74; makefile: 15
file content (381 lines) | stat: -rw-r--r-- 13,762 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
# MacOS Build (.app)

This file describes how to build and run Xournal++ and package Xournal++ into a `.app` bundle.

If you are only interested in building and running Xournal++ for local development, see
the below sections on the dependency setup for Homebrew.

For packaging into a `.app` bundle, see the section on gtk-osx.

If you run into any problems, see the FAQ section at the bottom of this file to
see if there may be helpful advice there.

## Make sure the Development environment is installed

Before you use *any* of the methods listed above, you need to install developer
tools.

Run `xcode-select --install` in a terminal to install developer tools.

## Xournal++ Mac Homebrew Build

**Builds with Homebrew are for local development only. You won't be able to create an .app-bundle and distribute it.**

### Install Homebrew
https://brew.sh/

````sh
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
````

### Install dependencies
````sh
brew install cmake ninja pkg-config gtk+3 poppler librsvg adwaita-icon-theme libzip portaudio libsndfile gdk-pixbuf qpdf lua gtksourceview4
````

### Build Xournal++:
````sh
git clone http://github.com/xournalpp/xournalpp.git
cd xournalpp
mkdir build
cd build
cmake .. -GNinja -DCMAKE_INSTALL_PREFIX="$(brew --prefix)"
ninja install
````

Here `"$(brew --prefix)"` where Xournal++ gets installed defaults to `/usr/local` on MacOS Intel and to `/opt/homebrew` on MacOS ARM.
This installation prefix is essential when running the binary, since otherwise pixbuf loaders don't work properly.

### Run Xournal++:

On MacOS Intel:
```sh
/usr/local/bin/xournalpp
```
or using the wrapper (in the development version):
```sh
/usr/local/bin/xournalpp-wrapper
```

On MacOS ARM:

```sh
/opt/homebrew/bin/xournalpp
```
or using the wrapper:
```sh
/opt/homebrew/bin/xournalpp-wrapper
```


## Bundling Xournal++ into a `.app` with gtk-osx

This uses the official [gtk-osx][gtk-osx] project, which builds GTK using the
jhbuild tool and a curated set of dependencies that allows GTK to work on macOS.

**Warning**: The build process is flaky and may break at any time. It will
require debugging and patience.

For the easiest build experience, do not have MacPorts or Homebrew installed.
* If you have any of them installed, you need to create a new user, and use the
  new user for the whole process. This is because the jhbuild packages are meant
  to be self-contained, and environment variables from MacPorts or Homebrew
  configurations may interfere with the jhbuild package builds.
* Even if you create a new user, packages built by jhbuild may still "find"
  MacPorts or Homebrew packages. If this is the case, you can either uninstall
  the corresponding packages; or (for advanced users) you can clone gtk-osx
  and manually create a jhbuild _moduleset_ that explicitly ensures that such
  packages are disabled (see the FAQ).
* One possible way to use jhbuild alongside brew is to unlink all brew modules
  before running jhbuild. After finishing the build, they can be relinked.
  Note: this is untested though, and might fail.
* By default, gtk-osx will dump multiple folders such as `~/gtk`, `~/Sources`,
  etc. into the home directory. If you prefer having the folders in a different
  location, you can set the `HOME` environment variable before running these
  steps. NOTE: this could potentially break things since your shell rc files
  will not be loaded; change `HOME` at your own risk.

### A note on build dependencies

All of the following steps, except for the last one, only need to be done once.

Please take the OS version dependent problems for each step into account.
The errors will vary with different versions of the libraries.
If you encounter a yet unknown error, feel free to submit a pull request to add it to this set of instructions.

### Step 1: Install jhbuild

Before you begin, make sure you are logged in as the jhbuild user and are in the
home directory.

To install jhbuild, run the following commands. **Do not blindly copy and paste.**
Make sure you understand what each command does as you run them one-by-one.

```sh
# Download the setup script
curl -LR https://gitlab.gnome.org/GNOME/gtk-osx/raw/master/gtk-osx-setup.sh -o gtk-osx-setup.sh

# If jhbuild is already installed with a different python version, you MUST delete it first.
rm -rf ~/gtk ~/.new_local ~/.config/jhbuildrc* ~/.cache/jhbuild ~/Source

# workaround for openssl 1.1.1q compilation error:
# https://github.com/openssl/openssl/issues/18720
export OPENSSL_CFLAGS='-Wno-error=implicit-function-declaration'

# Build jhbuild
# NOTE: if you are using macOS Ventura, please see the FAQ below.
bash gtk-osx-setup.sh

# permanently add jhbuild to path
echo 'export PATH="$HOME"/.new_local/bin:"$PATH"' >> ~/.zshrc
```

You will either need to relogin as the jhbuild user, or you will instead need to
execute the following to put jhbuild on `PATH`:

```sh
export PATH="$HOME"/.new_local/bin:"$PATH"
```

### Step 2: Set up custom modulesets and configure jhbuild

Make sure you are in the home directory for this step.

jhbuild uses "modulesets" to define what dependencies to use for its builds.
The Xournal++ macOS build defines its own moduleset (in
`mac-setup/xournalpp.modules`) that can be used to build Xournal++ dependencies
that are not already included in the `gtk-osx` project.

First, clone the gtk-osx repository:
```sh
git clone https://gitlab.gnome.org/GNOME/gtk-osx.git
```

Then add the following lines to your `~/.config/jhbuildrc-custom` to make
jhbuild use the modulesets in the repository you just cloned:
```python
use_local_modulesets = True
moduleset = "gtk-osx.modules"

# This assumes you cloned gtk-osx into your home directory.
# If you're using a custom location, please change this.
modulesets_dir = os.path.expanduser("~/gtk-osx/modulesets-stable")
```

To allow older versions of macOS to run the produced `.app` file, you should
replace a line in `~/.config/jhbuildrc-custom`:
```diff
- setup_sdk()
+ setup_sdk(target='10.15')
```

Lastly, add the following lines to `~/.config/jhbuildrc-custom` to work around
bugs or make the build process more robust.
```python
# Workaround for https://gitlab.gnome.org/GNOME/glib/-/issues/2759
module_mesonargs['glib'] = mesonargs + ' -Dobjc_args=-Wno-error=declaration-after-statement'

# Fix freetype build finding brotli installed through brew or ports, causing the
# harfbuzz build to fail when jhbuild's pkg-config cannot find brotli.
module_cmakeargs['freetype-no-harfbuzz'] = ' -DFT_DISABLE_BROTLI=TRUE '
module_cmakeargs['freetype'] = ' -DFT_DISABLE_BROTLI=TRUE '

# portaudio may fail with parallel build, so disable parallel building.
module_makeargs['portaudio'] = ' -j1 '
```

You may also need to modify `~/.config/jhbuildrc` as follows:
```
# On the lines that have
#     module_cmakeargs['freetype'] = ...
#     module_cmakeargs['freetype-no-harfbuzz'] = ...
#
# Change the '=' to '+='.
# Then insert the following lines *before* those lines:

module_cmakeargs.setdefault('freetype', cmakeargs + ' ')
module_cmakeargs.setdefault('freetype-no-harfbuzz', cmakeargs + ' ')
```

### Step 3: Build required dependencies from gtk-osx

Many of the dependencies (e.g., gtk) are already configured by gtk-osx, and can
be installed with:

```sh
# note: the following may fail on the first run.
jhbuild bootstrap-gtk-osx

# Now we can build all dependencies.
# Warning: the following steps compile a lot of code and may take up to 1 hour to run.
jhbuild bootstrap-gtk-osx
jhbuild build meta-gtk-osx-gtk3 gtksourceview3
```

### Step 4: Clone the Xournal++ code

If you haven't already, you'll need to clone the Xournal++ code in order to
compile it and its dependencies from source:

```sh
git clone http://github.com/xournalpp/xournalpp.git
```

### Step 5: Build required dependencies not in gtk-osx

Some other dependencies are not provided by gtk-osx.
We provide a jhbuild moduleset that defines how these dependencies will be
downloaded and built.

To build them, run the following command in the `mac-setup` folder of the
`xournalpp` repository you just cloned:

```sh
jhbuild -m xournalpp.modules build meta-xournalpp-deps
```

### Last step: build Xournal++ and package it as .app

From the `mac-setup` directory, this can be done completely automatically using:
```sh
./complete-build.sh "$HOME"/gtk
```

Or manually with:
```sh
# from the top-level folder

# build and install to local gtk prefix
mkdir -p build && cd build
cmake .. -GNinja -DCMAKE_INSTALL_PREFIX:PATH="$HOME"/gtk/inst
cmake --build .
cmake --install .
cd ..

# build application
cd mac-setup
jhbuild run bash ./build-app.sh "$HOME"/gtk
```

Once the `Xournal++.app` bundle is created, you can install it in your
Applications directory and run it.

At the time of writing, it is not possible to run the application from the
`build` folder (at least if you're using the special build user). If you have
found a nice way to get this to run, it would be great if you could contribute
the steps to this document!

### FAQ

#### gtk-osx-setup.sh fails on macOS Ventura (13.0 or newer)

Likely due to improved security protections on macOS Ventura, the
`gtk-osx-setup.sh` script will no longer install gtk-osx correctly. This can be
observed if running `jhbuild` or any associated commands results in a message
such as `zsh : killed`.

The reason why this error happens is that `gtk-osx-setup.sh` will copy
`/bin/bash` to `~/.new_local/bin/bash` so that it is always on `PATH`; however,
`~/.new_local/bin/bash` will always be killed immediately. This causes some
steps in `gtk-osx-setup.sh` to fail silently (e.g., `pyenv` which is used to run
`jhbuild`).

This issue has already been fixed in gtk-osx, but you may encounter it if you
are installing an older version of gtk-osx for whatever reason. To work around
this issue, you can edit `gtk-osx-setup.sh` and comment out the line `cp
/bin/bash "$DEVPREFIX/bash"` (or similar).

#### itstool build error (version 2.0.6 on macOS >= 10.13)
itstool might fail in configure step searching for libxml2 python bindings.

If you are using Python 3.10 (check with `jhbuild run python --version`), there
is a bug in `libxml2` that causes it to segfault when imported by itstool.

To work around this problem, you will need to reinstall jhbuild and gtk-osx,
starting from the very first step. Before you run the install steps, run the
following command to force Python 3.9 to be installed:

```sh
# Override Python version in setup script
export PYTHON_VERSION=3.9.15
```

#### Unknown module error

If there is an error like:
````sh
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
````

Follow these steps to resolve the issue:
1. Install Xcode (get it from [here](https://developer.apple.com/xcode/)) if you don't have it yet.
2. Accept the Terms and Conditions.
3. Ensure Xcode app is in the /Applications directory (**NOT** /Users/{user}/Applications).
4. Point xcode-select to the Xcode app Developer directory using the following command:
5. sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
6. Make sure your Xcode app path is correct.
   1. Xcode: /Applications/Xcode.app/Contents/Developer
   2. Xcode-beta: /Applications/Xcode-beta.app/Contents/Developer
   
Steps are from this [source](https://stackoverflow.com/questions/17980759/xcode-select-active-developer-directory-error/17980786#17980786). A big thanks to tjmetha and Rob Bednark!

#### gobject-introspection fails to build

When running `jhbuild build gtk-osx-meta`, the following error may occur:

```sh
ModuleNotFoundError: No module named 'distutils.msvccompiler'
ninja: build stopped: subcommand failed.
*** Error during phase build of gobject-introspection: ########## Error running ninja   *** [20/33]
```

This is due to an issue in `gobject-introspection` where deprecated code from
Python's `setuptools` is being invoked:
https://gitlab.gnome.org/GNOME/gobject-introspection/-/issues/438

To work around this bug, run `jhbuild run pip install -U setuptools`. This
should install a version of setuptools that is newer than 65.0.2, which should
have the deprecated code back.

Confirm that the workaround works by seeing if this command prints "OK":
```sh
jhbuild run python3 -c 'import distutils.msvccompiler; print("OK")'
```


#### Modifying the custom moduleset to work around dependency errors

If you have MacPorts or Homebrew installed, the jhbuild packages may pick up on
packages outside of jhbuild during the build process. Consequently, this can
result in build or configure time failures.

To work around this problem, you can then manually edit the configure flags for
each package in `gtk-osx/modulesets-stable`, as needed. These flags will be
picked up when you run `jhbuild -afc <package_name>` to rebuild a given package
`<package_name>`.

Alternatively, you can edit `~/.config/jhbuildrc-custom` to add additional flags
to the build tool(s). For example, setting
```python
module_cmakeargs['poppler'] = " -DCMAKE_BUILD_TYPE=Debug "
```
will build poppler in debug mode. See
[this page](https://gnome.pages.gitlab.gnome.org/jhbuild/config-reference.html#config-reference-variables)
for a list of configuration variables.



[gtk-osx]: https://gitlab.gnome.org/GNOME/gtk-osx

#### Fix linker errors related to system libraries

Errors like

```sh
clang++: error: no such file or directory: 'AudioToolbox'
clang++: error: no such file or directory: 'AudioUnit'
clang++: error: no such file or directory: 'CoreFoundation'
clang++: error: no such file or directory: 'CoreServices'
```

can be fixed by deleting the build folder and building from scratch again.