aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Fertser <fercerpav@gmail.com>2014-05-17 12:46:06 +0400
committerPaul Fertser <fercerpav@gmail.com>2014-06-18 07:05:39 +0000
commit35c066e23d76001bf0b66d2fe6bcd9b96aa23d13 (patch)
tree6363265af1030589ce201c97cbc6fb324517bceb
parentae3baa9d5a09fa6b3ef23c74ea16f7a10b8a6406 (diff)
downloadriscv-openocd-35c066e23d76001bf0b66d2fe6bcd9b96aa23d13.zip
riscv-openocd-35c066e23d76001bf0b66d2fe6bcd9b96aa23d13.tar.gz
riscv-openocd-35c066e23d76001bf0b66d2fe6bcd9b96aa23d13.tar.bz2
README.OSX: mention Gentoo Prefix and clarify other options
Change-Id: I431bfb9acf7dd6ad61b9e8f5c20568be22e9f39d Signed-off-by: Paul Fertser <fercerpav@gmail.com> Reviewed-on: http://openocd.zylin.com/2146 Tested-by: jenkins Reviewed-by: Xiaofan <xiaofanc@gmail.com> Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r--README.OSX29
1 files changed, 22 insertions, 7 deletions
diff --git a/README.OSX b/README.OSX
index c689077..979c64b 100644
--- a/README.OSX
+++ b/README.OSX
@@ -5,21 +5,36 @@ There are a few prerequisites you will need first:
- Xcode 5 (install from the AppStore)
- Command Line Tools (install from Xcode 5 -> Preferences -> Downloads)
-- MacPorts (http://www.macports.org/install.php)
+- Gentoo Prefix (http://www.gentoo.org/proj/en/gentoo-alt/prefix/bootstrap.xml)
or
- Homebrew (http://mxcl.github.io/homebrew/)
+ or
+- MacPorts (http://www.macports.org/install.php)
+
+
+With Gentoo Prefix you can build the release version or the latest
+devel version (-9999) the usual way described in the Gentoo
+documentation. Alternatively, install the prerequisites and build
+manually from the sources.
+
+
+With Homebrew you can either run:
+ brew install [--HEAD] openocd (where optional --HEAD asks brew to
+ install the current git version)
+ or
+ brew install libtool automake libusb [libusb-compat] [hidapi] [libftdi]
+ (to install the needed dependencies and then proceed with the
+ manual building procedure)
+
-libtool, automake, autoconf, pkg-config and libusb can be easily
-installed via MacPorts:
- sudo port install libtool automake autoconf pkgconfig libusb [libusb-compat]
-or with Homebrew:
- brew install libtool automake libusb [libusb-compat] [hidapi]
+For building with MacPorts you need to run:
+ sudo port install libtool automake autoconf pkgconfig \
+ libusb [libusb-compat] [libftdi1]
You should also specify LDFLAGS and CPPFLAGS to allow configure to use
MacPorts' libraries, so run configure like this:
LDFLAGS=-L/opt/local/lib CPPFLAGS=-I/opt/local/include ./configure [options]
-If you're using Homebrew, no custom flags are necessary.
See README for the generic building instructions.