aboutsummaryrefslogtreecommitdiffstats
path: root/docs/How-to-build-software-outside-Homebrew-with-Homebrew-keg-only-dependencies.md
blob: e40b04abceae7c22663ce04c2a30e12c97ad5ac8 (plain)
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
# How to build software outside Homebrew with Homebrew `keg_only` dependencies

## What does "keg-only" mean?

The [FAQ](FAQ) briefly explains this.

As an example:

*OpenSSL isn’t symlinked into my `PATH` and non-Homebrew builds can’t find it!*

This is because Homebrew keeps it locked inside its individual prefix, rather than symlinking to the publicly-available location, usually `/usr/local`.

## Advice on potential workarounds

A number of people in this situation are either forcefully linking `keg_only` tools with `brew link --force` or moving default system utilities out of the `PATH` and replacing them with manually-created symlinks to the Homebrew-provided tool.

*Please* do not remove macOS native tools and forcefully replace them with symlinks back to the Homebrew-provided tool. Doing so can and likely will cause significant breakage when attempting to build software.

`brew link --force` creates a warning in `brew doctor` to let both you and maintainers know that a link exists that could be causing issues. If you’ve linked something and there’s no problems at all? Feel free to ignore the `brew doctor` error.

## How do I use those tools outside of Homebrew?

Useful, reliable alternatives exist should you wish to use `keg_only` tools outside of Homebrew.

### Build flags

You can set flags to give configure scripts or Makefiles a nudge in the right direction. An example of flag setting:

```sh
./configure --prefix=/Users/Dave/Downloads CFLAGS=-I$(brew --prefix)/opt/openssl/include LDFLAGS=-L$(brew --prefix)/opt/openssl/lib
```

An example using `pip`:

```sh
CFLAGS=-I$(brew --prefix)/opt/icu4c/include LDFLAGS=-L$(brew --prefix)/opt/icu4c/lib pip install pyicu
```

### `PATH` modification

You can temporarily prepend your `PATH` with the tool’s bin directory, such as:

```sh
export PATH=$(brew --prefix)/opt/openssl/bin:$PATH
```

This will prepend that folder to your `PATH`, ensuring any build script that searches the `PATH` will find it first.

Changing your `PATH` using that command ensures the change only exists for the duration of that shell session. Once you are no longer in that session, the `PATH` reverts to the prior state.

### `pkg-config` detection

If the tool you are attempting to build is [pkg-config](https://en.wikipedia.org/wiki/Pkg-config) aware, you can amend your `PKG_CONFIG_PATH` to find that `keg_only` utility’s `.pc` file, if it has them. Not all formulae ship with those files.

An example of this is:

```sh
export PKG_CONFIG_PATH=$(brew --prefix)/opt/openssl/lib/pkgconfig
```

If you’re curious about the `PKG_CONFIG_PATH` variable `man pkg-config` goes into more detail.

You can get `pkg-config` to detail the default search path with:

```sh
pkg-config --variable pc_path pkg-config
```