diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-07-29 17:21:28 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-07-29 17:21:28 +0200 |
commit | 96f579abc5ff6a9bc37b747a7c3ab89ee6a3f73d (patch) | |
tree | 07fbf47aaaba2e89fce8f8c09cfe2de18681fb7b | |
parent | 238feeb72c118957da2f2cbb4b3cbc990027efb8 (diff) |
Add instructions on installing pkg-config on Mac OS
-rw-r--r-- | BOOTSTRAP-MACOSX.cli | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/BOOTSTRAP-MACOSX.cli b/BOOTSTRAP-MACOSX.cli index efba245..caded96 100644 --- a/BOOTSTRAP-MACOSX.cli +++ b/BOOTSTRAP-MACOSX.cli @@ -26,5 +26,21 @@ To install Command Line Tools, run: $ xcode-select --install \ +Also, if you plan to install your own or use system-installed libraries, it +is recommended to install the \c{pkg-config} utility available from +\l{https://pkg-config.freedesktop.org pkg-config.freedesktop.org}. For +example, to download, build, and install version \c{0.29.2} (the latest +available at the time of writing), run: + +\ +$ curl -O https://pkg-config.freedesktop.org/releases/pkg-config-0.29.2.tar.gz +$ tar xfz pkg-config-0.29.2.tar.gz +$ cd pkg-config-0.29.2 +$ ./configure --prefix=/usr/local CC=clang --with-internal-glib +$ make +$ sudo make install +$ pkg-config --version +\ + Once this is done continue with \l{#BOOTSTRAP-UNIX Bootstrapping on UNIX}. " |