2016-05-09 00:15:36 +00:00
|
|
|
OSX Builds
|
|
|
|
----------
|
|
|
|
|
|
|
|
To compile Hamlib on OSX you have to install autoconf, automake and libtool.
|
2020-06-04 17:35:47 +00:00
|
|
|
The easiest way to install them is either via the brew package manager or macports..
|
2016-05-09 00:15:36 +00:00
|
|
|
|
2020-06-04 17:35:47 +00:00
|
|
|
Brew: https://brew.sh
|
2016-05-09 00:15:36 +00:00
|
|
|
|
|
|
|
Once brew is installed, execute
|
|
|
|
|
|
|
|
$ brew install automake autoconf libtool
|
|
|
|
|
2020-06-04 17:35:47 +00:00
|
|
|
Macports: https://www.macports.org/install.php
|
|
|
|
|
|
|
|
Once installed, execute
|
|
|
|
|
|
|
|
$ sudo port install automake autoconf libtool
|
|
|
|
|
2016-05-09 00:15:36 +00:00
|
|
|
Build
|
|
|
|
-----
|
|
|
|
|
2017-07-28 02:30:13 +00:00
|
|
|
Execute bootstrap to generate the build system files
|
2016-05-09 00:15:36 +00:00
|
|
|
|
2017-07-28 02:30:13 +00:00
|
|
|
$ ./bootstrap
|
|
|
|
|
|
|
|
Then configure with the desired flags
|
|
|
|
|
|
|
|
$ ./configure
|
2016-05-09 00:15:36 +00:00
|
|
|
|
|
|
|
Then compile the hamlib files
|
|
|
|
|
2020-06-02 14:43:19 +00:00
|
|
|
$ make
|
2016-05-09 00:15:36 +00:00
|
|
|
|
2020-06-02 14:43:19 +00:00
|
|
|
Hint: "make -jx" with x for the amount of CPU cores will speed up the
|
2016-05-09 00:15:36 +00:00
|
|
|
compilation
|
|
|
|
|
|
|
|
Install hamlib
|
|
|
|
--------------
|
|
|
|
|
|
|
|
Install the Hamlib libraries and executables
|
|
|
|
|
2020-06-02 14:43:19 +00:00
|
|
|
$ sudo make install
|